-- mysqldump-php https://github.com/ifsnop/mysqldump-php
--
-- Host: localhost	Database: nspeci6_xyb6frx
-- ------------------------------------------------------
-- Server version 	5.5.5-10.5.21-MariaDB-log
-- Date: Wed, 21 Jun 2023 18:59:38 +0000

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `wp_commentmeta`
--

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

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

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

-- Dumped table `wp_commentmeta` with 0 row(s)
--

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

DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0,
  `comment_author` tinytext NOT NULL,
  `comment_author_email` varchar(100) NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT 0,
  `comment_approved` varchar(20) NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) NOT NULL DEFAULT '',
  `comment_type` varchar(20) NOT NULL DEFAULT 'comment',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

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

-- Dumped table `wp_comments` with 0 row(s)
--

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

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

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

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

-- Dumped table `wp_term_taxonomy` with 5 row(s)
--

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

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

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

LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'TXlady12','$P$BaBcmDasXy8XnilHJuQISScgJjPCYy1','txlady12','ljhelman@hotmail.com','https://estatesatnuevo.com','2022-03-12 22:19:30','',0,'TXlady12'),(2,'imhsupport','$P$BB398/0LJ8kim4UotHUC5rYIE3B5yb0','imhsupport','docs@inmotionhosting.com','','2022-03-13 15:02:45','',0,'imhsupport');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wp_users` with 2 row(s)
--

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

DROP TABLE IF EXISTS `wp_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint(20) unsigned NOT NULL DEFAULT 0,
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext NOT NULL,
  `post_title` text NOT NULL,
  `post_excerpt` text NOT NULL,
  `post_status` varchar(20) NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) NOT NULL DEFAULT 'open',
  `post_password` varchar(255) NOT NULL DEFAULT '',
  `post_name` varchar(200) NOT NULL DEFAULT '',
  `to_ping` text NOT NULL,
  `pinged` text NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `guid` varchar(255) NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT 0,
  `post_type` varchar(20) NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=MyISAM AUTO_INCREMENT=404 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (396,1,'2022-11-18 15:24:34','2022-11-18 15:24:34','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw150h150fitcropsc356da4f26423000fd3e2309ecd7effe','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw150h150fitcropsc356da4f26423000fd3e2309ecd7effe','','','2022-11-18 15:24:34','2022-11-18 15:24:34','',0,'https://estatesatnuevo.com/wp-content/uploads/2022/11/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw150h150fitcropsc356da4f26423000fd3e2309ecd7effe.jpg',0,'attachment','image/jpeg',0),(397,1,'2022-11-18 15:24:34','2022-11-18 15:24:34','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw150h150fitcropsd43c371eae7b12c0b082a3295299ff68','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw150h150fitcropsd43c371eae7b12c0b082a3295299ff68','','','2022-11-18 15:24:34','2022-11-18 15:24:34','',0,'https://estatesatnuevo.com/wp-content/uploads/2022/11/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw150h150fitcropsd43c371eae7b12c0b082a3295299ff68.jpg',0,'attachment','image/jpeg',0),(3,1,'2022-03-12 22:19:30','2022-03-12 22:19:30','<!-- wp:heading -->\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2>Who we are</h2>\r\n<p class=\"\"><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: https://estatesatnuevo.com.</p>\r\n<h2>Comments</h2>\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.</p>\r\n<p class=\"\">An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p>\r\n<h2 class=\"\">Cookies</h2>\r\n<p class=\"\"><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p>\r\n<p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p>\r\n<p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select \"Remember Me\", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p>\r\n<h2>Embedded content from other websites</h2>\r\n<p class=\"\"><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p>\r\n<p class=\"\">These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p>\r\n<h2 class=\"\">Who we share your data with</h2>\r\n<p class=\"\"><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p>\r\n<h2 class=\"\">How long we retain your data</h2>\r\n<p class=\"\"><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p>\r\n<p class=\"\">For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p>\r\n<h2>What rights you have over your data</h2>\r\n<p class=\"\"><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading --><!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading --><!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading --><!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading --><!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading --><!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading --><!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading --><!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading --><!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->','Privacy Policy','','publish','closed','open','','privacy-policy','','','2022-03-29 16:55:02','2022-03-29 16:55:02','',97,'https://estatesatnuevo.com/?page_id=3',0,'page','',0),(5,0,'2022-03-13 17:07:47','2022-03-13 17:07:47','<p>This site has been created with the help of many different people and companies.</p><p>In particular, a special thanks goes to the following for content running on this site:</p>\n			<style>\n				.attributed{height:250px;overflow:hidden;}\n				.attributed img{max-height:180px;}\n			</style>\n			<div class=\"row\">\n		<div class=\"col-xs-12 col-sm-3 col-md-3 col-lg-3 attributed\"> <a href=\"https://unsplash.com/photos/k8m4Uj5JJAQ\" target=\"_blank\" rel=\"noopener\"><img src=\'https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce-150x150.jpg\' /></a><br /><strong>Author</strong>: <a href=\"https://unsplash.com/@randyfath\" target=\"_blank\" rel=\"noopener\">Randy Fath</a> / <a href=\"https://unsplash.com/\" target=\"_blank\" rel=\"noopener\">Unsplash</a><br /><strong>License</strong>: <a href=\"https://creativecommons.org/publicdomain/zero/1.0/\" target=\"_blank\" rel=\"noopener\"><img src=\"https://licensebuttons.net/l/zero/1.0/80x15.png\" title=\"Public Domain Dedication\" /></a> </div><div class=\"col-xs-12 col-sm-3 col-md-3 col-lg-3 attributed\"> <a href=\"https://unsplash.com/photos/r1tjlHBnHzY\" target=\"_blank\" rel=\"noopener\"><img src=\'https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu-150x150.jpg\' /></a><br /><strong>Author</strong>: <a href=\"https://unsplash.com/@williamrouse\" target=\"_blank\" rel=\"noopener\">William Rouse</a> / <a href=\"https://unsplash.com/\" target=\"_blank\" rel=\"noopener\">Unsplash</a><br /><strong>License</strong>: <a href=\"https://creativecommons.org/publicdomain/zero/1.0/\" target=\"_blank\" rel=\"noopener\"><img src=\"https://licensebuttons.net/l/zero/1.0/80x15.png\" title=\"Public Domain Dedication\" /></a> </div><div class=\"col-xs-12 col-sm-3 col-md-3 col-lg-3 attributed\"> <a href=\"https://unsplash.com/photos/l5gzNmXTzIg\" target=\"_blank\" rel=\"noopener\"><img src=\'https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u-150x150.jpg\' /></a><br /><strong>Author</strong>: <a href=\"https://unsplash.com/@gerard_dor\" target=\"_blank\" rel=\"noopener\">Gerd Schrade</a> / <a href=\"https://unsplash.com/\" target=\"_blank\" rel=\"noopener\">Unsplash</a><br /><strong>License</strong>: <a href=\"https://creativecommons.org/publicdomain/zero/1.0/\" target=\"_blank\" rel=\"noopener\"><img src=\"https://licensebuttons.net/l/zero/1.0/80x15.png\" title=\"Public Domain Dedication\" /></a> </div><div class=\"col-xs-12 col-sm-3 col-md-3 col-lg-3 attributed\"> <img src=\'https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3-150x150.jpg\' /><br /><strong>Author</strong>: <em>Unknown</em><br /><strong>License</strong>: <em>Unknown license</em> </div><div class=\"col-xs-12 col-sm-3 col-md-3 col-lg-3 attributed\"> <a href=\"https://unsplash.com/photos/sBtqOe23bd0\" target=\"_blank\" rel=\"noopener\"><img src=\'https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m-150x150.jpg\' /></a><br /><strong>Author</strong>: <a href=\"https://unsplash.com/@sachin_prabhashan\" target=\"_blank\" rel=\"noopener\">Sachin Prabhashan</a> / <a href=\"https://unsplash.com/\" target=\"_blank\" rel=\"noopener\">Unsplash</a><br /><strong>License</strong>: <a href=\"https://creativecommons.org/publicdomain/zero/1.0/\" target=\"_blank\" rel=\"noopener\"><img src=\"https://licensebuttons.net/l/zero/1.0/80x15.png\" title=\"Public Domain Dedication\" /></a> </div><div class=\"col-xs-12 col-sm-3 col-md-3 col-lg-3 attributed\"> <a href=\"https://unsplash.com/photos/B8He4PJkMLg\" target=\"_blank\" rel=\"noopener\"><img src=\'https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv-150x150.jpg\' /></a><br /><strong>Author</strong>: <a href=\"https://unsplash.com/@sugercoatit\" target=\"_blank\" rel=\"noopener\">Melissa Walker Horn</a> / <a href=\"https://unsplash.com/\" target=\"_blank\" rel=\"noopener\">Unsplash</a><br /><strong>License</strong>: <a href=\"https://creativecommons.org/publicdomain/zero/1.0/\" target=\"_blank\" rel=\"noopener\"><img src=\"https://licensebuttons.net/l/zero/1.0/80x15.png\" title=\"Public Domain Dedication\" /></a> </div></div><hr /><p style=\"clear:both\">In addition, this  site was built on a powerful, Inspirations based web builder called <a href=\"http://www.boldgrid.com\" target=\"_blank\" rel=\"noopener\">BoldGrid</a>. It is running on <a href=\"http://wordpress.org\" target=\"_blank\" rel=\"noopener\">WordPress</a>, the most popular content management software online today. Web hosting support is provided by <a href=\"https://www.inmotionhosting.com/\">InMotion Hosting</a>.</p>','Attribution','','publish','closed','closed','','attribution','','','2023-03-03 15:20:16','2023-03-03 15:20:16','',0,'https://estatesatnuevo.com/attribution/',0,'bg_attribution','',0),(7,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','','Contact Form','','publish','closed','closed','','contact-form','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',0,'https://estatesatnuevo.com/?p=7',0,'wpuf_contact_form','',0),(8,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:20:{s:8:\"template\";s:10:\"name_field\";s:4:\"name\";s:4:\"name\";s:5:\"label\";s:4:\"Name\";s:8:\"required\";s:3:\"yes\";s:2:\"id\";i:0;s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:6:\"is_new\";b:1;s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:6:\"format\";s:10:\"first-last\";s:10:\"first_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:5:\"First\";}s:11:\"middle_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:6:\"Middle\";}s:9:\"last_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:4:\"Last\";}s:6:\"inline\";s:3:\"yes\";s:9:\"hide_subs\";b:0;}','','','publish','closed','closed','','8','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',7,'https://estatesatnuevo.com/?p=8',0,'wpuf_input','',0),(9,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:15:{s:8:\"template\";s:13:\"email_address\";s:4:\"name\";s:5:\"email\";s:5:\"label\";s:13:\"Email Address\";s:8:\"required\";s:3:\"yes\";s:2:\"id\";i:0;s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:6:\"is_new\";b:1;s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";s:0:\"\";}','','','publish','closed','closed','','9','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',7,'https://estatesatnuevo.com/?p=9',1,'wpuf_input','',0),(10,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:18:{s:8:\"template\";s:14:\"textarea_field\";s:4:\"name\";s:7:\"message\";s:5:\"label\";s:7:\"Message\";s:8:\"required\";s:3:\"yes\";s:2:\"id\";i:0;s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:6:\"is_new\";b:1;s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:16:\"word_restriction\";s:0:\"\";s:4:\"rows\";i:5;s:4:\"cols\";i:25;s:4:\"rich\";s:2:\"no\";}','','','publish','closed','closed','','10','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',7,'https://estatesatnuevo.com/?p=10',2,'wpuf_input','',0),(11,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','{\"id\":11,\"field_id\":4,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"textarea\",\"label\":\"Message\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"BoldGrid Form 1\",\"form_desc\":\"\",\"hide_title_desc\":\"1\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Form 1 submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','BoldGrid Form 1','','publish','closed','closed','','boldgrid-form-1','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',0,'https://estatesatnuevo.com/?post_type=wpuf_contact_form&#038;p=11',0,'wpuf_contact_form','',0),(12,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"name\";s:8:\"template\";s:10:\"name_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:4:\"Name\";s:4:\"name\";s:6:\"name_1\";s:7:\"is_meta\";s:3:\"yes\";s:6:\"format\";s:10:\"first-last\";s:10:\"first_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:5:\"First\";}s:11:\"middle_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:6:\"Middle\";}s:9:\"last_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:4:\"Last\";}s:9:\"hide_subs\";b:0;s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','12','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',11,'https://estatesatnuevo.com/?p=12',0,'wpuf_input','',0),(13,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:5:\"email\";s:8:\"template\";s:13:\"email_address\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:5:\"Email\";s:4:\"name\";s:7:\"email_2\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','13','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',11,'https://estatesatnuevo.com/?p=13',1,'wpuf_input','',0),(14,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:15:{s:10:\"input_type\";s:8:\"textarea\";s:8:\"template\";s:14:\"textarea_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:7:\"Message\";s:4:\"name\";s:10:\"textarea_3\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:4:\"rows\";i:5;s:4:\"cols\";i:25;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"rich\";s:2:\"no\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','14','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',11,'https://estatesatnuevo.com/?p=14',2,'wpuf_input','',0),(15,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','{\"id\":15,\"field_id\":14,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"text\",\"label\":\"Subject\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Street Address\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"text\",\"label\":\"Address Line 2\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"text\",\"label\":\"City\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"9\":{\"id\":\"9\",\"type\":\"select\",\"label\":\"State\",\"choices\":{\"1\":{\"default\":\"1\",\"label\":\"Select...\",\"value\":\"\"},\"5\":{\"label\":\"Alabama (AL)\",\"value\":\"AL\"},\"6\":{\"label\":\"Alaska (AK)\",\"value\":\"AK\"},\"7\":{\"label\":\"American Samoa (AS)\",\"value\":\"AS\"},\"8\":{\"label\":\"Arizona (AZ)\",\"value\":\"AZ\"},\"9\":{\"label\":\"Arkansas (AR)\",\"value\":\"AR\"},\"10\":{\"label\":\"California (CA)\",\"value\":\"CA\"},\"11\":{\"label\":\"Colorado (CO)\",\"value\":\"CO\"},\"12\":{\"label\":\"Connecticut (CT)\",\"value\":\"CT\"},\"13\":{\"label\":\"Delaware (DE)\",\"value\":\"DE\"},\"14\":{\"label\":\"Dist. of Columbia (DC)\",\"value\":\"DC\"},\"15\":{\"label\":\"Florida (FL)\",\"value\":\"FL\"},\"16\":{\"label\":\"Georgia (GA)\",\"value\":\"GA\"},\"17\":{\"label\":\"Guam (GU)\",\"value\":\"GU\"},\"18\":{\"label\":\"Hawaii (HI)\",\"value\":\"HI\"},\"19\":{\"label\":\"Idaho (ID)\",\"value\":\"ID\"},\"20\":{\"label\":\"Illinois (IL)\",\"value\":\"IL\"},\"21\":{\"label\":\"Indiana (IN)\",\"value\":\"IN\"},\"22\":{\"label\":\"Iowa (IA)\",\"value\":\"IA\"},\"23\":{\"label\":\"Kansas (KS)\",\"value\":\"KS\"},\"24\":{\"label\":\"Kentucky (KY)\",\"value\":\"KY\"},\"25\":{\"label\":\"Louisiana (LA)\",\"value\":\"LA\"},\"26\":{\"label\":\"Maine (ME)\",\"value\":\"ME\"},\"27\":{\"label\":\"Maryland (MD)\",\"value\":\"MD\"},\"28\":{\"label\":\"Marshall Islands (MH)\",\"value\":\"MH\"},\"29\":{\"label\":\"Massachusetts (MA)\",\"value\":\"MA\"},\"30\":{\"label\":\"Michigan (MI)\",\"value\":\"MI\"},\"31\":{\"label\":\"Micronesia (FM)\",\"value\":\"FM\"},\"32\":{\"label\":\"Minnesota (MN)\",\"value\":\"MN\"},\"33\":{\"label\":\"Mississippi (MS)\",\"value\":\"MS\"},\"34\":{\"label\":\"Missouri (MO)\",\"value\":\"MO\"},\"35\":{\"label\":\"Montana (MT)\",\"value\":\"MT\"},\"36\":{\"label\":\"Nebraska (NE)\",\"value\":\"NE\"},\"37\":{\"label\":\"Nevada (NV)\",\"value\":\"NV\"},\"38\":{\"label\":\"New Hampshire (NH)\",\"value\":\"NH\"},\"39\":{\"label\":\"New Jersey (NJ)\",\"value\":\"NJ\"},\"40\":{\"label\":\"New Mexico (NM)\",\"value\":\"NM\"},\"41\":{\"label\":\"New York (NY)\",\"value\":\"NY\"},\"42\":{\"label\":\"North Carolina (NC)\",\"value\":\"NC\"},\"43\":{\"label\":\"North Dakota (ND)\",\"value\":\"ND\"},\"44\":{\"label\":\"Northern Marianas (MP)\",\"value\":\"MP\"},\"45\":{\"label\":\"Ohio (OH)\",\"value\":\"OH\"},\"46\":{\"label\":\"Oklahoma (OK)\",\"value\":\"OK\"},\"47\":{\"label\":\"Oregon (OR)\",\"value\":\"OR\"},\"48\":{\"label\":\"Palau (PW)\",\"value\":\"PW\"},\"49\":{\"label\":\"Pennsylvania (PA)\",\"value\":\"PA\"},\"50\":{\"label\":\"Puerto Rico (PR)\",\"value\":\"PR\"},\"51\":{\"label\":\"Rhode Island (RI)\",\"value\":\"RI\"},\"52\":{\"label\":\"South Carolina (SC)\",\"value\":\"SC\"},\"53\":{\"label\":\"South Dakota (SD)\",\"value\":\"SD\"},\"54\":{\"label\":\"Tennessee (TN)\",\"value\":\"TN\"},\"55\":{\"label\":\"Texas (TX)\",\"value\":\"TX\"},\"56\":{\"label\":\"Utah (UT)\",\"value\":\"UT\"},\"57\":{\"label\":\"Vermont (VT)\",\"value\":\"VT\"},\"58\":{\"label\":\"Virginia (VA)\",\"value\":\"VA\"},\"59\":{\"label\":\"Virgin Islands (VI)\",\"value\":\"VI\"},\"60\":{\"label\":\"Washington (WA)\",\"value\":\"WA\"},\"61\":{\"label\":\"West Virginia (WV)\",\"value\":\"WV\"},\"62\":{\"label\":\"Wisconsin (WI)\",\"value\":\"WI\"},\"63\":{\"label\":\"Wyoming (WY)\",\"value\":\"WY\"},\"64\":{\"label\":\"Other\",\"value\":\"Other\"}},\"description\":\"\",\"show_values\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"10\":{\"id\":\"10\",\"type\":\"text\",\"label\":\"ZIP / Postal Code\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"11\":{\"id\":\"11\",\"type\":\"text\",\"label\":\"Country\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"12\":{\"id\":\"12\",\"type\":\"text\",\"label\":\"Phone\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"13\":{\"id\":\"13\",\"type\":\"textarea\",\"label\":\"Message\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"BoldGrid Form 2\",\"form_desc\":\"\",\"hide_title_desc\":\"1\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Form 2 submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','BoldGrid Form 2','','publish','closed','closed','','boldgrid-form-2','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',0,'https://estatesatnuevo.com/?post_type=wpuf_contact_form&#038;p=15',0,'wpuf_contact_form','',0),(16,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:7:\"Subject\";s:4:\"name\";s:6:\"text_1\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','16','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',15,'https://estatesatnuevo.com/?p=16',0,'wpuf_input','',0),(17,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"name\";s:8:\"template\";s:10:\"name_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:4:\"Name\";s:4:\"name\";s:6:\"name_2\";s:7:\"is_meta\";s:3:\"yes\";s:6:\"format\";s:10:\"first-last\";s:10:\"first_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:5:\"First\";}s:11:\"middle_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:6:\"Middle\";}s:9:\"last_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:4:\"Last\";}s:9:\"hide_subs\";b:0;s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','17','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',15,'https://estatesatnuevo.com/?p=17',1,'wpuf_input','',0),(18,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:5:\"email\";s:8:\"template\";s:13:\"email_address\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:5:\"Email\";s:4:\"name\";s:7:\"email_3\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','18','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',15,'https://estatesatnuevo.com/?p=18',2,'wpuf_input','',0),(19,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:14:\"Street Address\";s:4:\"name\";s:6:\"text_4\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','19','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',15,'https://estatesatnuevo.com/?p=19',3,'wpuf_input','',0),(20,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:14:\"Address Line 2\";s:4:\"name\";s:6:\"text_5\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','20','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',15,'https://estatesatnuevo.com/?p=20',4,'wpuf_input','',0),(21,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:4:\"City\";s:4:\"name\";s:6:\"text_6\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','21','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',15,'https://estatesatnuevo.com/?p=21',5,'wpuf_input','',0),(22,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:12:{s:10:\"input_type\";s:6:\"select\";s:8:\"template\";s:14:\"dropdown_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:5:\"State\";s:4:\"name\";s:8:\"select_9\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:8:\"selected\";s:0:\"\";s:6:\"inline\";s:2:\"no\";s:7:\"options\";a:61:{s:9:\"Select...\";s:9:\"Select...\";s:12:\"Alabama (AL)\";s:12:\"Alabama (AL)\";s:11:\"Alaska (AK)\";s:11:\"Alaska (AK)\";s:19:\"American Samoa (AS)\";s:19:\"American Samoa (AS)\";s:12:\"Arizona (AZ)\";s:12:\"Arizona (AZ)\";s:13:\"Arkansas (AR)\";s:13:\"Arkansas (AR)\";s:15:\"California (CA)\";s:15:\"California (CA)\";s:13:\"Colorado (CO)\";s:13:\"Colorado (CO)\";s:16:\"Connecticut (CT)\";s:16:\"Connecticut (CT)\";s:13:\"Delaware (DE)\";s:13:\"Delaware (DE)\";s:22:\"Dist. of Columbia (DC)\";s:22:\"Dist. of Columbia (DC)\";s:12:\"Florida (FL)\";s:12:\"Florida (FL)\";s:12:\"Georgia (GA)\";s:12:\"Georgia (GA)\";s:9:\"Guam (GU)\";s:9:\"Guam (GU)\";s:11:\"Hawaii (HI)\";s:11:\"Hawaii (HI)\";s:10:\"Idaho (ID)\";s:10:\"Idaho (ID)\";s:13:\"Illinois (IL)\";s:13:\"Illinois (IL)\";s:12:\"Indiana (IN)\";s:12:\"Indiana (IN)\";s:9:\"Iowa (IA)\";s:9:\"Iowa (IA)\";s:11:\"Kansas (KS)\";s:11:\"Kansas (KS)\";s:13:\"Kentucky (KY)\";s:13:\"Kentucky (KY)\";s:14:\"Louisiana (LA)\";s:14:\"Louisiana (LA)\";s:10:\"Maine (ME)\";s:10:\"Maine (ME)\";s:13:\"Maryland (MD)\";s:13:\"Maryland (MD)\";s:21:\"Marshall Islands (MH)\";s:21:\"Marshall Islands (MH)\";s:18:\"Massachusetts (MA)\";s:18:\"Massachusetts (MA)\";s:13:\"Michigan (MI)\";s:13:\"Michigan (MI)\";s:15:\"Micronesia (FM)\";s:15:\"Micronesia (FM)\";s:14:\"Minnesota (MN)\";s:14:\"Minnesota (MN)\";s:16:\"Mississippi (MS)\";s:16:\"Mississippi (MS)\";s:13:\"Missouri (MO)\";s:13:\"Missouri (MO)\";s:12:\"Montana (MT)\";s:12:\"Montana (MT)\";s:13:\"Nebraska (NE)\";s:13:\"Nebraska (NE)\";s:11:\"Nevada (NV)\";s:11:\"Nevada (NV)\";s:18:\"New Hampshire (NH)\";s:18:\"New Hampshire (NH)\";s:15:\"New Jersey (NJ)\";s:15:\"New Jersey (NJ)\";s:15:\"New Mexico (NM)\";s:15:\"New Mexico (NM)\";s:13:\"New York (NY)\";s:13:\"New York (NY)\";s:19:\"North Carolina (NC)\";s:19:\"North Carolina (NC)\";s:17:\"North Dakota (ND)\";s:17:\"North Dakota (ND)\";s:22:\"Northern Marianas (MP)\";s:22:\"Northern Marianas (MP)\";s:9:\"Ohio (OH)\";s:9:\"Ohio (OH)\";s:13:\"Oklahoma (OK)\";s:13:\"Oklahoma (OK)\";s:11:\"Oregon (OR)\";s:11:\"Oregon (OR)\";s:10:\"Palau (PW)\";s:10:\"Palau (PW)\";s:17:\"Pennsylvania (PA)\";s:17:\"Pennsylvania (PA)\";s:16:\"Puerto Rico (PR)\";s:16:\"Puerto Rico (PR)\";s:17:\"Rhode Island (RI)\";s:17:\"Rhode Island (RI)\";s:19:\"South Carolina (SC)\";s:19:\"South Carolina (SC)\";s:17:\"South Dakota (SD)\";s:17:\"South Dakota (SD)\";s:14:\"Tennessee (TN)\";s:14:\"Tennessee (TN)\";s:10:\"Texas (TX)\";s:10:\"Texas (TX)\";s:9:\"Utah (UT)\";s:9:\"Utah (UT)\";s:12:\"Vermont (VT)\";s:12:\"Vermont (VT)\";s:13:\"Virginia (VA)\";s:13:\"Virginia (VA)\";s:19:\"Virgin Islands (VI)\";s:19:\"Virgin Islands (VI)\";s:15:\"Washington (WA)\";s:15:\"Washington (WA)\";s:18:\"West Virginia (WV)\";s:18:\"West Virginia (WV)\";s:14:\"Wisconsin (WI)\";s:14:\"Wisconsin (WI)\";s:12:\"Wyoming (WY)\";s:12:\"Wyoming (WY)\";s:5:\"Other\";s:5:\"Other\";}s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','22','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',15,'https://estatesatnuevo.com/?p=22',6,'wpuf_input','',0),(23,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:17:\"ZIP / Postal Code\";s:4:\"name\";s:7:\"text_10\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','23','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',15,'https://estatesatnuevo.com/?p=23',7,'wpuf_input','',0),(24,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:7:\"Country\";s:4:\"name\";s:7:\"text_11\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','24','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',15,'https://estatesatnuevo.com/?p=24',8,'wpuf_input','',0),(25,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:5:\"Phone\";s:4:\"name\";s:7:\"text_12\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','25','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',15,'https://estatesatnuevo.com/?p=25',9,'wpuf_input','',0),(26,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:15:{s:10:\"input_type\";s:8:\"textarea\";s:8:\"template\";s:14:\"textarea_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:7:\"Message\";s:4:\"name\";s:11:\"textarea_13\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:4:\"rows\";i:5;s:4:\"cols\";i:25;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"rich\";s:2:\"no\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','26','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',15,'https://estatesatnuevo.com/?p=26',10,'wpuf_input','',0),(27,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','{\"id\":27,\"field_id\":17,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"text\",\"label\":\"Subject\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Street Address\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"text\",\"label\":\"Address Line 2\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"text\",\"label\":\"City\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"9\":{\"id\":\"9\",\"type\":\"select\",\"label\":\"State\",\"choices\":{\"1\":{\"default\":\"1\",\"label\":\"Select...\",\"value\":\"\"},\"5\":{\"label\":\"Alabama (AL)\",\"value\":\"AL\"},\"6\":{\"label\":\"Alaska (AK)\",\"value\":\"AK\"},\"7\":{\"label\":\"American Samoa (AS)\",\"value\":\"AS\"},\"8\":{\"label\":\"Arizona (AZ)\",\"value\":\"AZ\"},\"9\":{\"label\":\"Arkansas (AR)\",\"value\":\"AR\"},\"10\":{\"label\":\"California (CA)\",\"value\":\"CA\"},\"11\":{\"label\":\"Colorado (CO)\",\"value\":\"CO\"},\"12\":{\"label\":\"Connecticut (CT)\",\"value\":\"CT\"},\"13\":{\"label\":\"Delaware (DE)\",\"value\":\"DE\"},\"14\":{\"label\":\"Dist. of Columbia (DC)\",\"value\":\"DC\"},\"15\":{\"label\":\"Florida (FL)\",\"value\":\"FL\"},\"16\":{\"label\":\"Georgia (GA)\",\"value\":\"GA\"},\"17\":{\"label\":\"Guam (GU)\",\"value\":\"GU\"},\"18\":{\"label\":\"Hawaii (HI)\",\"value\":\"HI\"},\"19\":{\"label\":\"Idaho (ID)\",\"value\":\"ID\"},\"20\":{\"label\":\"Illinois (IL)\",\"value\":\"IL\"},\"21\":{\"label\":\"Indiana (IN)\",\"value\":\"IN\"},\"22\":{\"label\":\"Iowa (IA)\",\"value\":\"IA\"},\"23\":{\"label\":\"Kansas (KS)\",\"value\":\"KS\"},\"24\":{\"label\":\"Kentucky (KY)\",\"value\":\"KY\"},\"25\":{\"label\":\"Louisiana (LA)\",\"value\":\"LA\"},\"26\":{\"label\":\"Maine (ME)\",\"value\":\"ME\"},\"27\":{\"label\":\"Maryland (MD)\",\"value\":\"MD\"},\"28\":{\"label\":\"Marshall Islands (MH)\",\"value\":\"MH\"},\"29\":{\"label\":\"Massachusetts (MA)\",\"value\":\"MA\"},\"30\":{\"label\":\"Michigan (MI)\",\"value\":\"MI\"},\"31\":{\"label\":\"Micronesia (FM)\",\"value\":\"FM\"},\"32\":{\"label\":\"Minnesota (MN)\",\"value\":\"MN\"},\"33\":{\"label\":\"Mississippi (MS)\",\"value\":\"MS\"},\"34\":{\"label\":\"Missouri (MO)\",\"value\":\"MO\"},\"35\":{\"label\":\"Montana (MT)\",\"value\":\"MT\"},\"36\":{\"label\":\"Nebraska (NE)\",\"value\":\"NE\"},\"37\":{\"label\":\"Nevada (NV)\",\"value\":\"NV\"},\"38\":{\"label\":\"New Hampshire (NH)\",\"value\":\"NH\"},\"39\":{\"label\":\"New Jersey (NJ)\",\"value\":\"NJ\"},\"40\":{\"label\":\"New Mexico (NM)\",\"value\":\"NM\"},\"41\":{\"label\":\"New York (NY)\",\"value\":\"NY\"},\"42\":{\"label\":\"North Carolina (NC)\",\"value\":\"NC\"},\"43\":{\"label\":\"North Dakota (ND)\",\"value\":\"ND\"},\"44\":{\"label\":\"Northern Marianas (MP)\",\"value\":\"MP\"},\"45\":{\"label\":\"Ohio (OH)\",\"value\":\"OH\"},\"46\":{\"label\":\"Oklahoma (OK)\",\"value\":\"OK\"},\"47\":{\"label\":\"Oregon (OR)\",\"value\":\"OR\"},\"48\":{\"label\":\"Palau (PW)\",\"value\":\"PW\"},\"49\":{\"label\":\"Pennsylvania (PA)\",\"value\":\"PA\"},\"50\":{\"label\":\"Puerto Rico (PR)\",\"value\":\"PR\"},\"51\":{\"label\":\"Rhode Island (RI)\",\"value\":\"RI\"},\"52\":{\"label\":\"South Carolina (SC)\",\"value\":\"SC\"},\"53\":{\"label\":\"South Dakota (SD)\",\"value\":\"SD\"},\"54\":{\"label\":\"Tennessee (TN)\",\"value\":\"TN\"},\"55\":{\"label\":\"Texas (TX)\",\"value\":\"TX\"},\"56\":{\"label\":\"Utah (UT)\",\"value\":\"UT\"},\"57\":{\"label\":\"Vermont (VT)\",\"value\":\"VT\"},\"58\":{\"label\":\"Virginia (VA)\",\"value\":\"VA\"},\"59\":{\"label\":\"Virgin Islands (VI)\",\"value\":\"VI\"},\"60\":{\"label\":\"Washington (WA)\",\"value\":\"WA\"},\"61\":{\"label\":\"West Virginia (WV)\",\"value\":\"WV\"},\"62\":{\"label\":\"Wisconsin (WI)\",\"value\":\"WI\"},\"63\":{\"label\":\"Wyoming (WY)\",\"value\":\"WY\"},\"64\":{\"label\":\"Other\",\"value\":\"Other\"}},\"description\":\"\",\"show_values\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"10\":{\"id\":\"10\",\"type\":\"text\",\"label\":\"ZIP / Postal Code\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"11\":{\"id\":\"11\",\"type\":\"text\",\"label\":\"Country\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"12\":{\"id\":\"12\",\"type\":\"text\",\"label\":\"Phone\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"14\":{\"id\":\"14\",\"type\":\"text\",\"label\":\"Alternate Phone\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"15\":{\"id\":\"15\",\"type\":\"radio\",\"label\":\"When is the best time to contact you?\",\"choices\":{\"1\":{\"label\":\"Morning\",\"value\":\"Morning\"},\"2\":{\"label\":\"Afternoon\",\"value\":\"Afternoon\"},\"3\":{\"label\":\"Evening\",\"value\":\"Evening\"}},\"description\":\"\",\"show_values\":\"1\",\"input_columns\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"16\":{\"id\":\"16\",\"type\":\"radio\",\"label\":\"What is the best way to contact you?\",\"choices\":{\"1\":{\"label\":\"Phone\",\"value\":\"Phone\"},\"2\":{\"label\":\"Email\",\"value\":\"Email\"}},\"description\":\"\",\"show_values\":\"1\",\"input_columns\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"13\":{\"id\":\"13\",\"type\":\"textarea\",\"label\":\"Message\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"BoldGrid Form 3\",\"form_desc\":\"\",\"hide_title_desc\":\"1\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Form 3 submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','BoldGrid Form 3','','publish','closed','closed','','boldgrid-form-3','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',0,'https://estatesatnuevo.com/?post_type=wpuf_contact_form&#038;p=27',0,'wpuf_contact_form','',0),(28,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:7:\"Subject\";s:4:\"name\";s:6:\"text_1\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','28','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',27,'https://estatesatnuevo.com/?p=28',0,'wpuf_input','',0),(29,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"name\";s:8:\"template\";s:10:\"name_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:4:\"Name\";s:4:\"name\";s:6:\"name_2\";s:7:\"is_meta\";s:3:\"yes\";s:6:\"format\";s:10:\"first-last\";s:10:\"first_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:5:\"First\";}s:11:\"middle_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:6:\"Middle\";}s:9:\"last_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:4:\"Last\";}s:9:\"hide_subs\";b:0;s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','29','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',27,'https://estatesatnuevo.com/?p=29',1,'wpuf_input','',0),(30,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:5:\"email\";s:8:\"template\";s:13:\"email_address\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:5:\"Email\";s:4:\"name\";s:7:\"email_3\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','30','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',27,'https://estatesatnuevo.com/?p=30',2,'wpuf_input','',0),(31,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:14:\"Street Address\";s:4:\"name\";s:6:\"text_4\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','31','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',27,'https://estatesatnuevo.com/?p=31',3,'wpuf_input','',0),(32,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:14:\"Address Line 2\";s:4:\"name\";s:6:\"text_5\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','32','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',27,'https://estatesatnuevo.com/?p=32',4,'wpuf_input','',0),(33,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:4:\"City\";s:4:\"name\";s:6:\"text_6\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','33','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',27,'https://estatesatnuevo.com/?p=33',5,'wpuf_input','',0),(34,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:12:{s:10:\"input_type\";s:6:\"select\";s:8:\"template\";s:14:\"dropdown_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:5:\"State\";s:4:\"name\";s:8:\"select_9\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:8:\"selected\";s:0:\"\";s:6:\"inline\";s:2:\"no\";s:7:\"options\";a:61:{s:9:\"Select...\";s:9:\"Select...\";s:12:\"Alabama (AL)\";s:12:\"Alabama (AL)\";s:11:\"Alaska (AK)\";s:11:\"Alaska (AK)\";s:19:\"American Samoa (AS)\";s:19:\"American Samoa (AS)\";s:12:\"Arizona (AZ)\";s:12:\"Arizona (AZ)\";s:13:\"Arkansas (AR)\";s:13:\"Arkansas (AR)\";s:15:\"California (CA)\";s:15:\"California (CA)\";s:13:\"Colorado (CO)\";s:13:\"Colorado (CO)\";s:16:\"Connecticut (CT)\";s:16:\"Connecticut (CT)\";s:13:\"Delaware (DE)\";s:13:\"Delaware (DE)\";s:22:\"Dist. of Columbia (DC)\";s:22:\"Dist. of Columbia (DC)\";s:12:\"Florida (FL)\";s:12:\"Florida (FL)\";s:12:\"Georgia (GA)\";s:12:\"Georgia (GA)\";s:9:\"Guam (GU)\";s:9:\"Guam (GU)\";s:11:\"Hawaii (HI)\";s:11:\"Hawaii (HI)\";s:10:\"Idaho (ID)\";s:10:\"Idaho (ID)\";s:13:\"Illinois (IL)\";s:13:\"Illinois (IL)\";s:12:\"Indiana (IN)\";s:12:\"Indiana (IN)\";s:9:\"Iowa (IA)\";s:9:\"Iowa (IA)\";s:11:\"Kansas (KS)\";s:11:\"Kansas (KS)\";s:13:\"Kentucky (KY)\";s:13:\"Kentucky (KY)\";s:14:\"Louisiana (LA)\";s:14:\"Louisiana (LA)\";s:10:\"Maine (ME)\";s:10:\"Maine (ME)\";s:13:\"Maryland (MD)\";s:13:\"Maryland (MD)\";s:21:\"Marshall Islands (MH)\";s:21:\"Marshall Islands (MH)\";s:18:\"Massachusetts (MA)\";s:18:\"Massachusetts (MA)\";s:13:\"Michigan (MI)\";s:13:\"Michigan (MI)\";s:15:\"Micronesia (FM)\";s:15:\"Micronesia (FM)\";s:14:\"Minnesota (MN)\";s:14:\"Minnesota (MN)\";s:16:\"Mississippi (MS)\";s:16:\"Mississippi (MS)\";s:13:\"Missouri (MO)\";s:13:\"Missouri (MO)\";s:12:\"Montana (MT)\";s:12:\"Montana (MT)\";s:13:\"Nebraska (NE)\";s:13:\"Nebraska (NE)\";s:11:\"Nevada (NV)\";s:11:\"Nevada (NV)\";s:18:\"New Hampshire (NH)\";s:18:\"New Hampshire (NH)\";s:15:\"New Jersey (NJ)\";s:15:\"New Jersey (NJ)\";s:15:\"New Mexico (NM)\";s:15:\"New Mexico (NM)\";s:13:\"New York (NY)\";s:13:\"New York (NY)\";s:19:\"North Carolina (NC)\";s:19:\"North Carolina (NC)\";s:17:\"North Dakota (ND)\";s:17:\"North Dakota (ND)\";s:22:\"Northern Marianas (MP)\";s:22:\"Northern Marianas (MP)\";s:9:\"Ohio (OH)\";s:9:\"Ohio (OH)\";s:13:\"Oklahoma (OK)\";s:13:\"Oklahoma (OK)\";s:11:\"Oregon (OR)\";s:11:\"Oregon (OR)\";s:10:\"Palau (PW)\";s:10:\"Palau (PW)\";s:17:\"Pennsylvania (PA)\";s:17:\"Pennsylvania (PA)\";s:16:\"Puerto Rico (PR)\";s:16:\"Puerto Rico (PR)\";s:17:\"Rhode Island (RI)\";s:17:\"Rhode Island (RI)\";s:19:\"South Carolina (SC)\";s:19:\"South Carolina (SC)\";s:17:\"South Dakota (SD)\";s:17:\"South Dakota (SD)\";s:14:\"Tennessee (TN)\";s:14:\"Tennessee (TN)\";s:10:\"Texas (TX)\";s:10:\"Texas (TX)\";s:9:\"Utah (UT)\";s:9:\"Utah (UT)\";s:12:\"Vermont (VT)\";s:12:\"Vermont (VT)\";s:13:\"Virginia (VA)\";s:13:\"Virginia (VA)\";s:19:\"Virgin Islands (VI)\";s:19:\"Virgin Islands (VI)\";s:15:\"Washington (WA)\";s:15:\"Washington (WA)\";s:18:\"West Virginia (WV)\";s:18:\"West Virginia (WV)\";s:14:\"Wisconsin (WI)\";s:14:\"Wisconsin (WI)\";s:12:\"Wyoming (WY)\";s:12:\"Wyoming (WY)\";s:5:\"Other\";s:5:\"Other\";}s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','34','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',27,'https://estatesatnuevo.com/?p=34',6,'wpuf_input','',0),(35,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:17:\"ZIP / Postal Code\";s:4:\"name\";s:7:\"text_10\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','35','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',27,'https://estatesatnuevo.com/?p=35',7,'wpuf_input','',0),(36,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:7:\"Country\";s:4:\"name\";s:7:\"text_11\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','36','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',27,'https://estatesatnuevo.com/?p=36',8,'wpuf_input','',0),(37,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:5:\"Phone\";s:4:\"name\";s:7:\"text_12\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','37','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',27,'https://estatesatnuevo.com/?p=37',9,'wpuf_input','',0),(38,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:15:\"Alternate Phone\";s:4:\"name\";s:7:\"text_14\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','38','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',27,'https://estatesatnuevo.com/?p=38',10,'wpuf_input','',0),(39,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:12:{s:10:\"input_type\";s:5:\"radio\";s:8:\"template\";s:11:\"radio_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:37:\"When is the best time to contact you?\";s:4:\"name\";s:8:\"radio_15\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:8:\"selected\";s:0:\"\";s:6:\"inline\";s:2:\"no\";s:7:\"options\";a:3:{s:7:\"Morning\";s:7:\"Morning\";s:9:\"Afternoon\";s:9:\"Afternoon\";s:7:\"Evening\";s:7:\"Evening\";}s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','39','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',27,'https://estatesatnuevo.com/?p=39',11,'wpuf_input','',0),(40,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:12:{s:10:\"input_type\";s:5:\"radio\";s:8:\"template\";s:11:\"radio_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:36:\"What is the best way to contact you?\";s:4:\"name\";s:8:\"radio_16\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:8:\"selected\";s:0:\"\";s:6:\"inline\";s:2:\"no\";s:7:\"options\";a:2:{s:5:\"Phone\";s:5:\"Phone\";s:5:\"Email\";s:5:\"Email\";}s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','40','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',27,'https://estatesatnuevo.com/?p=40',12,'wpuf_input','',0),(41,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:15:{s:10:\"input_type\";s:8:\"textarea\";s:8:\"template\";s:14:\"textarea_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:7:\"Message\";s:4:\"name\";s:11:\"textarea_13\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:4:\"rows\";i:5;s:4:\"cols\";i:25;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"rich\";s:2:\"no\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','41','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',27,'https://estatesatnuevo.com/?p=41',13,'wpuf_input','',0),(42,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','{\"id\":42,\"field_id\":14,\"fields\":{\"2\":{\"id\":\"2\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Street Address\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"text\",\"label\":\"Address Line 2\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"text\",\"label\":\"City / Town\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"9\":{\"id\":\"9\",\"type\":\"select\",\"label\":\"State / Province\",\"choices\":{\"1\":{\"default\":\"1\",\"label\":\"Select...\",\"value\":\"\"},\"5\":{\"label\":\"Alabama (AL)\",\"value\":\"AL\"},\"6\":{\"label\":\"Alaska (AK)\",\"value\":\"AK\"},\"7\":{\"label\":\"American Samoa (AS)\",\"value\":\"AS\"},\"8\":{\"label\":\"Arizona (AZ)\",\"value\":\"AZ\"},\"9\":{\"label\":\"Arkansas (AR)\",\"value\":\"AR\"},\"10\":{\"label\":\"California (CA)\",\"value\":\"CA\"},\"11\":{\"label\":\"Colorado (CO)\",\"value\":\"CO\"},\"12\":{\"label\":\"Connecticut (CT)\",\"value\":\"CT\"},\"13\":{\"label\":\"Delaware (DE)\",\"value\":\"DE\"},\"14\":{\"label\":\"Dist. of Columbia (DC)\",\"value\":\"DC\"},\"15\":{\"label\":\"Florida (FL)\",\"value\":\"FL\"},\"16\":{\"label\":\"Georgia (GA)\",\"value\":\"GA\"},\"17\":{\"label\":\"Guam (GU)\",\"value\":\"GU\"},\"18\":{\"label\":\"Hawaii (HI)\",\"value\":\"HI\"},\"19\":{\"label\":\"Idaho (ID)\",\"value\":\"ID\"},\"20\":{\"label\":\"Illinois (IL)\",\"value\":\"IL\"},\"21\":{\"label\":\"Indiana (IN)\",\"value\":\"IN\"},\"22\":{\"label\":\"Iowa (IA)\",\"value\":\"IA\"},\"23\":{\"label\":\"Kansas (KS)\",\"value\":\"KS\"},\"24\":{\"label\":\"Kentucky (KY)\",\"value\":\"KY\"},\"25\":{\"label\":\"Louisiana (LA)\",\"value\":\"LA\"},\"26\":{\"label\":\"Maine (ME)\",\"value\":\"ME\"},\"27\":{\"label\":\"Maryland (MD)\",\"value\":\"MD\"},\"28\":{\"label\":\"Marshall Islands (MH)\",\"value\":\"MH\"},\"29\":{\"label\":\"Massachusetts (MA)\",\"value\":\"MA\"},\"30\":{\"label\":\"Michigan (MI)\",\"value\":\"MI\"},\"31\":{\"label\":\"Micronesia (FM)\",\"value\":\"FM\"},\"32\":{\"label\":\"Minnesota (MN)\",\"value\":\"MN\"},\"33\":{\"label\":\"Mississippi (MS)\",\"value\":\"MS\"},\"34\":{\"label\":\"Missouri (MO)\",\"value\":\"MO\"},\"35\":{\"label\":\"Montana (MT)\",\"value\":\"MT\"},\"36\":{\"label\":\"Nebraska (NE)\",\"value\":\"NE\"},\"37\":{\"label\":\"Nevada (NV)\",\"value\":\"NV\"},\"38\":{\"label\":\"New Hampshire (NH)\",\"value\":\"NH\"},\"39\":{\"label\":\"New Jersey (NJ)\",\"value\":\"NJ\"},\"40\":{\"label\":\"New Mexico (NM)\",\"value\":\"NM\"},\"41\":{\"label\":\"New York (NY)\",\"value\":\"NY\"},\"42\":{\"label\":\"North Carolina (NC)\",\"value\":\"NC\"},\"43\":{\"label\":\"North Dakota (ND)\",\"value\":\"ND\"},\"44\":{\"label\":\"Northern Marianas (MP)\",\"value\":\"MP\"},\"45\":{\"label\":\"Ohio (OH)\",\"value\":\"OH\"},\"46\":{\"label\":\"Oklahoma (OK)\",\"value\":\"OK\"},\"47\":{\"label\":\"Oregon (OR)\",\"value\":\"OR\"},\"48\":{\"label\":\"Palau (PW)\",\"value\":\"PW\"},\"49\":{\"label\":\"Pennsylvania (PA)\",\"value\":\"PA\"},\"50\":{\"label\":\"Puerto Rico (PR)\",\"value\":\"PR\"},\"51\":{\"label\":\"Rhode Island (RI)\",\"value\":\"RI\"},\"52\":{\"label\":\"South Carolina (SC)\",\"value\":\"SC\"},\"53\":{\"label\":\"South Dakota (SD)\",\"value\":\"SD\"},\"54\":{\"label\":\"Tennessee (TN)\",\"value\":\"TN\"},\"55\":{\"label\":\"Texas (TX)\",\"value\":\"TX\"},\"56\":{\"label\":\"Utah (UT)\",\"value\":\"UT\"},\"57\":{\"label\":\"Vermont (VT)\",\"value\":\"VT\"},\"58\":{\"label\":\"Virginia (VA)\",\"value\":\"VA\"},\"59\":{\"label\":\"Virgin Islands (VI)\",\"value\":\"VI\"},\"60\":{\"label\":\"Washington (WA)\",\"value\":\"WA\"},\"61\":{\"label\":\"West Virginia (WV)\",\"value\":\"WV\"},\"62\":{\"label\":\"Wisconsin (WI)\",\"value\":\"WI\"},\"63\":{\"label\":\"Wyoming (WY)\",\"value\":\"WY\"},\"64\":{\"label\":\"Other\",\"value\":\"Other\"}},\"description\":\"\",\"required\":\"1\",\"show_values\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"10\":{\"id\":\"10\",\"type\":\"text\",\"label\":\"ZIP / Postal Code\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"11\":{\"id\":\"11\",\"type\":\"text\",\"label\":\"Country\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Address Form (International)\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Address Form (International) submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','Address Form (International)','','publish','closed','closed','','address-form-international','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',0,'https://estatesatnuevo.com/?post_type=wpuf_contact_form&#038;p=42',0,'wpuf_contact_form','',0),(43,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"name\";s:8:\"template\";s:10:\"name_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:4:\"Name\";s:4:\"name\";s:6:\"name_2\";s:7:\"is_meta\";s:3:\"yes\";s:6:\"format\";s:10:\"first-last\";s:10:\"first_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:5:\"First\";}s:11:\"middle_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:6:\"Middle\";}s:9:\"last_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:4:\"Last\";}s:9:\"hide_subs\";b:0;s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','43','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',42,'https://estatesatnuevo.com/?p=43',0,'wpuf_input','',0),(44,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:14:\"Street Address\";s:4:\"name\";s:6:\"text_4\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','44','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',42,'https://estatesatnuevo.com/?p=44',1,'wpuf_input','',0),(45,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:14:\"Address Line 2\";s:4:\"name\";s:6:\"text_5\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','45','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',42,'https://estatesatnuevo.com/?p=45',2,'wpuf_input','',0),(46,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:11:\"City / Town\";s:4:\"name\";s:6:\"text_6\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','46','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',42,'https://estatesatnuevo.com/?p=46',3,'wpuf_input','',0),(47,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:12:{s:10:\"input_type\";s:6:\"select\";s:8:\"template\";s:14:\"dropdown_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:16:\"State / Province\";s:4:\"name\";s:8:\"select_9\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:8:\"selected\";s:0:\"\";s:6:\"inline\";s:2:\"no\";s:7:\"options\";a:61:{s:9:\"Select...\";s:9:\"Select...\";s:12:\"Alabama (AL)\";s:12:\"Alabama (AL)\";s:11:\"Alaska (AK)\";s:11:\"Alaska (AK)\";s:19:\"American Samoa (AS)\";s:19:\"American Samoa (AS)\";s:12:\"Arizona (AZ)\";s:12:\"Arizona (AZ)\";s:13:\"Arkansas (AR)\";s:13:\"Arkansas (AR)\";s:15:\"California (CA)\";s:15:\"California (CA)\";s:13:\"Colorado (CO)\";s:13:\"Colorado (CO)\";s:16:\"Connecticut (CT)\";s:16:\"Connecticut (CT)\";s:13:\"Delaware (DE)\";s:13:\"Delaware (DE)\";s:22:\"Dist. of Columbia (DC)\";s:22:\"Dist. of Columbia (DC)\";s:12:\"Florida (FL)\";s:12:\"Florida (FL)\";s:12:\"Georgia (GA)\";s:12:\"Georgia (GA)\";s:9:\"Guam (GU)\";s:9:\"Guam (GU)\";s:11:\"Hawaii (HI)\";s:11:\"Hawaii (HI)\";s:10:\"Idaho (ID)\";s:10:\"Idaho (ID)\";s:13:\"Illinois (IL)\";s:13:\"Illinois (IL)\";s:12:\"Indiana (IN)\";s:12:\"Indiana (IN)\";s:9:\"Iowa (IA)\";s:9:\"Iowa (IA)\";s:11:\"Kansas (KS)\";s:11:\"Kansas (KS)\";s:13:\"Kentucky (KY)\";s:13:\"Kentucky (KY)\";s:14:\"Louisiana (LA)\";s:14:\"Louisiana (LA)\";s:10:\"Maine (ME)\";s:10:\"Maine (ME)\";s:13:\"Maryland (MD)\";s:13:\"Maryland (MD)\";s:21:\"Marshall Islands (MH)\";s:21:\"Marshall Islands (MH)\";s:18:\"Massachusetts (MA)\";s:18:\"Massachusetts (MA)\";s:13:\"Michigan (MI)\";s:13:\"Michigan (MI)\";s:15:\"Micronesia (FM)\";s:15:\"Micronesia (FM)\";s:14:\"Minnesota (MN)\";s:14:\"Minnesota (MN)\";s:16:\"Mississippi (MS)\";s:16:\"Mississippi (MS)\";s:13:\"Missouri (MO)\";s:13:\"Missouri (MO)\";s:12:\"Montana (MT)\";s:12:\"Montana (MT)\";s:13:\"Nebraska (NE)\";s:13:\"Nebraska (NE)\";s:11:\"Nevada (NV)\";s:11:\"Nevada (NV)\";s:18:\"New Hampshire (NH)\";s:18:\"New Hampshire (NH)\";s:15:\"New Jersey (NJ)\";s:15:\"New Jersey (NJ)\";s:15:\"New Mexico (NM)\";s:15:\"New Mexico (NM)\";s:13:\"New York (NY)\";s:13:\"New York (NY)\";s:19:\"North Carolina (NC)\";s:19:\"North Carolina (NC)\";s:17:\"North Dakota (ND)\";s:17:\"North Dakota (ND)\";s:22:\"Northern Marianas (MP)\";s:22:\"Northern Marianas (MP)\";s:9:\"Ohio (OH)\";s:9:\"Ohio (OH)\";s:13:\"Oklahoma (OK)\";s:13:\"Oklahoma (OK)\";s:11:\"Oregon (OR)\";s:11:\"Oregon (OR)\";s:10:\"Palau (PW)\";s:10:\"Palau (PW)\";s:17:\"Pennsylvania (PA)\";s:17:\"Pennsylvania (PA)\";s:16:\"Puerto Rico (PR)\";s:16:\"Puerto Rico (PR)\";s:17:\"Rhode Island (RI)\";s:17:\"Rhode Island (RI)\";s:19:\"South Carolina (SC)\";s:19:\"South Carolina (SC)\";s:17:\"South Dakota (SD)\";s:17:\"South Dakota (SD)\";s:14:\"Tennessee (TN)\";s:14:\"Tennessee (TN)\";s:10:\"Texas (TX)\";s:10:\"Texas (TX)\";s:9:\"Utah (UT)\";s:9:\"Utah (UT)\";s:12:\"Vermont (VT)\";s:12:\"Vermont (VT)\";s:13:\"Virginia (VA)\";s:13:\"Virginia (VA)\";s:19:\"Virgin Islands (VI)\";s:19:\"Virgin Islands (VI)\";s:15:\"Washington (WA)\";s:15:\"Washington (WA)\";s:18:\"West Virginia (WV)\";s:18:\"West Virginia (WV)\";s:14:\"Wisconsin (WI)\";s:14:\"Wisconsin (WI)\";s:12:\"Wyoming (WY)\";s:12:\"Wyoming (WY)\";s:5:\"Other\";s:5:\"Other\";}s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','47','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',42,'https://estatesatnuevo.com/?p=47',4,'wpuf_input','',0),(48,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:17:\"ZIP / Postal Code\";s:4:\"name\";s:7:\"text_10\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','48','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',42,'https://estatesatnuevo.com/?p=48',5,'wpuf_input','',0),(49,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:7:\"Country\";s:4:\"name\";s:7:\"text_11\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','49','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',42,'https://estatesatnuevo.com/?p=49',6,'wpuf_input','',0),(50,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','{\"id\":50,\"field_id\":14,\"fields\":{\"2\":{\"id\":\"2\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Street Address\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"text\",\"label\":\"Address Line 2\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"text\",\"label\":\"City / Town\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"9\":{\"id\":\"9\",\"type\":\"select\",\"label\":\"State\",\"choices\":{\"1\":{\"default\":\"1\",\"label\":\"Select...\",\"value\":\"\"},\"5\":{\"label\":\"Alabama (AL)\",\"value\":\"AL\"},\"6\":{\"label\":\"Alaska (AK)\",\"value\":\"AK\"},\"7\":{\"label\":\"American Samoa (AS)\",\"value\":\"AS\"},\"8\":{\"label\":\"Arizona (AZ)\",\"value\":\"AZ\"},\"9\":{\"label\":\"Arkansas (AR)\",\"value\":\"AR\"},\"10\":{\"label\":\"California (CA)\",\"value\":\"CA\"},\"11\":{\"label\":\"Colorado (CO)\",\"value\":\"CO\"},\"12\":{\"label\":\"Connecticut (CT)\",\"value\":\"CT\"},\"13\":{\"label\":\"Delaware (DE)\",\"value\":\"DE\"},\"14\":{\"label\":\"Dist. of Columbia (DC)\",\"value\":\"DC\"},\"15\":{\"label\":\"Florida (FL)\",\"value\":\"FL\"},\"16\":{\"label\":\"Georgia (GA)\",\"value\":\"GA\"},\"17\":{\"label\":\"Guam (GU)\",\"value\":\"GU\"},\"18\":{\"label\":\"Hawaii (HI)\",\"value\":\"HI\"},\"19\":{\"label\":\"Idaho (ID)\",\"value\":\"ID\"},\"20\":{\"label\":\"Illinois (IL)\",\"value\":\"IL\"},\"21\":{\"label\":\"Indiana (IN)\",\"value\":\"IN\"},\"22\":{\"label\":\"Iowa (IA)\",\"value\":\"IA\"},\"23\":{\"label\":\"Kansas (KS)\",\"value\":\"KS\"},\"24\":{\"label\":\"Kentucky (KY)\",\"value\":\"KY\"},\"25\":{\"label\":\"Louisiana (LA)\",\"value\":\"LA\"},\"26\":{\"label\":\"Maine (ME)\",\"value\":\"ME\"},\"27\":{\"label\":\"Maryland (MD)\",\"value\":\"MD\"},\"28\":{\"label\":\"Marshall Islands (MH)\",\"value\":\"MH\"},\"29\":{\"label\":\"Massachusetts (MA)\",\"value\":\"MA\"},\"30\":{\"label\":\"Michigan (MI)\",\"value\":\"MI\"},\"31\":{\"label\":\"Micronesia (FM)\",\"value\":\"FM\"},\"32\":{\"label\":\"Minnesota (MN)\",\"value\":\"MN\"},\"33\":{\"label\":\"Mississippi (MS)\",\"value\":\"MS\"},\"34\":{\"label\":\"Missouri (MO)\",\"value\":\"MO\"},\"35\":{\"label\":\"Montana (MT)\",\"value\":\"MT\"},\"36\":{\"label\":\"Nebraska (NE)\",\"value\":\"NE\"},\"37\":{\"label\":\"Nevada (NV)\",\"value\":\"NV\"},\"38\":{\"label\":\"New Hampshire (NH)\",\"value\":\"NH\"},\"39\":{\"label\":\"New Jersey (NJ)\",\"value\":\"NJ\"},\"40\":{\"label\":\"New Mexico (NM)\",\"value\":\"NM\"},\"41\":{\"label\":\"New York (NY)\",\"value\":\"NY\"},\"42\":{\"label\":\"North Carolina (NC)\",\"value\":\"NC\"},\"43\":{\"label\":\"North Dakota (ND)\",\"value\":\"ND\"},\"44\":{\"label\":\"Northern Marianas (MP)\",\"value\":\"MP\"},\"45\":{\"label\":\"Ohio (OH)\",\"value\":\"OH\"},\"46\":{\"label\":\"Oklahoma (OK)\",\"value\":\"OK\"},\"47\":{\"label\":\"Oregon (OR)\",\"value\":\"OR\"},\"48\":{\"label\":\"Palau (PW)\",\"value\":\"PW\"},\"49\":{\"label\":\"Pennsylvania (PA)\",\"value\":\"PA\"},\"50\":{\"label\":\"Puerto Rico (PR)\",\"value\":\"PR\"},\"51\":{\"label\":\"Rhode Island (RI)\",\"value\":\"RI\"},\"52\":{\"label\":\"South Carolina (SC)\",\"value\":\"SC\"},\"53\":{\"label\":\"South Dakota (SD)\",\"value\":\"SD\"},\"54\":{\"label\":\"Tennessee (TN)\",\"value\":\"TN\"},\"55\":{\"label\":\"Texas (TX)\",\"value\":\"TX\"},\"56\":{\"label\":\"Utah (UT)\",\"value\":\"UT\"},\"57\":{\"label\":\"Vermont (VT)\",\"value\":\"VT\"},\"58\":{\"label\":\"Virginia (VA)\",\"value\":\"VA\"},\"59\":{\"label\":\"Virgin Islands (VI)\",\"value\":\"VI\"},\"60\":{\"label\":\"Washington (WA)\",\"value\":\"WA\"},\"61\":{\"label\":\"West Virginia (WV)\",\"value\":\"WV\"},\"62\":{\"label\":\"Wisconsin (WI)\",\"value\":\"WI\"},\"63\":{\"label\":\"Wyoming (WY)\",\"value\":\"WY\"},\"64\":{\"label\":\"Other\",\"value\":\"Other\"}},\"description\":\"\",\"required\":\"1\",\"show_values\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"10\":{\"id\":\"10\",\"type\":\"text\",\"label\":\"ZIP / Postal Code\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Address Form (US)\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Address Form (US) submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','Address Form (US)','','publish','closed','closed','','address-form-us','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',0,'https://estatesatnuevo.com/?post_type=wpuf_contact_form&#038;p=50',0,'wpuf_contact_form','',0),(51,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"name\";s:8:\"template\";s:10:\"name_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:4:\"Name\";s:4:\"name\";s:6:\"name_2\";s:7:\"is_meta\";s:3:\"yes\";s:6:\"format\";s:10:\"first-last\";s:10:\"first_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:5:\"First\";}s:11:\"middle_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:6:\"Middle\";}s:9:\"last_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:4:\"Last\";}s:9:\"hide_subs\";b:0;s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','51','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',50,'https://estatesatnuevo.com/?p=51',0,'wpuf_input','',0),(52,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:14:\"Street Address\";s:4:\"name\";s:6:\"text_4\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','52','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',50,'https://estatesatnuevo.com/?p=52',1,'wpuf_input','',0),(53,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:14:\"Address Line 2\";s:4:\"name\";s:6:\"text_5\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','53','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',50,'https://estatesatnuevo.com/?p=53',2,'wpuf_input','',0),(54,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:11:\"City / Town\";s:4:\"name\";s:6:\"text_6\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','54','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',50,'https://estatesatnuevo.com/?p=54',3,'wpuf_input','',0),(55,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:12:{s:10:\"input_type\";s:6:\"select\";s:8:\"template\";s:14:\"dropdown_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:5:\"State\";s:4:\"name\";s:8:\"select_9\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:8:\"selected\";s:0:\"\";s:6:\"inline\";s:2:\"no\";s:7:\"options\";a:61:{s:9:\"Select...\";s:9:\"Select...\";s:12:\"Alabama (AL)\";s:12:\"Alabama (AL)\";s:11:\"Alaska (AK)\";s:11:\"Alaska (AK)\";s:19:\"American Samoa (AS)\";s:19:\"American Samoa (AS)\";s:12:\"Arizona (AZ)\";s:12:\"Arizona (AZ)\";s:13:\"Arkansas (AR)\";s:13:\"Arkansas (AR)\";s:15:\"California (CA)\";s:15:\"California (CA)\";s:13:\"Colorado (CO)\";s:13:\"Colorado (CO)\";s:16:\"Connecticut (CT)\";s:16:\"Connecticut (CT)\";s:13:\"Delaware (DE)\";s:13:\"Delaware (DE)\";s:22:\"Dist. of Columbia (DC)\";s:22:\"Dist. of Columbia (DC)\";s:12:\"Florida (FL)\";s:12:\"Florida (FL)\";s:12:\"Georgia (GA)\";s:12:\"Georgia (GA)\";s:9:\"Guam (GU)\";s:9:\"Guam (GU)\";s:11:\"Hawaii (HI)\";s:11:\"Hawaii (HI)\";s:10:\"Idaho (ID)\";s:10:\"Idaho (ID)\";s:13:\"Illinois (IL)\";s:13:\"Illinois (IL)\";s:12:\"Indiana (IN)\";s:12:\"Indiana (IN)\";s:9:\"Iowa (IA)\";s:9:\"Iowa (IA)\";s:11:\"Kansas (KS)\";s:11:\"Kansas (KS)\";s:13:\"Kentucky (KY)\";s:13:\"Kentucky (KY)\";s:14:\"Louisiana (LA)\";s:14:\"Louisiana (LA)\";s:10:\"Maine (ME)\";s:10:\"Maine (ME)\";s:13:\"Maryland (MD)\";s:13:\"Maryland (MD)\";s:21:\"Marshall Islands (MH)\";s:21:\"Marshall Islands (MH)\";s:18:\"Massachusetts (MA)\";s:18:\"Massachusetts (MA)\";s:13:\"Michigan (MI)\";s:13:\"Michigan (MI)\";s:15:\"Micronesia (FM)\";s:15:\"Micronesia (FM)\";s:14:\"Minnesota (MN)\";s:14:\"Minnesota (MN)\";s:16:\"Mississippi (MS)\";s:16:\"Mississippi (MS)\";s:13:\"Missouri (MO)\";s:13:\"Missouri (MO)\";s:12:\"Montana (MT)\";s:12:\"Montana (MT)\";s:13:\"Nebraska (NE)\";s:13:\"Nebraska (NE)\";s:11:\"Nevada (NV)\";s:11:\"Nevada (NV)\";s:18:\"New Hampshire (NH)\";s:18:\"New Hampshire (NH)\";s:15:\"New Jersey (NJ)\";s:15:\"New Jersey (NJ)\";s:15:\"New Mexico (NM)\";s:15:\"New Mexico (NM)\";s:13:\"New York (NY)\";s:13:\"New York (NY)\";s:19:\"North Carolina (NC)\";s:19:\"North Carolina (NC)\";s:17:\"North Dakota (ND)\";s:17:\"North Dakota (ND)\";s:22:\"Northern Marianas (MP)\";s:22:\"Northern Marianas (MP)\";s:9:\"Ohio (OH)\";s:9:\"Ohio (OH)\";s:13:\"Oklahoma (OK)\";s:13:\"Oklahoma (OK)\";s:11:\"Oregon (OR)\";s:11:\"Oregon (OR)\";s:10:\"Palau (PW)\";s:10:\"Palau (PW)\";s:17:\"Pennsylvania (PA)\";s:17:\"Pennsylvania (PA)\";s:16:\"Puerto Rico (PR)\";s:16:\"Puerto Rico (PR)\";s:17:\"Rhode Island (RI)\";s:17:\"Rhode Island (RI)\";s:19:\"South Carolina (SC)\";s:19:\"South Carolina (SC)\";s:17:\"South Dakota (SD)\";s:17:\"South Dakota (SD)\";s:14:\"Tennessee (TN)\";s:14:\"Tennessee (TN)\";s:10:\"Texas (TX)\";s:10:\"Texas (TX)\";s:9:\"Utah (UT)\";s:9:\"Utah (UT)\";s:12:\"Vermont (VT)\";s:12:\"Vermont (VT)\";s:13:\"Virginia (VA)\";s:13:\"Virginia (VA)\";s:19:\"Virgin Islands (VI)\";s:19:\"Virgin Islands (VI)\";s:15:\"Washington (WA)\";s:15:\"Washington (WA)\";s:18:\"West Virginia (WV)\";s:18:\"West Virginia (WV)\";s:14:\"Wisconsin (WI)\";s:14:\"Wisconsin (WI)\";s:12:\"Wyoming (WY)\";s:12:\"Wyoming (WY)\";s:5:\"Other\";s:5:\"Other\";}s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','55','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',50,'https://estatesatnuevo.com/?p=55',4,'wpuf_input','',0),(56,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:17:\"ZIP / Postal Code\";s:4:\"name\";s:7:\"text_10\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','56','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',50,'https://estatesatnuevo.com/?p=56',5,'wpuf_input','',0),(57,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','{\"id\":57,\"field_id\":5,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"text\",\"label\":\"Subject\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"textarea\",\"label\":\"Body\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Email Form (Traditional)\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Email Form (Traditional) submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','Email Form (Traditional)','','publish','closed','closed','','email-form-traditional','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',0,'https://estatesatnuevo.com/?post_type=wpuf_contact_form&#038;p=57',0,'wpuf_contact_form','',0),(58,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"name\";s:8:\"template\";s:10:\"name_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:4:\"Name\";s:4:\"name\";s:6:\"name_1\";s:7:\"is_meta\";s:3:\"yes\";s:6:\"format\";s:10:\"first-last\";s:10:\"first_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:5:\"First\";}s:11:\"middle_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:6:\"Middle\";}s:9:\"last_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:4:\"Last\";}s:9:\"hide_subs\";b:0;s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','58','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',57,'https://estatesatnuevo.com/?p=58',0,'wpuf_input','',0),(59,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:5:\"email\";s:8:\"template\";s:13:\"email_address\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:5:\"Email\";s:4:\"name\";s:7:\"email_2\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','59','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',57,'https://estatesatnuevo.com/?p=59',1,'wpuf_input','',0),(60,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:7:\"Subject\";s:4:\"name\";s:6:\"text_3\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','60','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',57,'https://estatesatnuevo.com/?p=60',2,'wpuf_input','',0),(61,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:15:{s:10:\"input_type\";s:8:\"textarea\";s:8:\"template\";s:14:\"textarea_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:4:\"Body\";s:4:\"name\";s:10:\"textarea_4\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:4:\"rows\";i:5;s:4:\"cols\";i:25;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"rich\";s:2:\"no\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','61','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',57,'https://estatesatnuevo.com/?p=61',3,'wpuf_input','',0),(62,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','{\"id\":62,\"field_id\":5,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"number\",\"label\":\"Group Size\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"textarea\",\"label\":\"Special Instructions\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Event Registration Form (Group Support)\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Register\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Event Registration Form (Group Support) submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','Event Registration Form (Group Support)','','publish','closed','closed','','event-registration-form-group-support','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',0,'https://estatesatnuevo.com/?post_type=wpuf_contact_form&#038;p=62',0,'wpuf_contact_form','',0),(63,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"name\";s:8:\"template\";s:10:\"name_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:4:\"Name\";s:4:\"name\";s:6:\"name_1\";s:7:\"is_meta\";s:3:\"yes\";s:6:\"format\";s:10:\"first-last\";s:10:\"first_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:5:\"First\";}s:11:\"middle_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:6:\"Middle\";}s:9:\"last_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:4:\"Last\";}s:9:\"hide_subs\";b:0;s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','63','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',62,'https://estatesatnuevo.com/?p=63',0,'wpuf_input','',0),(64,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:5:\"email\";s:8:\"template\";s:13:\"email_address\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:5:\"Email\";s:4:\"name\";s:7:\"email_2\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','64','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',62,'https://estatesatnuevo.com/?p=64',1,'wpuf_input','',0),(65,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:15:{s:10:\"input_type\";s:8:\"textarea\";s:8:\"template\";s:14:\"textarea_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:20:\"Special Instructions\";s:4:\"name\";s:10:\"textarea_4\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:4:\"rows\";i:5;s:4:\"cols\";i:25;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"rich\";s:2:\"no\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','65','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',62,'https://estatesatnuevo.com/?p=65',2,'wpuf_input','',0),(66,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','{\"id\":66,\"field_id\":4,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"textarea\",\"label\":\"Special Instructions\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Event Registration Form\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Register\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Event Registration Form submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','Event Registration Form','','publish','closed','closed','','event-registration-form','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',0,'https://estatesatnuevo.com/?post_type=wpuf_contact_form&#038;p=66',0,'wpuf_contact_form','',0),(67,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"name\";s:8:\"template\";s:10:\"name_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:4:\"Name\";s:4:\"name\";s:6:\"name_1\";s:7:\"is_meta\";s:3:\"yes\";s:6:\"format\";s:10:\"first-last\";s:10:\"first_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:5:\"First\";}s:11:\"middle_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:6:\"Middle\";}s:9:\"last_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:4:\"Last\";}s:9:\"hide_subs\";b:0;s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','67','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',66,'https://estatesatnuevo.com/?p=67',0,'wpuf_input','',0),(68,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:5:\"email\";s:8:\"template\";s:13:\"email_address\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:5:\"Email\";s:4:\"name\";s:7:\"email_2\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','68','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',66,'https://estatesatnuevo.com/?p=68',1,'wpuf_input','',0),(69,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:15:{s:10:\"input_type\";s:8:\"textarea\";s:8:\"template\";s:14:\"textarea_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:20:\"Special Instructions\";s:4:\"name\";s:10:\"textarea_3\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:4:\"rows\";i:5;s:4:\"cols\";i:25;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"rich\";s:2:\"no\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','69','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',66,'https://estatesatnuevo.com/?p=69',2,'wpuf_input','',0),(70,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','{\"id\":70,\"field_id\":5,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"text\",\"label\":\"ZIP / Postal Code\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Phone\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Information Request Form\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Information Request Form submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','Information Request Form','','publish','closed','closed','','information-request-form','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',0,'https://estatesatnuevo.com/?post_type=wpuf_contact_form&#038;p=70',0,'wpuf_contact_form','',0),(71,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"name\";s:8:\"template\";s:10:\"name_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:4:\"Name\";s:4:\"name\";s:6:\"name_1\";s:7:\"is_meta\";s:3:\"yes\";s:6:\"format\";s:10:\"first-last\";s:10:\"first_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:5:\"First\";}s:11:\"middle_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:6:\"Middle\";}s:9:\"last_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:4:\"Last\";}s:9:\"hide_subs\";b:0;s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','71','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',70,'https://estatesatnuevo.com/?p=71',0,'wpuf_input','',0),(72,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:17:\"ZIP / Postal Code\";s:4:\"name\";s:6:\"text_2\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','72','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',70,'https://estatesatnuevo.com/?p=72',1,'wpuf_input','',0),(73,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:5:\"email\";s:8:\"template\";s:13:\"email_address\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:5:\"Email\";s:4:\"name\";s:7:\"email_3\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','73','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',70,'https://estatesatnuevo.com/?p=73',2,'wpuf_input','',0),(74,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:5:\"Phone\";s:4:\"name\";s:6:\"text_4\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','74','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',70,'https://estatesatnuevo.com/?p=74',3,'wpuf_input','',0),(75,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','{\"id\":75,\"field_id\":17,\"fields\":{\"2\":{\"id\":\"2\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"14\":{\"id\":\"14\",\"type\":\"text\",\"label\":\"Company Name\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Street Address\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"text\",\"label\":\"Address Line 2\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"text\",\"label\":\"City / Town\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"9\":{\"id\":\"9\",\"type\":\"select\",\"label\":\"State\",\"choices\":{\"1\":{\"default\":\"1\",\"label\":\"Select...\",\"value\":\"\"},\"5\":{\"label\":\"Alabama (AL)\",\"value\":\"AL\"},\"6\":{\"label\":\"Alaska (AK)\",\"value\":\"AK\"},\"7\":{\"label\":\"American Samoa (AS)\",\"value\":\"AS\"},\"8\":{\"label\":\"Arizona (AZ)\",\"value\":\"AZ\"},\"9\":{\"label\":\"Arkansas (AR)\",\"value\":\"AR\"},\"10\":{\"label\":\"California (CA)\",\"value\":\"CA\"},\"11\":{\"label\":\"Colorado (CO)\",\"value\":\"CO\"},\"12\":{\"label\":\"Connecticut (CT)\",\"value\":\"CT\"},\"13\":{\"label\":\"Delaware (DE)\",\"value\":\"DE\"},\"14\":{\"label\":\"Dist. of Columbia (DC)\",\"value\":\"DC\"},\"15\":{\"label\":\"Florida (FL)\",\"value\":\"FL\"},\"16\":{\"label\":\"Georgia (GA)\",\"value\":\"GA\"},\"17\":{\"label\":\"Guam (GU)\",\"value\":\"GU\"},\"18\":{\"label\":\"Hawaii (HI)\",\"value\":\"HI\"},\"19\":{\"label\":\"Idaho (ID)\",\"value\":\"ID\"},\"20\":{\"label\":\"Illinois (IL)\",\"value\":\"IL\"},\"21\":{\"label\":\"Indiana (IN)\",\"value\":\"IN\"},\"22\":{\"label\":\"Iowa (IA)\",\"value\":\"IA\"},\"23\":{\"label\":\"Kansas (KS)\",\"value\":\"KS\"},\"24\":{\"label\":\"Kentucky (KY)\",\"value\":\"KY\"},\"25\":{\"label\":\"Louisiana (LA)\",\"value\":\"LA\"},\"26\":{\"label\":\"Maine (ME)\",\"value\":\"ME\"},\"27\":{\"label\":\"Maryland (MD)\",\"value\":\"MD\"},\"28\":{\"label\":\"Marshall Islands (MH)\",\"value\":\"MH\"},\"29\":{\"label\":\"Massachusetts (MA)\",\"value\":\"MA\"},\"30\":{\"label\":\"Michigan (MI)\",\"value\":\"MI\"},\"31\":{\"label\":\"Micronesia (FM)\",\"value\":\"FM\"},\"32\":{\"label\":\"Minnesota (MN)\",\"value\":\"MN\"},\"33\":{\"label\":\"Mississippi (MS)\",\"value\":\"MS\"},\"34\":{\"label\":\"Missouri (MO)\",\"value\":\"MO\"},\"35\":{\"label\":\"Montana (MT)\",\"value\":\"MT\"},\"36\":{\"label\":\"Nebraska (NE)\",\"value\":\"NE\"},\"37\":{\"label\":\"Nevada (NV)\",\"value\":\"NV\"},\"38\":{\"label\":\"New Hampshire (NH)\",\"value\":\"NH\"},\"39\":{\"label\":\"New Jersey (NJ)\",\"value\":\"NJ\"},\"40\":{\"label\":\"New Mexico (NM)\",\"value\":\"NM\"},\"41\":{\"label\":\"New York (NY)\",\"value\":\"NY\"},\"42\":{\"label\":\"North Carolina (NC)\",\"value\":\"NC\"},\"43\":{\"label\":\"North Dakota (ND)\",\"value\":\"ND\"},\"44\":{\"label\":\"Northern Marianas (MP)\",\"value\":\"MP\"},\"45\":{\"label\":\"Ohio (OH)\",\"value\":\"OH\"},\"46\":{\"label\":\"Oklahoma (OK)\",\"value\":\"OK\"},\"47\":{\"label\":\"Oregon (OR)\",\"value\":\"OR\"},\"48\":{\"label\":\"Palau (PW)\",\"value\":\"PW\"},\"49\":{\"label\":\"Pennsylvania (PA)\",\"value\":\"PA\"},\"50\":{\"label\":\"Puerto Rico (PR)\",\"value\":\"PR\"},\"51\":{\"label\":\"Rhode Island (RI)\",\"value\":\"RI\"},\"52\":{\"label\":\"South Carolina (SC)\",\"value\":\"SC\"},\"53\":{\"label\":\"South Dakota (SD)\",\"value\":\"SD\"},\"54\":{\"label\":\"Tennessee (TN)\",\"value\":\"TN\"},\"55\":{\"label\":\"Texas (TX)\",\"value\":\"TX\"},\"56\":{\"label\":\"Utah (UT)\",\"value\":\"UT\"},\"57\":{\"label\":\"Vermont (VT)\",\"value\":\"VT\"},\"58\":{\"label\":\"Virginia (VA)\",\"value\":\"VA\"},\"59\":{\"label\":\"Virgin Islands (VI)\",\"value\":\"VI\"},\"60\":{\"label\":\"Washington (WA)\",\"value\":\"WA\"},\"61\":{\"label\":\"West Virginia (WV)\",\"value\":\"WV\"},\"62\":{\"label\":\"Wisconsin (WI)\",\"value\":\"WI\"},\"63\":{\"label\":\"Wyoming (WY)\",\"value\":\"WY\"},\"64\":{\"label\":\"Other\",\"value\":\"Other\"}},\"description\":\"\",\"required\":\"1\",\"show_values\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"10\":{\"id\":\"10\",\"type\":\"text\",\"label\":\"ZIP / Postal Code\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"15\":{\"id\":\"15\",\"type\":\"text\",\"label\":\"Country\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"16\":{\"id\":\"16\",\"type\":\"text\",\"label\":\"Phone\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Shipping Information Form\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Shipping Information Form submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','Shipping Information Form','','publish','closed','closed','','shipping-information-form','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',0,'https://estatesatnuevo.com/?post_type=wpuf_contact_form&#038;p=75',0,'wpuf_contact_form','',0),(76,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"name\";s:8:\"template\";s:10:\"name_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:4:\"Name\";s:4:\"name\";s:6:\"name_2\";s:7:\"is_meta\";s:3:\"yes\";s:6:\"format\";s:10:\"first-last\";s:10:\"first_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:5:\"First\";}s:11:\"middle_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:6:\"Middle\";}s:9:\"last_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:4:\"Last\";}s:9:\"hide_subs\";b:0;s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','76','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',75,'https://estatesatnuevo.com/?p=76',0,'wpuf_input','',0),(77,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:12:\"Company Name\";s:4:\"name\";s:7:\"text_14\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','77','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',75,'https://estatesatnuevo.com/?p=77',1,'wpuf_input','',0),(78,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:14:\"Street Address\";s:4:\"name\";s:6:\"text_4\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','78','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',75,'https://estatesatnuevo.com/?p=78',2,'wpuf_input','',0),(79,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:14:\"Address Line 2\";s:4:\"name\";s:6:\"text_5\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','79','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',75,'https://estatesatnuevo.com/?p=79',3,'wpuf_input','',0),(80,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:11:\"City / Town\";s:4:\"name\";s:6:\"text_6\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','80','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',75,'https://estatesatnuevo.com/?p=80',4,'wpuf_input','',0),(81,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:12:{s:10:\"input_type\";s:6:\"select\";s:8:\"template\";s:14:\"dropdown_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:5:\"State\";s:4:\"name\";s:8:\"select_9\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:8:\"selected\";s:0:\"\";s:6:\"inline\";s:2:\"no\";s:7:\"options\";a:61:{s:9:\"Select...\";s:9:\"Select...\";s:12:\"Alabama (AL)\";s:12:\"Alabama (AL)\";s:11:\"Alaska (AK)\";s:11:\"Alaska (AK)\";s:19:\"American Samoa (AS)\";s:19:\"American Samoa (AS)\";s:12:\"Arizona (AZ)\";s:12:\"Arizona (AZ)\";s:13:\"Arkansas (AR)\";s:13:\"Arkansas (AR)\";s:15:\"California (CA)\";s:15:\"California (CA)\";s:13:\"Colorado (CO)\";s:13:\"Colorado (CO)\";s:16:\"Connecticut (CT)\";s:16:\"Connecticut (CT)\";s:13:\"Delaware (DE)\";s:13:\"Delaware (DE)\";s:22:\"Dist. of Columbia (DC)\";s:22:\"Dist. of Columbia (DC)\";s:12:\"Florida (FL)\";s:12:\"Florida (FL)\";s:12:\"Georgia (GA)\";s:12:\"Georgia (GA)\";s:9:\"Guam (GU)\";s:9:\"Guam (GU)\";s:11:\"Hawaii (HI)\";s:11:\"Hawaii (HI)\";s:10:\"Idaho (ID)\";s:10:\"Idaho (ID)\";s:13:\"Illinois (IL)\";s:13:\"Illinois (IL)\";s:12:\"Indiana (IN)\";s:12:\"Indiana (IN)\";s:9:\"Iowa (IA)\";s:9:\"Iowa (IA)\";s:11:\"Kansas (KS)\";s:11:\"Kansas (KS)\";s:13:\"Kentucky (KY)\";s:13:\"Kentucky (KY)\";s:14:\"Louisiana (LA)\";s:14:\"Louisiana (LA)\";s:10:\"Maine (ME)\";s:10:\"Maine (ME)\";s:13:\"Maryland (MD)\";s:13:\"Maryland (MD)\";s:21:\"Marshall Islands (MH)\";s:21:\"Marshall Islands (MH)\";s:18:\"Massachusetts (MA)\";s:18:\"Massachusetts (MA)\";s:13:\"Michigan (MI)\";s:13:\"Michigan (MI)\";s:15:\"Micronesia (FM)\";s:15:\"Micronesia (FM)\";s:14:\"Minnesota (MN)\";s:14:\"Minnesota (MN)\";s:16:\"Mississippi (MS)\";s:16:\"Mississippi (MS)\";s:13:\"Missouri (MO)\";s:13:\"Missouri (MO)\";s:12:\"Montana (MT)\";s:12:\"Montana (MT)\";s:13:\"Nebraska (NE)\";s:13:\"Nebraska (NE)\";s:11:\"Nevada (NV)\";s:11:\"Nevada (NV)\";s:18:\"New Hampshire (NH)\";s:18:\"New Hampshire (NH)\";s:15:\"New Jersey (NJ)\";s:15:\"New Jersey (NJ)\";s:15:\"New Mexico (NM)\";s:15:\"New Mexico (NM)\";s:13:\"New York (NY)\";s:13:\"New York (NY)\";s:19:\"North Carolina (NC)\";s:19:\"North Carolina (NC)\";s:17:\"North Dakota (ND)\";s:17:\"North Dakota (ND)\";s:22:\"Northern Marianas (MP)\";s:22:\"Northern Marianas (MP)\";s:9:\"Ohio (OH)\";s:9:\"Ohio (OH)\";s:13:\"Oklahoma (OK)\";s:13:\"Oklahoma (OK)\";s:11:\"Oregon (OR)\";s:11:\"Oregon (OR)\";s:10:\"Palau (PW)\";s:10:\"Palau (PW)\";s:17:\"Pennsylvania (PA)\";s:17:\"Pennsylvania (PA)\";s:16:\"Puerto Rico (PR)\";s:16:\"Puerto Rico (PR)\";s:17:\"Rhode Island (RI)\";s:17:\"Rhode Island (RI)\";s:19:\"South Carolina (SC)\";s:19:\"South Carolina (SC)\";s:17:\"South Dakota (SD)\";s:17:\"South Dakota (SD)\";s:14:\"Tennessee (TN)\";s:14:\"Tennessee (TN)\";s:10:\"Texas (TX)\";s:10:\"Texas (TX)\";s:9:\"Utah (UT)\";s:9:\"Utah (UT)\";s:12:\"Vermont (VT)\";s:12:\"Vermont (VT)\";s:13:\"Virginia (VA)\";s:13:\"Virginia (VA)\";s:19:\"Virgin Islands (VI)\";s:19:\"Virgin Islands (VI)\";s:15:\"Washington (WA)\";s:15:\"Washington (WA)\";s:18:\"West Virginia (WV)\";s:18:\"West Virginia (WV)\";s:14:\"Wisconsin (WI)\";s:14:\"Wisconsin (WI)\";s:12:\"Wyoming (WY)\";s:12:\"Wyoming (WY)\";s:5:\"Other\";s:5:\"Other\";}s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','81','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',75,'https://estatesatnuevo.com/?p=81',5,'wpuf_input','',0),(82,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:17:\"ZIP / Postal Code\";s:4:\"name\";s:7:\"text_10\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','82','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',75,'https://estatesatnuevo.com/?p=82',6,'wpuf_input','',0),(83,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:7:\"Country\";s:4:\"name\";s:7:\"text_15\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','83','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',75,'https://estatesatnuevo.com/?p=83',7,'wpuf_input','',0),(84,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"text\";s:8:\"template\";s:10:\"text_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:5:\"Phone\";s:4:\"name\";s:7:\"text_16\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','84','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',75,'https://estatesatnuevo.com/?p=84',8,'wpuf_input','',0),(85,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','{\"id\":85,\"field_id\":3,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Sign Up Form\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Sign Up\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"New Sign Up Form submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','Sign Up Form','','publish','closed','closed','','sign-up-form','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',0,'https://estatesatnuevo.com/?post_type=wpuf_contact_form&#038;p=85',0,'wpuf_contact_form','',0),(86,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"name\";s:8:\"template\";s:10:\"name_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:4:\"Name\";s:4:\"name\";s:6:\"name_1\";s:7:\"is_meta\";s:3:\"yes\";s:6:\"format\";s:10:\"first-last\";s:10:\"first_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:5:\"First\";}s:11:\"middle_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:6:\"Middle\";}s:9:\"last_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:4:\"Last\";}s:9:\"hide_subs\";b:0;s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','86','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',85,'https://estatesatnuevo.com/?p=86',0,'wpuf_input','',0),(87,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:5:\"email\";s:8:\"template\";s:13:\"email_address\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:5:\"Email\";s:4:\"name\";s:7:\"email_2\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','87','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',85,'https://estatesatnuevo.com/?p=87',1,'wpuf_input','',0),(88,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','{\"id\":88,\"field_id\":9,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"radio\",\"label\":\"On a scale of 1 to 5, how would you rate your experience with our product / service?\",\"choices\":{\"1\":{\"label\":\"1 (poor)\",\"value\":\"1\"},\"2\":{\"label\":\"2 (mediocre)\",\"value\":\"2\"},\"3\":{\"label\":\"3 (average)\",\"value\":\"3\"},\"4\":{\"label\":\"4 (fair)\",\"value\":\"4\"},\"5\":{\"label\":\"5 (excellent)\",\"value\":\"5\"}},\"description\":\"\",\"show_values\":\"1\",\"input_columns\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"radio\",\"label\":\"How likely are you to recommend our product / service to people you know?\",\"choices\":{\"1\":{\"label\":\"Likely\",\"value\":\"Likely\"},\"2\":{\"label\":\"Somewhat Likely\",\"value\":\"Somewhat Likely\"},\"3\":{\"label\":\"Somewhat Unlikely\",\"value\":\"Somewhat Unlikely\"},\"4\":{\"label\":\"Unlikely\",\"value\":\"Unlikely\"}},\"description\":\"\",\"show_values\":\"1\",\"input_columns\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"radio\",\"label\":\"Would you use our product / service in the future?\",\"choices\":{\"1\":{\"label\":\"Yes\",\"value\":\"Yes\"},\"2\":{\"label\":\"No\",\"value\":\"No\"}},\"description\":\"\",\"show_values\":\"1\",\"input_columns\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"select\",\"label\":\"How long have you used our product / service?\",\"choices\":{\"1\":{\"label\":\"Select...\",\"value\":\"\"},\"6\":{\"label\":\"Less than a month\",\"value\":\"Less than a month\"},\"2\":{\"label\":\"1 Month - 11 Months\",\"value\":\"1 Month - 11 Months\"},\"3\":{\"label\":\"1 Year - 2 Years\",\"value\":\"1 Year - 2 Years\"},\"5\":{\"label\":\"3 Years - 5 Years\",\"value\":\"3 Years - 5 Years\"},\"4\":{\"label\":\"Over 5 Years\",\"value\":\"Over 5 Years\"}},\"description\":\"\",\"show_values\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},\"7\":{\"id\":\"7\",\"type\":\"textarea\",\"label\":\"Please tell us what you liked or disliked about our product / service\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"},\"8\":{\"id\":\"8\",\"type\":\"textarea\",\"label\":\"Additional Comments\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Customer Feedback Form\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Customer Feedback Form submission\",\"sender_name\":\"\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"<span id=u0022nf-drawer-contentu0022><span class=u0022nf-setting-groupsu0022><span class=u0022nf-field-settingsu0022>Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"72532\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"blank\"}}','Customer Feedback Form','','publish','closed','closed','','customer-feedback-form','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',0,'https://estatesatnuevo.com/?post_type=wpuf_contact_form&#038;p=88',0,'wpuf_contact_form','',0),(89,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:4:\"name\";s:8:\"template\";s:10:\"name_field\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:4:\"Name\";s:4:\"name\";s:6:\"name_1\";s:7:\"is_meta\";s:3:\"yes\";s:6:\"format\";s:10:\"first-last\";s:10:\"first_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:5:\"First\";}s:11:\"middle_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:6:\"Middle\";}s:9:\"last_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:4:\"Last\";}s:9:\"hide_subs\";b:0;s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','89','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',88,'https://estatesatnuevo.com/?p=89',0,'wpuf_input','',0),(90,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:14:{s:10:\"input_type\";s:5:\"email\";s:8:\"template\";s:13:\"email_address\";s:8:\"required\";s:3:\"yes\";s:5:\"label\";s:5:\"Email\";s:4:\"name\";s:7:\"email_2\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";s:0:\"\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";N;}','','','publish','closed','closed','','90','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',88,'https://estatesatnuevo.com/?p=90',1,'wpuf_input','',0),(91,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:12:{s:10:\"input_type\";s:5:\"radio\";s:8:\"template\";s:11:\"radio_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:84:\"On a scale of 1 to 5, how would you rate your experience with our product / service?\";s:4:\"name\";s:7:\"radio_3\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:8:\"selected\";s:0:\"\";s:6:\"inline\";s:2:\"no\";s:7:\"options\";a:5:{s:8:\"1 (poor)\";s:8:\"1 (poor)\";s:12:\"2 (mediocre)\";s:12:\"2 (mediocre)\";s:11:\"3 (average)\";s:11:\"3 (average)\";s:8:\"4 (fair)\";s:8:\"4 (fair)\";s:13:\"5 (excellent)\";s:13:\"5 (excellent)\";}s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','91','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',88,'https://estatesatnuevo.com/?p=91',2,'wpuf_input','',0),(92,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:12:{s:10:\"input_type\";s:5:\"radio\";s:8:\"template\";s:11:\"radio_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:73:\"How likely are you to recommend our product / service to people you know?\";s:4:\"name\";s:7:\"radio_4\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:8:\"selected\";s:0:\"\";s:6:\"inline\";s:2:\"no\";s:7:\"options\";a:4:{s:6:\"Likely\";s:6:\"Likely\";s:15:\"Somewhat Likely\";s:15:\"Somewhat Likely\";s:17:\"Somewhat Unlikely\";s:17:\"Somewhat Unlikely\";s:8:\"Unlikely\";s:8:\"Unlikely\";}s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','92','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',88,'https://estatesatnuevo.com/?p=92',3,'wpuf_input','',0),(93,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:12:{s:10:\"input_type\";s:5:\"radio\";s:8:\"template\";s:11:\"radio_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:50:\"Would you use our product / service in the future?\";s:4:\"name\";s:7:\"radio_5\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:8:\"selected\";s:0:\"\";s:6:\"inline\";s:2:\"no\";s:7:\"options\";a:2:{s:3:\"Yes\";s:3:\"Yes\";s:2:\"No\";s:2:\"No\";}s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','93','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',88,'https://estatesatnuevo.com/?p=93',4,'wpuf_input','',0),(94,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:12:{s:10:\"input_type\";s:6:\"select\";s:8:\"template\";s:14:\"dropdown_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:45:\"How long have you used our product / service?\";s:4:\"name\";s:8:\"select_6\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:8:\"selected\";s:0:\"\";s:6:\"inline\";s:2:\"no\";s:7:\"options\";a:6:{s:9:\"Select...\";s:9:\"Select...\";s:17:\"Less than a month\";s:17:\"Less than a month\";s:19:\"1 Month - 11 Months\";s:19:\"1 Month - 11 Months\";s:16:\"1 Year - 2 Years\";s:16:\"1 Year - 2 Years\";s:17:\"3 Years - 5 Years\";s:17:\"3 Years - 5 Years\";s:12:\"Over 5 Years\";s:12:\"Over 5 Years\";}s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','94','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',88,'https://estatesatnuevo.com/?p=94',5,'wpuf_input','',0),(95,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:15:{s:10:\"input_type\";s:8:\"textarea\";s:8:\"template\";s:14:\"textarea_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:69:\"Please tell us what you liked or disliked about our product / service\";s:4:\"name\";s:10:\"textarea_7\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:4:\"rows\";i:5;s:4:\"cols\";i:25;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"rich\";s:2:\"no\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','95','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',88,'https://estatesatnuevo.com/?p=95',6,'wpuf_input','',0),(96,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','a:15:{s:10:\"input_type\";s:8:\"textarea\";s:8:\"template\";s:14:\"textarea_field\";s:8:\"required\";s:2:\"no\";s:5:\"label\";s:19:\"Additional Comments\";s:4:\"name\";s:10:\"textarea_8\";s:7:\"is_meta\";s:3:\"yes\";s:4:\"help\";s:0:\"\";s:3:\"css\";s:0:\"\";s:4:\"rows\";i:5;s:4:\"cols\";i:25;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"rich\";s:2:\"no\";s:16:\"word_restriction\";s:0:\"\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}}','','','publish','closed','closed','','96','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',88,'https://estatesatnuevo.com/?p=96',7,'wpuf_input','',0),(97,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"color: #ffffff; background-image: url(\'https://estatesatnuevo.com/wp-content/uploads/2022/04/estatescover.jpg\'); background-size: cover; background-position: 50% 100%;\" data-image-url=\"https://estatesatnuevo.com/wp-content/estatescover.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px; background-image: url(\'https://estatescover.jpg\'); background-size: cover; background-position: 50% 100%; padding-bottom: 287px;\" data-image-url=\"https://estatescover.jpg/1500x919\">\r\n<div class=\"col-md-8 col-sm-10 col-xs-12 align-column-center col-lg-4\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n<div class=\"\"></div>\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-12 col-lg-2\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<h2 class=\"intro__title\" style=\"font-weight: 600; font-size: 36px; color: #ffffff;\" align=\"center\" data-font-weight=\"600\">Ultimate Luxury Meets Ultimate Nature</h2>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">INFORMATION</h3>\r\n<p class=\"\" style=\"padding: 0em;\">Named as one of the Top Hotels in Mexico and Top Hotels in the World by Travel + Leisure\'s World\'s Best Awards, Vidanta Nuevo Vallarta offers the ultimate resort vacation. This expansive destination has been carefully curated to provide a high-end experience full of options, including endless restaurants and lounges, three golf courses and a golf academy, a shopping plaza, and entertainment plaza, two indulgent spas, countless pools, and the all-new Beachland.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/info\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">SUITES</h3>\r\n<p class=\"\">Discover the best that exclusive luxury vacationing has to offer at The Estates at Nuevo, a haven of high-end comfort sequestered in the sublime jungle landscape at Vidanta Nuevo Vallarta\'s 5-star resort.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-1-bedroom\">1 Bedroom</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-2-bedroom\">2 Bedrooms</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-3-bedroom\">3 Bedrooms</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-4-bedroom\">4 Bedrooms</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">ACTIVITIES</h3>\r\n<header class=\"intro__header\"></header>\r\n<div class=\"intro__lead\">\r\n<p class=\"boxcard__text\">It’s your vacation, so why not spend it doing the types of things you love to do? At Estates at Nuevo, you’ll find a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, all run by our amazing activities team, the Joy Squad.</p>\r\n<p class=\"boxcard__text\">Don’t forget to download the activities calendar and check out your resort hotel to see what activities are happening when!</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/activities\">Learn more</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">property photos</h3>\r\n<p class=\"\" style=\"padding: 0em;\">At the Estates at Nuevo you can kick back in a remote jungle oasis by your accommodations or enjoy a gorgeous exclusive pool and lounge area in Beachland. Ride the exclusive gondola, play golf, luxuriate in a spa setting or relax by the pool in your private sanctuary.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/photos\">See More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">DINING</h3>\r\n<p class=\"\">With over 40 restaurants and lounges to choose from, Estates at Nuevo gives guests the opportunity to dine however they like. Options range from high-end eateries to casual restaurants to authentic Mexican spots, and even a gourmet market filled with offerings from all over the world. One thing is for sure—an amazing culinary experience is always just a meal away.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/dining\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">BASK IN EXCEPTIONAL SERVICE</h3>\r\n<header class=\"intro__header\"></header>\r\n<div class=\"intro__lead\">\r\n<p class=\"intro__text\">Experience a higher level of service during your next vacation at Nuevo Vallarta. For the duration of your stay, you will have a personal butler and concierge to take care of everything needed to make your visit to paradise exceptional and unique. We want you to truly relax and cast your cares away, fully immerse yourself in our sumptuous accommodations and amenities, and focus on special moments with your loved ones—free of any burdens or distractions. &nbsp;</p><p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/services\">Learn More</a></p>\r\n<p class=\"intro__text\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 1em;\">\r\n<div class=\"\">\r\n<div><span class=\"\">We are owners at the Estates at Nuevo Luxury Condo Suites at the Vidanta Resorts.&nbsp; We also own at the Grand Luxxe Vacation resort.&nbsp; There are several of the Vidanta resorts in Mexico but we love the Nuevo Vallarta site because it has the most to offer.&nbsp; &nbsp;</span></div>\r\n<p class=\"\">We work with other owners so we have a larger selection of rentals available. Some have already been secured with the resort and are ready to book.&nbsp; If not, then we can check on availability for your specific time frame.</p>\r\n<p class=\"\">Always happy to answer any questions you may have about the resort and ourselves.&nbsp;&nbsp;</p>\r\n<p class=\"\">Thanks!&nbsp; Linda and Frank Helman</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 align-column-center col-lg-6\"><span class=\"\">From the moment you arrive, you will sense the difference with personalized attention 24/7 and the exclusivity in private beach and pool areas that are intimate and tranquil. At Vidanta’s Estates at Nuevo Vacation Mexican resort, we invite you to explore the gardens and landscaping, enjoy the ocean breeze, the unparalleled panoramic view of the Pacific Ocean in a magnificent sunset, and the natural biodiversity of the Bandera’s bay. It is the kind of extraordinary Mexican vacation experience you want, and the kind of service you deserve and expect.</span></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 0em 3em 90px;\">\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-110\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"k8m4Uj5JJAQ\" data-imhwpb-asset-id=\"1111013\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-111\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"r1tjlHBnHzY\" data-imhwpb-asset-id=\"1111014\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-112\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"l5gzNmXTzIg\" data-imhwpb-asset-id=\"1111015\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-113\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"\" data-imhwpb-asset-id=\"1111016\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-114\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"sBtqOe23bd0\" data-imhwpb-asset-id=\"1111017\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-115\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"B8He4PJkMLg\" data-imhwpb-asset-id=\"1111018\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 2em;\">\r\n<div class=\"\">\r\n<h2 class=\"color3-color\">Our Location</h2>\r\n<p class=\"\">Because we put the customer first, we always have free transportation from the airport to the resort and to your living suite.&nbsp;</p>\r\n<p class=\"\">Review the room details and let us know how we can help you have the best vacation possible. <a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates/home/contact\">Contact Us</a></p>\r\n\r\n<h3 class=\"color3-color\" style=\"font-weight: 400; font-size: 25px;\" data-font-weight=\"400\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address&nbsp;</h3>\r\n<p class=\"color3-color\" style=\"font-weight: 400;\" data-font-weight=\"400\">Blvd Riviera Nayarit #254, 63735 Nuevo Vallarta, Nay., Mexico</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 bg-box-flush col-lg-6\">\r\n<p class=\"\"><img class=\"bg-img alignnone wp-image-1806 size-medium\" style=\"background-color: var(--color-neutral); color: var(--color-neutral-text-contrast);\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico.jpg-2-300x210.jpg\" alt=\"Resort area showing proximity to airport and Puerto Vallarta\" width=\"300\" height=\"210\"><img class=\"bg-img alignnone wp-image-1810 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico-1.jpg-2-1-300x239.jpg\" alt=\"Close up of resort area\" width=\"300\" height=\"239\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Home','','publish','closed','closed','','home','','','2022-11-18 15:30:27','2022-11-18 15:30:27','',0,'https://estatesatnuevo.com/home/',0,'page','',0),(98,1,'2022-03-23 19:06:21','2022-03-23 19:06:21',' ','','','publish','closed','closed','','98','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',0,'https://estatesatnuevo.com/98/',0,'nav_menu_item','',0),(99,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px;\">\r\n<div class=\"col-md-12 text-center col-xs-12 col-sm-12 text-center align-column-center col-lg-12\" style=\"padding-left: 0.9em;\">\r\n<h1 class=\"intro__title color3-color\" style=\"font-weight: 600; font-size: 32px;\" data-font-weight=\"600\">Estates 4 Bedroom Luxury Condo</h1>\r\n<p class=\"color3-color\" style=\"font-family: Arial, Helvetica, sans-serif; font-weight: 600; text-align: left; font-size: 18px; line-height: 2em;\" data-font-family=\"Arial\" data-font-weight=\"600\" data-font-style=\"\"><span style=\"color: #ffffff; font-family: Arial, Times New Roman, san-serif;\"><span style=\"font-size: medium;\">This Estates Expansive Luxurious 4 Bedroom, 4.5 Bathroom Condo breathtaking space has a two-storied layout with the first floor featuring a gourmet kitchen outfitted with granite counter tops, a breakfast bar and all the finest appliances, a stylish dining area seating ten, a gorgeous lounge area with a TV, a master bedroom with a king bed and a TV, another bedroom with two full size beds and a TV, three bathrooms including two with a Jacuzzi tub, and an expansive terrace with massive private pool. The second story features a bedroom with a king bed and a TV, another bedroom with two full size beds and a TV, one and a half bathrooms, washer/dryer unit, and two private upper terraces. This condo accommodates 12 adults and 2 children under the age of 12.</span></span></p>\r\n<p class=\"color3-color\" style=\"text-align: left; font-weight: 600; font-family: Arial, Helvetica, sans-serif; font-size: 17px; line-height: 2em;\" data-font-family=\"Arial\" data-font-weight=\"600\" data-font-style=\"\">This condo includes access to all pools, gym, golf, spa, and tennis courts. Some costs may be charged for golf and spa packages. Included is complimentary transportation from the airport.&nbsp; A butler will be assigned to assist your every need at the Estates at Nuevo Luxurious 4 Bedroom condo.&nbsp; Morning coffee and tea are complimentary.&nbsp; Each unit has an outdoor deck with dining area and 2 lounge chairs as well as a small pool.&nbsp; All rentals with us have access to Platinum benefits that include best seating at pools, preferred check-in, preferred tee times and spa times (if reserved 72 hours in advance), and preferred restaurant reservations.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\r\n<div class=\"image-gallery\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\"><img class=\"alignnone wp-image-1992 size-full\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-4bed.jpg\" alt=\"\" width=\"630\" height=\"386\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"\"><img class=\"alignnone wp-image-2023 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/living-area-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"\"><img class=\"alignnone wp-image-2024 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/master-1-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"\"><img class=\"alignnone wp-image-2015 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/2nd-bed-tv-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\"><img class=\"alignnone wp-image-2028 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/overhead-shot-225x300.jpeg\" alt=\"\" width=\"225\" height=\"300\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2022 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/living-area-1-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2017 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/another-bath-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2014 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/58_0_300_225.29182879377_estates4second.jpg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_2029\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-2029 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/pool-deck-300x225.jpeg\" alt=\"deck pool\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"> 4 bed estates deck pool[/caption]\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2013 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/31_0_300_203.87323943662_estates4master.jpg\" alt=\"\" width=\"300\" height=\"203\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2031 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/third-beds-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2026 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/master-bath-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<p class=\"\" style=\"text-align: left; color: #000000;\">&nbsp;</p>\r\n\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12 col-lg-6\">\r\n<div>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Ask about a Play and Stay Golf Package that includes free or discounted golf. The details will be determined based on the date and unit available.</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">All units are a minimum of 7 nights with check-ins Friday-Monday.</p>\r\n<p class=\"\" style=\"font-weight: 600; color: #000000; font-size: 18px;\" data-font-weight=\"600\"><strong><a href=\" https://www.GrandLuxxe-Vacation.com/home/contact-us/\">E-mail </a></strong>for details and we will do our best to get you the unit you desire. Click the word e-mail for a link.</p>\r\n<p class=\"\"><iframe style=\"overflow: hidden; display: block; margin: 0 auto; width: 100%; max-width: 400px; min-height: 400px;\" src=\"https://www.houfy.com/embed/7148/pricing\" frameborder=\"“0&quot;\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\">\r\n<div>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Review - \"The Estates cannot be equaled!</p>\r\n<p class=\"\" style=\"font-weight: 600; line-height: 1.4em; color: #000000;\" data-font-weight=\"600\">Absolutely luxurious property with high-end everything. Had 4 couples in a 4 bedroom unit. Butler service was phenomenal. They answered all questions and even loaned us his personal Alexa to assist my wheelchair-bound husband.&nbsp; We highly recommend the iced coffee as well as coffee delivered to the room every morning.&nbsp; Attentive and courteous housekeeping.</p>\r\n<p class=\"\" style=\"font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">I really enjoyed the large pool on the deck. Private swimming.&nbsp; So nice to site outside with drinks by the pool area. Dining on the deck is a plus as well.</p>\r\n<p class=\"\" style=\"font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">Enjoyed the Joy Club activities and attention at the pool. Aqua aerobics and pool blackjack was lots of fun.</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Julia D, Chicago, IL</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Estates 4 Bedroom','','publish','closed','closed','','estates-4-bedroom','','','2022-04-13 20:59:26','2022-04-13 20:59:26','',97,'https://estatesatnuevo.com/about-us/',0,'page','',0),(101,1,'2022-03-23 19:06:21','2022-03-23 19:06:21','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-7 col-xs-12 col-sm-12 col-lg-7\">\r\n<h3 class=\"color3-color\" style=\"font-family: Chonburi; font-weight: 600; font-style: normal; font-size: 25px; text-align: center;\" data-font-family=\"Chonburi\" data-font-weight=\"600\" data-font-style=\"normal\">MONEY and CREDIT CARDS</h3>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">The Estates at Nuevo is a cashless resort meaning you do not use cash on the property. You provide a credit card when you check-in and sign the bills with your name and room number. Each person in the condo is required to sign in and you will be asked to sign on a electronic signature pad so your signature can be checked when you sign your bills. You settle your account when you leave.&nbsp;</p>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">The money in Mexico is pesos and the sign is a $ sign. When you are looking at prices, if it\'s $240, it\'s really about $13.50 USD depending on the current currency exchange.&nbsp;&nbsp;</p>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">The resort and local banks will require your passport to convert currency should you require it.&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-5 col-xs-12 col-sm-12 col-lg-5\">\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-1399 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/money-300x158.jpg\" alt=\"Money in different currencies\" width=\"300\" height=\"158\" data-imhwpb-built-photo-search=\"93|landscape\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-5 text-center col-xs-12 col-lg-6\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-1834\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/pvairport-300x199.jpg\" alt=\"Puerto Vallarta Airport\" width=\"434\" height=\"288\"></p>\r\n<p class=\"mod-img\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-7 col-xs-12 col-lg-6\">\r\n<h2 class=\"color3-color\" style=\"font-family: Chonburi; font-weight: 600; font-size: 25px; text-align: center;\" data-font-family=\"Chonburi\" data-font-weight=\"600\" data-font-style=\"\">At the Airport</h2>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">You need to have your custom forms completed before entering immigration area.&nbsp; If possible, do this on the plane before you disembark.&nbsp; Once you get through immigration, walk to your baggage and then to customs where you will push a button to register green or red. If red, they will inspect your luggage, if green, walk on through to locate the Gapsa taxi driver hostess with your name on their list.&nbsp; Be sure you follow the instructions that will be sent when you request your free transportation to the resort.&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-5 text-center col-xs-12 col-lg-6\" style=\"padding-right: 0em; padding-left: 0em;\">\r\n<p class=\"color3-color\" style=\"font-family: Chonburi; font-weight: 600; font-size: 25px; text-align: center;\" data-font-family=\"Chonburi\" data-font-weight=\"600\" data-font-style=\"\">AMENITIES IN YOUR CONDO</p>\r\n<p class=\"color3-color\" style=\"margin-left: 32px; margin-right: 18px; text-align: left; font-weight: 600;\" data-font-weight=\"600\">Each condo has a kitchen area with refrigerator, coffee pot, blender, dishes, pots and pans, cutlery, etc.&nbsp; And each bedroom has a robe and free slippers, luxury toiletries, and a hair dryer as well as a flat screen television and a desk with chair,&nbsp; The market has a selection of groceries for all your needs.</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-7 col-xs-12 col-lg-6\">\r\n<h4 class=\"color3-color\" style=\"font-family: Chonburi; font-weight: 600; font-size: 25px; text-align: center;\" data-font-family=\"Chonburi\" data-font-weight=\"600\" data-font-style=\"\">DAILY MAID SERVICE</h4>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">Daily maid service is included. They make beds, dust, generally cleaning but not dishes.&nbsp; They work in shifts so if you intend to leave a tip, do it daily rather than at the end of your stay.&nbsp; There is also a nightly turn-down service with chocolates by your bed.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-5 text-center col-xs-12 col-lg-6\">\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-299 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/30_0_300_203.15789473684_vidanta-nuevovallarta-ataglance-gallery-15.jpg\" alt=\"\" width=\"300\" height=\"203\" data-imhwpb-built-photo-search=\"92|landscape\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-1045 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Spatium-1-300x203.jpg\" alt=\"Spatium area\" width=\"300\" height=\"203\" data-imhwpb-built-photo-search=\"92|landscape\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-7 col-xs-12 col-lg-6\">\r\n<h2 class=\"color3-color\" style=\"font-family: Chonburi; font-weight: 600; font-size: 25px; text-align: center;\" data-font-family=\"Chonburi\" data-font-weight=\"600\" data-font-style=\"\">General info</h2>\r\n<h4 class=\"color3-color\" style=\"font-family: Chonburi; font-weight: 600; text-align: center;\" data-font-family=\"Chonburi\" data-font-weight=\"600\" data-font-style=\"\">Other stuff that\'s good to know.</h4>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">We have tried to provide all the information for your vacation, however feel free to contact us with any questions.</p>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">The sun can be strong, so bring sunglasses and sun screen.&nbsp;&nbsp;</p>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">There is free wi-fi and internet in each condo as well as in most places on the property.&nbsp; &nbsp;&nbsp;</p>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">The resort has a filtration system so the water is safe to drink and fruits and vegetables are locally grown and safe to consume.&nbsp; &nbsp; &nbsp;</p>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">The gym has state-of-the art equipment and is free to use. Please wear sneakers.&nbsp; &nbsp;&nbsp;</p>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">The Spatium spa has free water areas that include a sauna, steam room, whirlpool, and cold plunge pool.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Info','','publish','closed','closed','','info','','','2022-04-10 19:28:28','2022-04-10 19:28:28','',97,'https://estatesatnuevo.com/info/',0,'page','',0),(102,1,'2022-03-23 19:06:21','2022-03-23 19:06:21',' ','','','publish','closed','closed','','102','','','2022-03-23 19:06:21','2022-03-23 19:06:21','',0,'https://estatesatnuevo.com/102/',3,'nav_menu_item','',0),(105,1,'2022-03-23 19:06:22','2022-03-23 19:06:22','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-8 col-sm-8 col-xs-12\">\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">Please use the contact form below, if you have any general questions or requests about our condos.&nbsp; We will try our best to respond back to you within 24 hours.</p>\r\n[weforms id=\"57\"]\r\n\r\n</div>\r\n<div class=\"col-md-4 col-sm-4 col-xs-12\">\r\n<p class=\"\"><img class=\"alignnone wp-image-139 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/64_0_360_300.58252427184_estates-4.jpg\" alt=\"\" width=\"360\" height=\"300\" data-imhwpb-built-photo-search=\"52|portrait\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Contact','','publish','closed','closed','','contact','','','2022-03-27 21:15:11','2022-03-27 21:15:11','',97,'https://estatesatnuevo.com/contact-us/',0,'page','',0),(106,1,'2022-04-09 20:21:04','2022-03-23 19:06:22',' ','','','publish','closed','closed','','106','','','2022-04-09 20:21:04','2022-04-09 20:21:04','',97,'https://estatesatnuevo.com/106/',7,'nav_menu_item','',0),(398,1,'2022-11-18 15:27:54','2022-11-18 15:27:54','<div class=\"color1-background-color color-1-text-contrast bg-background-color tmpl-about-13 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 50px; padding-bottom: 50px;\">\r\n<div class=\"col-md-8 col-sm-8 col-xs-12 col-lg-8\">\r\n<p class=\"\" style=\"border-width: 0px;\"><img src=\"https://mcusercontent.com/2d67d7fc60bdcd41ac8679ab9/images/efcd0688-d470-6228-5b7f-bf1a60d3d525.jpg\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\">\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Services','','inherit','closed','closed','','393-revision-v1','','','2022-11-18 15:27:54','2022-11-18 15:27:54','',393,'https://estatesatnuevo.com/?p=398',0,'revision','',0),(399,1,'2022-11-18 15:28:25','2022-11-18 15:28:25',' ','','','publish','closed','closed','','399','','','2022-11-18 15:28:25','2022-11-18 15:28:25','',0,'https://estatesatnuevo.com/399/',8,'nav_menu_item','',0),(400,1,'2022-11-18 15:30:27','2022-11-18 15:30:27','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"color: #ffffff; background-image: url(\'https://estatesatnuevo.com/wp-content/uploads/2022/04/estatescover.jpg\'); background-size: cover; background-position: 50% 100%;\" data-image-url=\"https://estatesatnuevo.com/wp-content/estatescover.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px; background-image: url(\'https://estatescover.jpg\'); background-size: cover; background-position: 50% 100%; padding-bottom: 287px;\" data-image-url=\"https://estatescover.jpg/1500x919\">\r\n<div class=\"col-md-8 col-sm-10 col-xs-12 align-column-center col-lg-4\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n<div class=\"\"></div>\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-12 col-lg-2\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<h2 class=\"intro__title\" style=\"font-weight: 600; font-size: 36px; color: #ffffff;\" align=\"center\" data-font-weight=\"600\">Ultimate Luxury Meets Ultimate Nature</h2>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">INFORMATION</h3>\r\n<p class=\"\" style=\"padding: 0em;\">Named as one of the Top Hotels in Mexico and Top Hotels in the World by Travel + Leisure\'s World\'s Best Awards, Vidanta Nuevo Vallarta offers the ultimate resort vacation. This expansive destination has been carefully curated to provide a high-end experience full of options, including endless restaurants and lounges, three golf courses and a golf academy, a shopping plaza, and entertainment plaza, two indulgent spas, countless pools, and the all-new Beachland.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/info\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">SUITES</h3>\r\n<p class=\"\">Discover the best that exclusive luxury vacationing has to offer at The Estates at Nuevo, a haven of high-end comfort sequestered in the sublime jungle landscape at Vidanta Nuevo Vallarta\'s 5-star resort.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-1-bedroom\">1 Bedroom</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-2-bedroom\">2 Bedrooms</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-3-bedroom\">3 Bedrooms</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-4-bedroom\">4 Bedrooms</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">ACTIVITIES</h3>\r\n<header class=\"intro__header\"></header>\r\n<div class=\"intro__lead\">\r\n<p class=\"boxcard__text\">It’s your vacation, so why not spend it doing the types of things you love to do? At Estates at Nuevo, you’ll find a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, all run by our amazing activities team, the Joy Squad.</p>\r\n<p class=\"boxcard__text\">Don’t forget to download the activities calendar and check out your resort hotel to see what activities are happening when!</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/activities\">Learn more</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">property photos</h3>\r\n<p class=\"\" style=\"padding: 0em;\">At the Estates at Nuevo you can kick back in a remote jungle oasis by your accommodations or enjoy a gorgeous exclusive pool and lounge area in Beachland. Ride the exclusive gondola, play golf, luxuriate in a spa setting or relax by the pool in your private sanctuary.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/photos\">See More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">DINING</h3>\r\n<p class=\"\">With over 40 restaurants and lounges to choose from, Estates at Nuevo gives guests the opportunity to dine however they like. Options range from high-end eateries to casual restaurants to authentic Mexican spots, and even a gourmet market filled with offerings from all over the world. One thing is for sure—an amazing culinary experience is always just a meal away.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/dining\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">BASK IN EXCEPTIONAL SERVICE</h3>\r\n<header class=\"intro__header\"></header>\r\n<div class=\"intro__lead\">\r\n<p class=\"intro__text\">Experience a higher level of service during your next vacation at Nuevo Vallarta. For the duration of your stay, you will have a personal butler and concierge to take care of everything needed to make your visit to paradise exceptional and unique. We want you to truly relax and cast your cares away, fully immerse yourself in our sumptuous accommodations and amenities, and focus on special moments with your loved ones—free of any burdens or distractions. &nbsp;</p><p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/services\">Learn More</a></p>\r\n<p class=\"intro__text\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 1em;\">\r\n<div class=\"\">\r\n<div><span class=\"\">We are owners at the Estates at Nuevo Luxury Condo Suites at the Vidanta Resorts.&nbsp; We also own at the Grand Luxxe Vacation resort.&nbsp; There are several of the Vidanta resorts in Mexico but we love the Nuevo Vallarta site because it has the most to offer.&nbsp; &nbsp;</span></div>\r\n<p class=\"\">We work with other owners so we have a larger selection of rentals available. Some have already been secured with the resort and are ready to book.&nbsp; If not, then we can check on availability for your specific time frame.</p>\r\n<p class=\"\">Always happy to answer any questions you may have about the resort and ourselves.&nbsp;&nbsp;</p>\r\n<p class=\"\">Thanks!&nbsp; Linda and Frank Helman</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 align-column-center col-lg-6\"><span class=\"\">From the moment you arrive, you will sense the difference with personalized attention 24/7 and the exclusivity in private beach and pool areas that are intimate and tranquil. At Vidanta’s Estates at Nuevo Vacation Mexican resort, we invite you to explore the gardens and landscaping, enjoy the ocean breeze, the unparalleled panoramic view of the Pacific Ocean in a magnificent sunset, and the natural biodiversity of the Bandera’s bay. It is the kind of extraordinary Mexican vacation experience you want, and the kind of service you deserve and expect.</span></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 0em 3em 90px;\">\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-110\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"k8m4Uj5JJAQ\" data-imhwpb-asset-id=\"1111013\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-111\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"r1tjlHBnHzY\" data-imhwpb-asset-id=\"1111014\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-112\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"l5gzNmXTzIg\" data-imhwpb-asset-id=\"1111015\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-113\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"\" data-imhwpb-asset-id=\"1111016\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-114\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"sBtqOe23bd0\" data-imhwpb-asset-id=\"1111017\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-115\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"B8He4PJkMLg\" data-imhwpb-asset-id=\"1111018\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 2em;\">\r\n<div class=\"\">\r\n<h2 class=\"color3-color\">Our Location</h2>\r\n<p class=\"\">Because we put the customer first, we always have free transportation from the airport to the resort and to your living suite.&nbsp;</p>\r\n<p class=\"\">Review the room details and let us know how we can help you have the best vacation possible. <a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates/home/contact\">Contact Us</a></p>\r\n\r\n<h3 class=\"color3-color\" style=\"font-weight: 400; font-size: 25px;\" data-font-weight=\"400\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address&nbsp;</h3>\r\n<p class=\"color3-color\" style=\"font-weight: 400;\" data-font-weight=\"400\">Blvd Riviera Nayarit #254, 63735 Nuevo Vallarta, Nay., Mexico</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 bg-box-flush col-lg-6\">\r\n<p class=\"\"><img class=\"bg-img alignnone wp-image-1806 size-medium\" style=\"background-color: var(--color-neutral); color: var(--color-neutral-text-contrast);\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico.jpg-2-300x210.jpg\" alt=\"Resort area showing proximity to airport and Puerto Vallarta\" width=\"300\" height=\"210\"><img class=\"bg-img alignnone wp-image-1810 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico-1.jpg-2-1-300x239.jpg\" alt=\"Close up of resort area\" width=\"300\" height=\"239\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','97-revision-v1','','','2022-11-18 15:30:27','2022-11-18 15:30:27','',97,'https://estatesatnuevo.com/?p=400',0,'revision','',0),(395,1,'2022-11-18 15:24:34','2022-11-18 15:24:34','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw300h400fitcropse90921db1d6bf3b6b209b3597998e8b8','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw300h400fitcropse90921db1d6bf3b6b209b3597998e8b8','','','2022-11-18 15:24:34','2022-11-18 15:24:34','',0,'https://estatesatnuevo.com/wp-content/uploads/2022/11/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw300h400fitcropse90921db1d6bf3b6b209b3597998e8b8.jpg',0,'attachment','image/jpeg',0),(182,1,'2022-03-26 19:38:50','2022-03-26 19:38:50','','2bedpool','','inherit','open','closed','','2bedpool','','','2022-03-26 19:38:50','2022-03-26 19:38:50','',173,'https://estatesatnuevo.com/wp-content/uploads/2022/03/2bedpool.jpg',0,'attachment','image/jpeg',0),(110,1,'2022-03-23 19:06:25','2022-03-23 19:06:25','','randy-fath-k8m4Uj5JJAQ-unsplash','','inherit','open','closed','','randy-fath-k8m4uj5jjaq-unsplash','','','2022-03-23 19:06:25','2022-03-23 19:06:25','',97,'https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg',0,'attachment','image/jpeg',0),(111,1,'2022-03-23 19:06:25','2022-03-23 19:06:25','','william-rouse-r1tjlHBnHzY-unsplash','','inherit','open','closed','','william-rouse-r1tjlhbnhzy-unsplash','','','2022-03-23 19:06:25','2022-03-23 19:06:25','',97,'https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg',0,'attachment','image/jpeg',0),(112,1,'2022-03-23 19:06:25','2022-03-23 19:06:25','','gerd-schrade-l5gzNmXTzIg-unsplash','','inherit','open','closed','','gerd-schrade-l5gznmxtzig-unsplash','','','2022-03-23 19:06:25','2022-03-23 19:06:25','',97,'https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg',0,'attachment','image/jpeg',0),(113,1,'2022-03-23 19:06:25','2022-03-23 19:06:25','','leslie-jones-QWdMjLZqSC0-unsplash','','inherit','open','closed','','leslie-jones-qwdmjlzqsc0-unsplash','','','2022-03-23 19:06:25','2022-03-23 19:06:25','',97,'https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg',0,'attachment','image/jpeg',0),(114,1,'2022-03-23 19:06:25','2022-03-23 19:06:25','','sachin-prabhashan-sBtqOe23bd0-unsplash','','inherit','open','closed','','sachin-prabhashan-sbtqoe23bd0-unsplash','','','2022-03-23 19:06:25','2022-03-23 19:06:25','',97,'https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg',0,'attachment','image/jpeg',0),(115,1,'2022-03-23 19:06:25','2022-03-23 19:06:25','','melissa-walker-horn-B8He4PJkMLg-unsplash','','inherit','open','closed','','melissa-walker-horn-b8he4pjkmlg-unsplash','','','2022-03-23 19:06:25','2022-03-23 19:06:25','',97,'https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg',0,'attachment','image/jpeg',0),(116,1,'2022-03-23 19:06:25','2022-03-23 19:06:25','','','','inherit','open','closed','','116','','','2022-03-23 19:06:25','2022-03-23 19:06:25','',97,'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1NTLWQ0bk1Od2lRLzE5MjB4MTI4Mg_3D_3D-imhwpb-l6lnwj9f34ljpy1.jpg',0,'attachment','image/jpeg',0),(117,1,'2022-03-23 19:06:26','2022-03-23 19:06:26','','','','inherit','open','closed','','117','','','2022-03-23 19:06:26','2022-03-23 19:06:26','',97,'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg',0,'attachment','image/jpeg',0),(181,1,'2022-03-26 19:38:49','2022-03-26 19:38:49','','2bedestateplan','','inherit','open','closed','','2bedestateplan','','','2022-03-26 19:38:49','2022-03-26 19:38:49','',173,'https://estatesatnuevo.com/wp-content/uploads/2022/03/2bedestateplan.jpeg',0,'attachment','image/jpeg',0),(179,1,'2022-03-26 19:38:15','2022-03-26 19:38:15','','estates3rooom','','inherit','open','closed','','estates3rooom','','','2022-03-26 19:38:15','2022-03-26 19:38:15','',173,'https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3rooom.jpg',0,'attachment','image/jpeg',0),(180,1,'2022-03-26 19:38:48','2022-03-26 19:38:48','','2 bed','','inherit','open','closed','','2-bed','','','2022-03-26 19:38:48','2022-03-26 19:38:48','',173,'https://estatesatnuevo.com/wp-content/uploads/2022/03/2-bed.jpg',0,'attachment','image/jpeg',0),(183,1,'2022-03-26 19:38:51','2022-03-26 19:38:51','','2bedsuitekitchen','','inherit','open','closed','','2bedsuitekitchen','','','2022-03-26 19:38:51','2022-03-26 19:38:51','',173,'https://estatesatnuevo.com/wp-content/uploads/2022/03/2bedsuitekitchen.jpg',0,'attachment','image/jpeg',0),(184,1,'2022-03-26 19:38:53','2022-03-26 19:38:53','','estates 1','','inherit','open','closed','','estates-1','','','2022-03-26 19:38:53','2022-03-26 19:38:53','',173,'https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-1.jpg',0,'attachment','image/jpeg',0),(185,1,'2022-03-26 19:38:54','2022-03-26 19:38:54','','estates 1bed','','inherit','open','closed','','estates-1bed','','','2022-03-26 19:38:54','2022-03-26 19:38:54','',173,'https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-1bed.jpg',0,'attachment','image/jpeg',0),(186,1,'2022-03-26 19:38:56','2022-03-26 19:38:56','','estates 1room','','inherit','open','closed','','estates-1room','','','2022-03-26 19:38:56','2022-03-26 19:38:56','',173,'https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-1room.jpg',0,'attachment','image/jpeg',0),(187,1,'2022-03-26 19:38:58','2022-03-26 19:38:58','','estates 2bath','','inherit','open','closed','','estates-2bath','','','2022-03-26 19:38:58','2022-03-26 19:38:58','',173,'https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-2bath.jpg',0,'attachment','image/jpeg',0),(188,1,'2022-03-26 19:39:00','2022-03-26 19:39:00','','estates 2beds','','inherit','open','closed','','estates-2beds','','','2022-03-26 19:39:00','2022-03-26 19:39:00','',173,'https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-2beds.jpg',0,'attachment','image/jpeg',0),(190,1,'2022-03-26 19:39:02','2022-03-26 19:39:02','','estates 4','','inherit','open','closed','','estates-4-3','','','2022-03-26 19:39:02','2022-03-26 19:39:02','',173,'https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-4-2.jpg',0,'attachment','image/jpeg',0),(191,1,'2022-03-26 19:39:03','2022-03-26 19:39:03','','estates 4bed','','inherit','open','closed','','estates-4bed-2','','','2022-03-26 19:39:03','2022-03-26 19:39:03','',173,'https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-4bed-1.jpg',0,'attachment','image/jpeg',0),(189,1,'2022-03-26 19:39:01','2022-03-26 19:39:01','','estates 2pools','','inherit','open','closed','','estates-2pools','','','2022-03-26 19:39:01','2022-03-26 19:39:01','',173,'https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-2pools.jpg',0,'attachment','image/jpeg',0),(195,1,'2022-03-26 19:39:08','2022-03-26 19:39:08','','estates2','','inherit','open','closed','','estates2','','','2022-03-26 19:39:08','2022-03-26 19:39:08','',173,'https://estatesatnuevo.com/wp-content/uploads/2022/03/estates2.jpg',0,'attachment','image/jpeg',0),(194,1,'2022-03-26 19:39:07','2022-03-26 19:39:07','','estates walkway','','inherit','open','closed','','estates-walkway','','','2022-03-26 19:39:07','2022-03-26 19:39:07','',173,'https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-walkway.jpg',0,'attachment','image/jpeg',0),(192,1,'2022-03-26 19:39:05','2022-03-26 19:39:05','','estates beachland','','inherit','open','closed','','estates-beachland','','','2022-03-26 19:39:05','2022-03-26 19:39:05','',173,'https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-beachland.jpg',0,'attachment','image/jpeg',0),(193,1,'2022-03-26 19:39:06','2022-03-26 19:39:06','','estates pool','','inherit','open','closed','','estates-pool','','','2022-03-26 19:39:06','2022-03-26 19:39:06','',173,'https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-pool.jpg',0,'attachment','image/jpeg',0),(132,1,'2022-03-23 19:06:29','2022-03-23 19:06:29','\n<div class=\"boldgrid-section\"><div class=\"container\"><div class=\"row\">\r\n<div class=\"col-md-8 col-sm-8 col-xs-12\">\r\nPlease use the contact form below, if you have any general questions or requests about our services.\r\n\r\nWe will try our best to respond back to you within 24 hours.\r\n\r\n[weforms id=\"57\"]\r\n\r\n</div>\r\n<div class=\"col-md-4 col-sm-4 col-xs-12\">\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<img src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/e029adc9-84defea2-elwynn110400180-360x300.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"52|portrait\" width=\"360\" class=\"wp-image-109\">\r\n\r\n</div>\r\n</div></div></div>\n\n','Contact Us','','inherit','closed','closed','','105-revision-v1','','','2022-03-23 19:06:29','2022-03-23 19:06:29','',105,'https://estatesatnuevo.com/?p=132',0,'revision','',0),(133,1,'2022-03-23 19:06:29','2022-03-23 19:06:29','\n<div class=\"boldgrid-section\" style=\"color: #ffffff; background-image: linear-gradient(to left, rgba(26, 26, 26, 0.5), rgba(26, 26, 26, 0.5)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1NTLWQ0bk1Od2lRLzE5MjB4MTI4Mg_3D_3D-imhwpb-l6lnwj9f34ljpy1.jpg\'); background-size: cover; background-position: 50% 75%;\" data-imhwpb-asset-id=\"1111019\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1NTLWQ0bk1Od2lRLzE5MjB4MTI4Mg_3D_3D-imhwpb-l6lnwj9f34ljpy1.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-md-2 col-sm-2 col-xs-12\"></div>\r\n<div class=\"col-md-8 col-sm-10 col-xs-12\">\r\n<h2 class=\"h1 bg-text-fx bg-text-fx-closeheavy\" style=\"color: #ffffff; text-align: center;\">DIVE IN.</h2>\r\n<h3 class=\"bg-text-fx bg-text-fx-closeheavy\" style=\"color: #ffffff; text-align: center; text-transform: none;\">Own the home meant for you.</h3>\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-12\"></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 25px 4em 0px;\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\"><a href=\"#\"><i class=\"fa fa-cog color3-color\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></a></p>\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"#\"><strong>ABOUT</strong></a></p>\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\"><a href=\"#\"><i class=\"fa fa-briefcase\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></a></p>\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"#\"><strong>SERVICES</strong></a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\"><a href=\"#\"><i class=\"fa fa-paper-plane\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></a></p>\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"#\"><strong>CONTACT</strong></a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\"><a href=\"#\"><i class=\"fa fa-pencil-square-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></a></p>\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"#\"><strong>BLOG</strong></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 60px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6 color4-background-color color-4-text-contrast bg-background-color\" style=\"padding: 3em 4em 4em;\">\r\n<h3 class=\"\">Lawn Care Services</h3>\r\n<p class=\"\">Whether you&rsquo;re having trouble getting around as well as you used to, have new responsibilities that keep you from getting everything done, we can help. We work with a wide variety of landscaping and lawn care services to keep your exterior looking fabulous.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 3em 4em 4em;\">\r\n<h3 class=\"\">Home Maintenance</h3>\r\n<p class=\"\">If you&rsquo;re having trouble keeping up with your home&rsquo;s necessary maintenance or have repairs that need to be made, but you don&rsquo;t have time to stay on top of it, we&rsquo;ll help arrange service partners to take care of the problem while you get on with your life.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color5-background-color color-5-text-contrast bg-background-color\" style=\"padding: 3em 4em 4em;\">\r\n<h3 class=\"\">Cleaning Services</h3>\r\n<p class=\"\">Sometimes it&rsquo;s hard to keep up with cleaning and daily tasks that take so much of your precious time. Whether you need a little help getting regular cleaning done or need a hand running errands and doing laundry, we&rsquo;ll get it done for you.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding: 3em 4em 1em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">About Us</h2>\r\n<p class=\"\">We have specialists focusing on residential real estate, business and commercial real estate, industrial retrofitting, property management, legal services and so much more. We feel that by offering comprehensive services, we can deliver so much more for our clients.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 0em 3em 90px;\">\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-110\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\" alt=\"\" data-unsplash-id=\"k8m4Uj5JJAQ\" width=\"300\" height=\"450\" data-imhwpb-asset-id=\"1111013\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-111\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\" alt=\"\" data-unsplash-id=\"r1tjlHBnHzY\" width=\"300\" height=\"450\" data-imhwpb-asset-id=\"1111014\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-112\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\" alt=\"\" data-unsplash-id=\"l5gzNmXTzIg\" width=\"300\" height=\"450\" data-imhwpb-asset-id=\"1111015\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-113\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\" alt=\"\" data-unsplash-id=\"\" width=\"300\" height=\"450\" data-imhwpb-asset-id=\"1111016\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-114\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\" alt=\"\" data-unsplash-id=\"sBtqOe23bd0\" width=\"300\" height=\"450\" data-imhwpb-asset-id=\"1111017\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-115\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\" alt=\"\" data-unsplash-id=\"B8He4PJkMLg\" width=\"300\" height=\"450\" data-imhwpb-asset-id=\"1111018\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\'); background-size: cover; background-position: 50% 58%;\" data-imhwpb-asset-id=\"1111020\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding: 75px 2em 4em;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-key\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Vacation Concierge</h3>\r\n<p class=\"\">While your seasonal home is vacant, we can find renters and provide a complete vacation concierge service from buying groceries to recommending local hot spots, enforcing safety and more.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-star-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Special Markets</h3>\r\n<p class=\"\">Do you have a home that will bring more on a specialty market? From working with homes on the National Register of Historic Places to highly specialized industrial sites, we&rsquo;ll handle it.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\" style=\"padding: 3em 4em 4em;\">\r\n<h3 class=\"\">Our Mission</h3>\r\n<p class=\"\">At Bold Estate we put the customer&rsquo;s needs before our own. We make your transaction, whether it&rsquo;s buying, selling, renting, or investing, a truly extraordinary experience.</p>\r\n<p class=\"\">We work endlessly to hone skills, continuously striving for perfection, and sweating over every detail. Our commitment to making your realty experience the best imaginable means that we&rsquo;ll always give you more.</p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6 color5-background-color color-5-text-contrast bg-background-color\" style=\"padding: 4em; background-image: url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL19hTjZ6SURSTGZRLzE5MjB4MTI3OA_3D_3D-imhwpb-mp3ssj59au1z9n4.jpg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1111021\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL19hTjZ6SURSTGZRLzE5MjB4MTI3OA_3D_3D-imhwpb-mp3ssj59au1z9n4.jpg\">\r\n<div class=\"\">\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12\" style=\"padding: 3em 4em 4em;\">\r\n<h3 class=\"\">Customer First</h3>\r\n<p class=\"\">We are committed to providing the absolute best quality to each and every one of our customers. We have continued to grow while staying true to our original mission &mdash; to give you, the customer, a winning service that you can rely on.</p>\r\n<p class=\"\">Our commitment to making your realty experience the best imaginable means that we&rsquo;ll always give you more than the other guys. We put the customer first.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding: 3em 4em 2em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">Our Location</h2>\r\n<p class=\"\">Because we put the customer first, we always have free promotions that are charged at other realty agencies. Our commitment to making your realty experience the best imaginable means that we&rsquo;ll always give you more than the other guys.</p>\r\n<p class=\"\">Stop in today for a free consultation! Let us show you how we can do more for you than anyone else.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary\" href=\"#\">Learn More </a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 bg-box-flush\">\r\n<p class=\"boldgrid-google-maps\" style=\"margin: 0; line-height: 0;\"><iframe style=\"width: 100%;\" src=\"https://maps.google.com/maps?q=New+York%2C+NY&amp;t=m&amp;z=16&amp;output=embed\" width=\"1000\" height=\"500\" frameborder=\"0\"></iframe></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\n\n\n','Home','','inherit','closed','closed','','97-revision-v1','','','2022-03-23 19:06:29','2022-03-23 19:06:29','',97,'https://estatesatnuevo.com/?p=133',0,'revision','',0),(134,1,'2022-03-23 19:06:29','2022-03-23 19:06:29','\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h1>Quality Over Quantity</h1>\r\n<h4>We Do It Right The First Time</h4>\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr></div>\r\n</div>\r\n</div>\r\n</div>\r\nWe\'ve all run into real estate agents who seem to always be in a hurry. They can\'t stop and take the time to make sure your needs are being met because they\'re afraid they\'ll miss out on that next big deal. At Krista Crowder Real Estate, we think buying or selling a home should be a careful, deliberate process that meets all your needs, not done so quickly that you don\'t know what happened.\r\n\r\nWe use a unique, multifaceted approach to ensure that our customers are put first, no matter what. When we opened 30 years ago, we believed in providing quality customer service to meet your family\'s needs, and we still do today. We\'re your realtor yesterday, today and tomorrow.\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><a class=\"button-primary\" href=\"#\">View Our Services</a></p>\r\n&nbsp;\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"aligncenter size-full wp-image-119\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL0hOUXRBWG5RbEtBLzYwMHg0NTA_3D-imhwpb-ablx9xvvio15zbg.jpg\" alt=\"\" data-imhwpb-asset-id=\"780397\" width=\"600\" height=\"450\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n<p class=\"mod-img\"><img src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/58a6d85b-b046b108-epstock130300058-300x300.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"92|any\" width=\"300\" class=\"wp-image-120\"></p>\r\n<p class=\"mod-img\"><img src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/8af423c8-69090677-aomarch131000010-300x300.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"92|any\" width=\"300\" class=\"wp-image-121\"></p>\r\n<p class=\"mod-img\"><img src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/79502064-7e911594-detanan140400125-300x300.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"92|any\" width=\"300\" class=\"wp-image-122\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone size-medium wp-image-123\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1ZCczFDeXcyRDU4LzYwMHg2MDA_3D-imhwpb-kvn8geljy5ro8kv.jpg\" alt=\"\" data-imhwpb-asset-id=\"780398\" width=\"300\" height=\"300\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone size-medium wp-image-124\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1dMOGVQdmpONzVFLzYwMHg2MDA_3D-imhwpb-w7q2zqdkflext39.jpg\" alt=\"\" data-imhwpb-asset-id=\"780399\" width=\"300\" height=\"300\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"aligncenter size-full wp-image-125\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL19NbjRpOG5HMUswLzYwMHg0NTA_3D-imhwpb-b28rbl4nmwu3sjz.jpg\" alt=\"\" data-imhwpb-asset-id=\"780400\" width=\"600\" height=\"450\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<h2>Selling Your Home?</h2>\r\n<h4>Explore Your Options With Us</h4>\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr></div>\r\n</div>\r\n</div>\r\n</div>\r\nWe know there are many reasons why you need to sell your home, and some of them can be very complicated. That\'s why we discuss your options before having you sign any paperwork - we want you to be able to make the best choice for your family. Whether you\'re moving across town, out of state, across the country or around the world, we\'ll take care of you.\r\n\r\nDo you need income to pay your mortgage but don\'t want to sell while the housing market is still in a slump? No problem! We offer a variety of services. We\'ll ensure you\'ll get more visibility in a specific market to get the right price. If you\'d rather rent your home, we\'ll provide property management.\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><a class=\"button-primary\" href=\"#\">Featured Homes</a> <a class=\"button-secondary\" href=\"#\">Listings</a></p>\r\n&nbsp;\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<h2>Buying a New Home?</h2>\r\n<h4>Rest Assured In Our Services</h4>\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr></div>\r\n</div>\r\n</div>\r\n</div>\r\nWe know that buying a home can be a truly nerve wracking experience. Whether you\'re looking for your first home or are downsizing because of an empty nest, we can help you find the perfect home. Do you need to step up to an executive-level luxury home? Want a quiet place in the woods to reflect during your retirement? Our access to a variety of databases ensures you\'ll be happy with your options.\r\n\r\nWe also believe in small town values and honesty. If the basement always leaks after a hard rain, we\'ll tell you. We won\'t tell you the roof is new when it\'s ten years old. You\'ll get more than you expect with exceptional service.\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><a class=\"button-primary\" href=\"#\">View Our Services</a></p>\r\n&nbsp;\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"aligncenter size-full wp-image-126\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL2JqZWo4QlkxSllRLzYwMHg0NTA_3D-imhwpb-csgvgj7sie6vvcj.jpg\" alt=\"\" data-imhwpb-asset-id=\"780401\" width=\"600\" height=\"450\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n\n\n','About Us','','inherit','closed','closed','','99-revision-v1','','','2022-03-23 19:06:29','2022-03-23 19:06:29','',99,'https://estatesatnuevo.com/?p=134',0,'revision','',0),(135,1,'2022-03-23 19:06:29','2022-03-23 19:06:29','\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-7 col-xs-12 col-sm-12\">\r\n<h3>Some of Our Everyday Offerings:</h3>\r\nWhen you\'re looking for a new home, it can seem like there are a world of opportunities - too many to choose from! These listings cover some properties that are similar to many others we have available.\r\n\r\nAre you looking for an inexpensive cottage to rent for additional income? A duplex to keep a closer eye on elderly relatives? A picture-perfect subdivision home? We can find the perfect home for you.\r\n\r\nAt Krista Crowder Real Estate, we match you to the perfect home, not the one we\'re trying to sell.\r\n\r\n</div>\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/1ec7c829-7fdc71fe-AnikaSalsera130900111-555x350.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"93|landscape\" width=\"555\" class=\"wp-image-127\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-5 text-center col-xs-12\">\r\n<p class=\"mod-img\"><img src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/fa379a03-2116d75a-jodiejohnson150100028-555x350.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"92|landscape\" width=\"555\" class=\"wp-image-128\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-7 col-xs-12\">\r\n<h2>Subdivision Perfection at Old Oaks</h2>\r\n<h4>Get More For Your Money</h4>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr></div>\r\n</div>\r\n</div>\r\n</div>\r\nThis 4 bedroom 3 bath home provides plenty of high-class details for far less than you might expect. With numerous options available including fireplaces, flooring, paint and a gourmet kitchen, buy now and get your home your way in this final expansion at in-demand Old Oaks.\r\n<p class=\"p-button-primary text-center\"><a class=\"button-primary\" href=\"#\">READ MORE</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-5 text-center col-xs-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone size-full wp-image-129\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLzAyZjNLQzN6S1BrLzYwMHg0NTA_3D-imhwpb-kseohjmebzmdss1.jpg\" alt=\"\" data-imhwpb-asset-id=\"780402\" width=\"600\" height=\"450\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-7 col-xs-12\">\r\n<h2>Convenient to Downtown</h2>\r\n<h4>Modern Living</h4>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr></div>\r\n</div>\r\n</div>\r\n</div>\r\nOnce a series of artists\' lofts, these older buildings have amazing architectural features. Updated electrical service, windows and HVAC provide all the charm of the industrial era with all the comforts of the modern era along with fabulous hand-crafted details.\r\n<p class=\"p-button-primary text-center\"><a class=\"button-primary\" href=\"#\">READ MORE</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-5 text-center col-xs-12\">\r\n<p class=\"mod-img\"><img src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/b5518de7-aecf4fe-dotshock150602357-555x350.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"92|landscape\" width=\"555\" class=\"wp-image-130\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-7 col-xs-12\">\r\n<h2>Country Estate</h2>\r\n<h4>Plenty of Breathing Space</h4>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr></div>\r\n</div>\r\n</div>\r\n</div>\r\nWant the best a subdivision has to offer while still having room to breathe? This country subdivision still has several 5- and 10-acre plots with a variety of house plans available through their builder. Forest, river, field and valley, this subdivision has it all at a great price.\r\n<p class=\"p-button-primary text-center\"><a class=\"button-primary\" href=\"#\">READ MORE</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n\n\n','Info','','inherit','closed','closed','','101-revision-v1','','','2022-03-23 19:06:29','2022-03-23 19:06:29','',101,'https://estatesatnuevo.com/?p=135',0,'revision','',0),(260,1,'2022-03-29 16:52:33','2022-03-29 16:52:33','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-7 col-xs-12 col-sm-12\">\r\n<h3 class=\"\" style=\"font-family: Chonburi; font-weight: 600; font-style: normal; color: #000000; font-size: 25px; text-align: center;\" data-font-family=\"Chonburi\" data-font-weight=\"600\" data-font-style=\"normal\">MONEY and CREDIT CARDS</h3>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\">The Estates at Nuevo is a cashless resort meaning you do not use cash on the property. You provide a credit card when you check-in and sign the bills with your name and room number. Each person in the condo is required to sign in and you will be asked to sign on a electronic signature pad so your signature can be checked when you sign your bills. You settle your account when you leave.&nbsp;</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\">The money in Mexico is pesos and the sign is a $ sign. When you are looking at prices, if it\'s $240, it\'s really about $13.50 USD depending on the current currency exchange.&nbsp;&nbsp;</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\">The resort and local banks will require your passport to convert currency should you require it.&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-1399 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/money-300x158.jpg\" alt=\"Money in different currencies\" width=\"300\" height=\"158\" data-imhwpb-built-photo-search=\"93|landscape\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-5 text-center col-xs-12\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-1834\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/pvairport-300x199.jpg\" alt=\"Puerto Vallarta Airport\" width=\"434\" height=\"288\"></p>\r\n<p class=\"mod-img\"><img class=\"wp-image-1402 size-full aligncenter\" src=\"https://www.GrandLuxxe-Vacation.com/wp-content/uploads/2019/04/0_1_279_177_PV-airport-2.jpg\" alt=\"\" width=\"279\" height=\"177\" data-imhwpb-built-photo-search=\"92|landscape\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-7 col-xs-12\">\r\n<h2 class=\"\" style=\"font-family: Chonburi; font-weight: 600; color: #000000; font-size: 25px; text-align: center;\" data-font-family=\"Chonburi\" data-font-weight=\"600\" data-font-style=\"\">At the Airport</h2>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\">You need to have your custom forms completed before entering immigration area.&nbsp; If possible, do this on the plane before you disembark.&nbsp; Once you get through immigration, walk to your baggage and then to customs where you will push a button to register green or red. If red, they will inspect your luggage, if green, walk on through to locate the Gapsa taxi driver hostess with your name on their list.&nbsp; Be sure you follow the instructions that will be sent when you request your free transportation to the resort.&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-5 text-center col-xs-12\" style=\"padding-right: 0em; padding-left: 0em;\">\r\n<p class=\"\" style=\"font-family: Chonburi; font-weight: 600; font-size: 25px; color: #000000; text-align: center;\" data-font-family=\"Chonburi\" data-font-weight=\"600\" data-font-style=\"\">AMENITIES IN YOUR CONDO</p>\r\n<p class=\"\" style=\"margin-left: 32px; margin-right: 18px; text-align: left; color: #000000; font-weight: 600;\" data-font-weight=\"600\">Each condo has a kitchen area with refrigerator, coffee pot, blender, dishes, pots and pans, cutlery, etc.&nbsp; And each bedroom has a robe and free slippers, luxury toiletries, and a hair dryer as well as a flat screen television and a desk with chair,&nbsp; The market has a selection of groceries for all your needs.</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-7 col-xs-12\">\r\n<h4 class=\"\" style=\"font-family: Chonburi; font-weight: 600; font-size: 25px; color: #000000; text-align: center;\" data-font-family=\"Chonburi\" data-font-weight=\"600\" data-font-style=\"\">DAILY MAID SERVICE</h4>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\">Daily maid service is included. They make beds, dust, generally cleaning but not dishes.&nbsp; They work in shifts so if you intend to leave a tip, do it daily rather than at the end of your stay.&nbsp; There is also a nightly turn-down service with chocolates by your bed.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-5 text-center col-xs-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-1045 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Spatium-1-300x203.jpg\" alt=\"Spatium area\" width=\"300\" height=\"203\" data-imhwpb-built-photo-search=\"92|landscape\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-7 col-xs-12\">\r\n<h2 class=\"\" style=\"font-family: Chonburi; font-weight: 600; font-size: 25px; color: #000000; text-align: center;\" data-font-family=\"Chonburi\" data-font-weight=\"600\" data-font-style=\"\">General info</h2>\r\n<h4 class=\"\" style=\"font-family: Chonburi; font-weight: 600; color: #000000; text-align: center;\" data-font-family=\"Chonburi\" data-font-weight=\"600\" data-font-style=\"\">Other stuff that\'s good to know.</h4>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\">We have tried to provide all the information for your vacation, however feel free to contact us with any questions.</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\">The sun can be strong, so bring sunglasses and sun screen.&nbsp;&nbsp;</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\">There is free wi-fi and internet in each condo as well as in most places on the property.&nbsp; &nbsp;&nbsp;</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\">The resort has a filtration system so the water is safe to drink and fruits and vegetables are locally grown and safe to consume.&nbsp; &nbsp; &nbsp;</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\">The gym has state-of-the art equipment and is free to use. Please wear sneakers.&nbsp; &nbsp;&nbsp;</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\">The Spatium spa has free water areas that include a sauna, steam room, whirlpool, and cold plunge pool.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Info','','inherit','closed','closed','','101-revision-v1','','','2022-03-29 16:52:33','2022-03-29 16:52:33','',101,'https://estatesatnuevo.com/?p=260',0,'revision','',0),(137,1,'2022-03-23 19:08:41','0000-00-00 00:00:00','','Block Preview Page','','draft','closed','closed','','','','','2022-03-23 19:08:41','0000-00-00 00:00:00','',0,'https://estatesatnuevo.com/?page_id=137',0,'page','',0),(138,1,'2022-03-27 21:14:58','2022-03-27 21:14:58','<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\n</div>\n<div class=\"row\">\n<div class=\"col-md-8 col-sm-8 col-xs-12\">\n<p class=\"\">&nbsp;</p>\n<p class=\"\">Please use the contact form below, if you have any general questions or requests about our condos.&nbsp; We will try our best to respond back to you within 24 hours.</p>\n[weforms id=\"57\"]\n\n</div>\n<div class=\"col-md-4 col-sm-4 col-xs-12\">\n<p class=\"\"><img class=\"alignnone wp-image-139 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/64_0_360_300.58252427184_estates-4.jpg\" alt=\"\" width=\"360\" height=\"300\" data-imhwpb-built-photo-search=\"52|portrait\"></p>\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\n</div>\n</div>\n</div>','Contact','','inherit','closed','closed','','105-autosave-v1','','','2022-03-27 21:14:58','2022-03-27 21:14:58','',105,'https://estatesatnuevo.com/?p=138',0,'revision','',0),(139,1,'2022-03-23 19:11:02','2022-03-23 19:11:02','','estates 4','','inherit','open','closed','','estates-4','','','2022-03-23 19:11:02','2022-03-23 19:11:02','',105,'https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-4.jpg',0,'attachment','image/jpeg',0),(142,1,'2022-03-24 14:21:44','2022-03-24 14:21:44','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-8 col-sm-8 col-xs-12\">Please use the contact form below, if you have any general questions or requests about our condos.We will try our best to respond back to you within 24 hours.\r\n\r\n[weforms id=\"57\"]\r\n\r\n</div>\r\n<div class=\"col-md-4 col-sm-4 col-xs-12\">\r\n<p class=\"\"><img class=\"alignnone wp-image-139 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/64_0_360_300.58252427184_estates-4.jpg\" alt=\"\" width=\"360\" height=\"300\" data-imhwpb-built-photo-search=\"52|portrait\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Contact Us','','inherit','closed','closed','','105-revision-v1','','','2022-03-24 14:21:44','2022-03-24 14:21:44','',105,'https://estatesatnuevo.com/?p=142',0,'revision','',0),(140,1,'2022-03-23 19:18:30','2022-03-23 19:18:30','','estates2a','','inherit','open','closed','','estates2a','','','2022-03-23 19:18:30','2022-03-23 19:18:30','',105,'https://estatesatnuevo.com/wp-content/uploads/2022/03/estates2a.jpg',0,'attachment','image/jpeg',0),(141,1,'2022-03-23 19:19:26','2022-03-23 19:19:26','<iframe title=\"City at Night\" width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/5LxGNTTxPis?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>','','','publish','closed','closed','','1ad0fe5f0d83c4490e038e6c19bd9e3f','','','2022-03-23 19:19:26','2022-03-23 19:19:26','',0,'https://estatesatnuevo.com/1ad0fe5f0d83c4490e038e6c19bd9e3f/',0,'oembed_cache','',0),(143,1,'2022-11-18 15:30:13','2022-11-18 15:30:13','<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\n<div class=\"container\"></div>\n</div>\n<div class=\"boldgrid-section\" style=\"color: #ffffff; background-image: url(\'https://estatesatnuevo.com/wp-content/uploads/2022/04/estatescover.jpg\'); background-size: cover; background-position: 50% 100%;\" data-image-url=\"https://estatesatnuevo.com/wp-content/estatescover.jpg\">\n<div class=\"container-fluid\">\n<div class=\"row\" style=\"padding-top: 0px; background-image: url(\'https://estatescover.jpg\'); background-size: cover; background-position: 50% 100%; padding-bottom: 287px;\" data-image-url=\"https://estatescover.jpg/1500x919\">\n<div class=\"col-md-8 col-sm-10 col-xs-12 align-column-center col-lg-4\">\n<p class=\"mod-reset\">&nbsp;</p>\n\n<div class=\"\"></div>\n</div>\n<div class=\"col-md-2 col-sm-2 col-xs-12 col-lg-2\"></div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<h2 class=\"intro__title\" style=\"font-weight: 600; font-size: 36px; color: #ffffff;\" align=\"center\" data-font-weight=\"600\">Ultimate Luxury Meets Ultimate Nature</h2>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container-fluid\">\n<div class=\"row\" style=\"padding-top: 0px;\">\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\n<h3 class=\"\">INFORMATION</h3>\n<p class=\"\" style=\"padding: 0em;\">Named as one of the Top Hotels in Mexico and Top Hotels in the World by Travel + Leisure\'s World\'s Best Awards, Vidanta Nuevo Vallarta offers the ultimate resort vacation. This expansive destination has been carefully curated to provide a high-end experience full of options, including endless restaurants and lounges, three golf courses and a golf academy, a shopping plaza, and entertainment plaza, two indulgent spas, countless pools, and the all-new Beachland.</p>\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/info\">Learn More</a></p>\n\n</div>\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\n<h3 class=\"\">SUITES</h3>\n<p class=\"\">Discover the best that exclusive luxury vacationing has to offer at The Estates at Nuevo, a haven of high-end comfort sequestered in the sublime jungle landscape at Vidanta Nuevo Vallarta\'s 5-star resort.</p>\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-1-bedroom\">1 Bedroom</a></p>\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-2-bedroom\">2 Bedrooms</a></p>\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-3-bedroom\">3 Bedrooms</a></p>\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-4-bedroom\">4 Bedrooms</a></p>\n\n</div>\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\n<h3 class=\"\">ACTIVITIES</h3>\n<header class=\"intro__header\"></header>\n<div class=\"intro__lead\">\n<p class=\"boxcard__text\">It’s your vacation, so why not spend it doing the types of things you love to do? At Estates at Nuevo, you’ll find a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, all run by our amazing activities team, the Joy Squad.</p>\n<p class=\"boxcard__text\">Don’t forget to download the activities calendar and check out your resort hotel to see what activities are happening when!</p>\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/activities\">Learn more</a></p>\n\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container-fluid\">\n<div class=\"row\">\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\n<h3 class=\"\">property photos</h3>\n<p class=\"\" style=\"padding: 0em;\">At the Estates at Nuevo you can kick back in a remote jungle oasis by your accommodations or enjoy a gorgeous exclusive pool and lounge area in Beachland. Ride the exclusive gondola, play golf, luxuriate in a spa setting or relax by the pool in your private sanctuary.</p>\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/photos\">See More</a></p>\n\n</div>\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\n<h3 class=\"\">DINING</h3>\n<p class=\"\">With over 40 restaurants and lounges to choose from, Estates at Nuevo gives guests the opportunity to dine however they like. Options range from high-end eateries to casual restaurants to authentic Mexican spots, and even a gourmet market filled with offerings from all over the world. One thing is for sure—an amazing culinary experience is always just a meal away.</p>\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/dining\">Learn More</a></p>\n\n</div>\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\n<h3 class=\"\">BASK IN EXCEPTIONAL SERVICE</h3>\n<header class=\"intro__header\"></header>\n<div class=\"intro__lead\">\n<p class=\"intro__text\">Experience a higher level of service during your next vacation at Nuevo Vallarta. For the duration of your stay, you will have a personal butler and concierge to take care of everything needed to make your visit to paradise exceptional and unique. We want you to truly relax and cast your cares away, fully immerse yourself in our sumptuous accommodations and amenities, and focus on special moments with your loved ones—free of any burdens or distractions. &nbsp;</p><p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/dining\">Learn More</a></p>\n<p class=\"intro__text\">&nbsp;</p>\n\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container-fluid\">\n<div class=\"row\">\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\n</div>\n<div class=\"row\">\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 1em;\">\n<div class=\"\">\n<div><span class=\"\">We are owners at the Estates at Nuevo Luxury Condo Suites at the Vidanta Resorts.&nbsp; We also own at the Grand Luxxe Vacation resort.&nbsp; There are several of the Vidanta resorts in Mexico but we love the Nuevo Vallarta site because it has the most to offer.&nbsp; &nbsp;</span></div>\n<p class=\"\">We work with other owners so we have a larger selection of rentals available. Some have already been secured with the resort and are ready to book.&nbsp; If not, then we can check on availability for your specific time frame.</p>\n<p class=\"\">Always happy to answer any questions you may have about the resort and ourselves.&nbsp;&nbsp;</p>\n<p class=\"\">Thanks!&nbsp; Linda and Frank Helman</p>\n\n</div>\n</div>\n<div class=\"col-md-6 col-sm-12 col-xs-12 align-column-center col-lg-6\"><span class=\"\">From the moment you arrive, you will sense the difference with personalized attention 24/7 and the exclusivity in private beach and pool areas that are intimate and tranquil. At Vidanta’s Estates at Nuevo Vacation Mexican resort, we invite you to explore the gardens and landscaping, enjoy the ocean breeze, the unparalleled panoramic view of the Pacific Ocean in a magnificent sunset, and the natural biodiversity of the Bandera’s bay. It is the kind of extraordinary Mexican vacation experience you want, and the kind of service you deserve and expect.</span></div>\n</div>\n<div class=\"row\" style=\"padding: 0em 3em 90px;\">\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-110\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"k8m4Uj5JJAQ\" data-imhwpb-asset-id=\"1111013\"></p>\n\n</div>\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-111\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"r1tjlHBnHzY\" data-imhwpb-asset-id=\"1111014\"></p>\n\n</div>\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-112\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"l5gzNmXTzIg\" data-imhwpb-asset-id=\"1111015\"></p>\n\n</div>\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-113\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"\" data-imhwpb-asset-id=\"1111016\"></p>\n\n</div>\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-114\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"sBtqOe23bd0\" data-imhwpb-asset-id=\"1111017\"></p>\n\n</div>\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-115\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"B8He4PJkMLg\" data-imhwpb-asset-id=\"1111018\"></p>\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container-fluid\">\n<div class=\"row\">\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 2em;\">\n<div class=\"\">\n<h2 class=\"color3-color\">Our Location</h2>\n<p class=\"\">Because we put the customer first, we always have free transportation from the airport to the resort and to your living suite.&nbsp;</p>\n<p class=\"\">Review the room details and let us know how we can help you have the best vacation possible. <a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates/home/contact\">Contact Us</a></p>\n\n<h3 class=\"color3-color\" style=\"font-weight: 400; font-size: 25px;\" data-font-weight=\"400\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address&nbsp;</h3>\n<p class=\"color3-color\" style=\"font-weight: 400;\" data-font-weight=\"400\">Blvd Riviera Nayarit #254, 63735 Nuevo Vallarta, Nay., Mexico</p>\n\n</div>\n</div>\n<div class=\"col-md-6 col-sm-12 col-xs-12 bg-box-flush col-lg-6\">\n<p class=\"\"><img class=\"bg-img alignnone wp-image-1806 size-medium\" style=\"background-color: var(--color-neutral); color: var(--color-neutral-text-contrast);\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico.jpg-2-300x210.jpg\" alt=\"Resort area showing proximity to airport and Puerto Vallarta\" width=\"300\" height=\"210\"><img class=\"bg-img alignnone wp-image-1810 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico-1.jpg-2-1-300x239.jpg\" alt=\"Close up of resort area\" width=\"300\" height=\"239\"></p>\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\"></div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\"></div>\n</div>\n</div>\n</div>','Home','','inherit','closed','closed','','97-autosave-v1','','','2022-11-18 15:30:13','2022-11-18 15:30:13','',97,'https://estatesatnuevo.com/?p=143',0,'revision','',0),(343,1,'2022-04-09 21:15:27','2022-04-09 21:15:27','','estatescover','','inherit','open','closed','','estatescover-2','','','2022-04-09 21:28:55','2022-04-09 21:28:55','',97,'https://estatesatnuevo.com/wp-content/uploads/2022/04/estatescover-1.jpg',0,'attachment','image/jpeg',0),(144,1,'2022-03-25 19:57:28','2022-03-25 19:57:28','<div class=\"boldgrid-section\" style=\"color: #ffffff; background-image: linear-gradient(to left, rgba(26, 26, 26, 0.5), rgba(26, 26, 26, 0.5)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1NTLWQ0bk1Od2lRLzE5MjB4MTI4Mg_3D_3D-imhwpb-l6lnwj9f34ljpy1.jpg\'); background-size: cover; background-position: 50% 75%;\" data-imhwpb-asset-id=\"1111019\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1NTLWQ0bk1Od2lRLzE5MjB4MTI4Mg_3D_3D-imhwpb-l6lnwj9f34ljpy1.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-md-2 col-sm-2 col-xs-12\"></div>\r\n<div class=\"col-md-8 col-sm-10 col-xs-12\">\r\n<h2 class=\"h1 bg-text-fx bg-text-fx-closeheavy\" style=\"color: #ffffff; text-align: center;\">ESTATES AT NUEVO</h2>\r\n<h1 class=\"intro__title\" style=\"font-weight: 600; font-size: 32px; color: #ffffff;\" data-font-weight=\"600\">Ultimate Luxury Meets Ultimate Nature</h1>\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-12\"></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 25px 4em 0px;\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><b>4 Bedroom</b></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><b>3 Bedroom</b></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><b>2 Bedroom</b></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><b>1 Bedroom</b></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 60px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6 color4-background-color color-4-text-contrast bg-background-color\" style=\"padding: 3em 4em 4em;\">\r\n<h3 class=\"\">RESORT INFO</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>The Estates Luxxe Luxury Vacation Condos are the pinnacle of luxury and service within our Vidanta resort group. Nestled between the Pacific Ocean and the Sierra Madre Mountains, Vidanta Nuevo Vallarta is a Mexican tropical beach paradise vacation. Vidanta Nuevo Vallarta offers the ultimate Mexican resort vacation. As the biggest of the Vidanta destinations, it has been carefully cultivated to provide a high-end experience full of options: Grand Luxxe luxury vacation condos, 40 plus restaurants and lounges to try, three golf courses including the Norman Signature Course and The Jack Nicklaus Academy of Golf, a shopping plaza, two indulgent spas, beautiful beaches, and countless pools.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 3em 4em 4em;\">\r\n<h3 class=\"\">DINING</h3>\r\n<p class=\"\"><span>With over 40 restaurants and lounges to choose from, Vidanta Nuevo Vallarta gives guests the opportunity to dine however they like. Options range from high-end eateries to casual restaurants to authentic Mexican spots, and even a gourmet market filled with offerings from all over the world. One thing is for sure—an amazing culinary experience is always just a meal away at Vidanta Nuevo Vallarta.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color5-background-color color-5-text-contrast bg-background-color\" style=\"padding: 3em 4em 4em;\">\r\n<h3 class=\"\">ACTIVITIES</h3>\r\n<p class=\"\"><span>The Estates Vacation offers a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, a number of pool &amp; poolside activities including water polo, water volleyball, aqua aerobics, Paddle Board stretching class, Salsa lessons, Spanish class, arts &amp; crafts, Guacamole making class. Kids Club, Beach, Tours, Night time Shows</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding: 3em 4em 1em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">About Us</h2>\r\n<h3 class=\"\">WE CARE ABOUT YOUR VACATION</h3>\r\n<div class=\"row bg-editor-hr-wrap\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div></div>\r\n</div>\r\n</div>\r\n<div><span class=\"\">We are owners at the Estates at Nuevo Luxury Condo Suites at the Vidanta Resorts.&nbsp; We also own at the Grand Luxxe Vacation resort.&nbsp; There are several of the Vidanta resorts in Mexico but we love the Nuevo Vallarta site because it has the most to offer.&nbsp; &nbsp;</span></div>\r\n<p class=\"\">We work with other owners so we have a larger selection of rentals available. Some have already been secured with the resort and are ready to book.&nbsp; If not, then we can check on availability for your specific time frame.</p>\r\n<p class=\"\">Always happy to answer any questions you may have about the resort and ourselves.&nbsp;&nbsp;</p>\r\n<p class=\"\">Thanks!&nbsp; Linda and Frank Helman</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 0em 3em 90px;\">\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-110\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"k8m4Uj5JJAQ\" data-imhwpb-asset-id=\"1111013\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-111\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"r1tjlHBnHzY\" data-imhwpb-asset-id=\"1111014\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-112\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"l5gzNmXTzIg\" data-imhwpb-asset-id=\"1111015\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-113\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"\" data-imhwpb-asset-id=\"1111016\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-114\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"sBtqOe23bd0\" data-imhwpb-asset-id=\"1111017\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-115\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"B8He4PJkMLg\" data-imhwpb-asset-id=\"1111018\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\'); background-size: cover; background-position: 50% 58%;\" data-imhwpb-asset-id=\"1111020\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding: 75px 2em 4em;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-key\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Vacation Concierge</h3>\r\n<p class=\"\">While your seasonal home is vacant, we can find renters and provide a complete vacation concierge service from buying groceries to recommending local hot spots, enforcing safety and more.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-star-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Special Markets</h3>\r\n<p class=\"\">Do you have a home that will bring more on a specialty market? From working with homes on the National Register of Historic Places to highly specialized industrial sites, we’ll handle it.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\" style=\"padding: 3em 4em 4em;\">\r\n<h3 class=\"\">Our Mission</h3>\r\n<p class=\"\">At Bold Estate we put the customer’s needs before our own. We make your transaction, whether it’s buying, selling, renting, or investing, a truly extraordinary experience.</p>\r\n<p class=\"\">We work endlessly to hone skills, continuously striving for perfection, and sweating over every detail. Our commitment to making your realty experience the best imaginable means that we’ll always give you more.</p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6 color5-background-color color-5-text-contrast bg-background-color\" style=\"padding: 4em; background-image: url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL19hTjZ6SURSTGZRLzE5MjB4MTI3OA_3D_3D-imhwpb-mp3ssj59au1z9n4.jpg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1111021\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL19hTjZ6SURSTGZRLzE5MjB4MTI3OA_3D_3D-imhwpb-mp3ssj59au1z9n4.jpg\">\r\n<div class=\"\">\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12\" style=\"padding: 3em 4em 4em;\">\r\n<h3 class=\"\">Customer First</h3>\r\n<p class=\"\">We are committed to providing the absolute best quality to each and every one of our customers. We have continued to grow while staying true to our original mission — to give you, the customer, a winning service that you can rely on.</p>\r\n<p class=\"\">Our commitment to making your realty experience the best imaginable means that we’ll always give you more than the other guys. We put the customer first.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding: 3em 4em 2em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">Our Location</h2>\r\n<p class=\"\">Because we put the customer first, we always have free promotions that are charged at other realty agencies. Our commitment to making your realty experience the best imaginable means that we’ll always give you more than the other guys.</p>\r\n<p class=\"\">Stop in today for a free consultation! Let us show you how we can do more for you than anyone else.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More </a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 bg-box-flush\">\r\n<p class=\"boldgrid-google-maps\" style=\"margin: 0; line-height: 0;\"><iframe style=\"width: 100%;\" src=\"https://maps.google.com/maps?q=New+York%2C+NY&amp;t=m&amp;z=16&amp;output=embed\" width=\"1000\" height=\"500\" frameborder=\"0\"></iframe></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','97-revision-v1','','','2022-03-25 19:57:28','2022-03-25 19:57:28','',97,'https://estatesatnuevo.com/?p=144',0,'revision','',0),(145,1,'2022-03-25 20:00:23','2022-03-25 20:00:23','<div class=\"boldgrid-section\" style=\"color: #ffffff; background-image: linear-gradient(to left, rgba(26, 26, 26, 0.5), rgba(26, 26, 26, 0.5)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1NTLWQ0bk1Od2lRLzE5MjB4MTI4Mg_3D_3D-imhwpb-l6lnwj9f34ljpy1.jpg\'); background-size: cover; background-position: 50% 75%;\" data-imhwpb-asset-id=\"1111019\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1NTLWQ0bk1Od2lRLzE5MjB4MTI4Mg_3D_3D-imhwpb-l6lnwj9f34ljpy1.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-md-2 col-sm-2 col-xs-12\"></div>\r\n<div class=\"col-md-8 col-sm-10 col-xs-12\">\r\n<h2 class=\"h1 bg-text-fx bg-text-fx-closeheavy\" style=\"color: #ffffff; text-align: center;\">ESTATES AT NUEVO</h2>\r\n<h1 class=\"intro__title\" style=\"font-weight: 600; font-size: 32px; color: #ffffff;\" data-font-weight=\"600\">Ultimate Luxury Meets Ultimate Nature</h1>\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-12\"></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 25px 4em 0px;\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><b>4 Bedroom</b></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><b>3 Bedroom</b></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><b>2 Bedroom</b></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><b>1 Bedroom</b></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 60px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6 color4-background-color color-4-text-contrast bg-background-color\" style=\"padding: 3em 4em 4em;\">\r\n<h3 class=\"\">RESORT INFO</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>The Estates Luxxe Luxury Vacation Condos are the pinnacle of luxury and service within our Vidanta resort group. Nestled between the Pacific Ocean and the Sierra Madre Mountains, Vidanta Nuevo Vallarta is a Mexican tropical beach paradise vacation. Vidanta Nuevo Vallarta offers the ultimate Mexican resort vacation. As the biggest of the Vidanta destinations, it has been carefully cultivated to provide a high-end experience full of options: Grand Luxxe luxury vacation condos, 40 plus restaurants and lounges to try, three golf courses including the Norman Signature Course and The Jack Nicklaus Academy of Golf, a shopping plaza, two indulgent spas, beautiful beaches, and countless pools.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 3em 4em 4em;\">\r\n<h3 class=\"\">DINING</h3>\r\n<p class=\"\"><span>With over 40 restaurants and lounges to choose from, Vidanta Nuevo Vallarta gives guests the opportunity to dine however they like. Options range from high-end eateries to casual restaurants to authentic Mexican spots, and even a gourmet market filled with offerings from all over the world. One thing is for sure—an amazing culinary experience is always just a meal away at Vidanta Nuevo Vallarta.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color5-background-color color-5-text-contrast bg-background-color\" style=\"padding: 3em 4em 4em;\">\r\n<h3 class=\"\">ACTIVITIES</h3>\r\n<p class=\"\"><span>The Estates Vacation offers a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, a number of pool &amp; poolside activities including water polo, water volleyball, aqua aerobics, Paddle Board stretching class, Salsa lessons, Spanish class, arts &amp; crafts, Guacamole making class. Kids Club, Beach, Tours, Night time Shows</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding: 3em 4em 1em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">About Us</h2>\r\n<h3 class=\"\">WE CARE ABOUT YOUR VACATION</h3>\r\n<div><span class=\"\">We are owners at the Estates at Nuevo Luxury Condo Suites at the Vidanta Resorts.&nbsp; We also own at the Grand Luxxe Vacation resort.&nbsp; There are several of the Vidanta resorts in Mexico but we love the Nuevo Vallarta site because it has the most to offer.&nbsp; &nbsp;</span></div>\r\n<p class=\"\">We work with other owners so we have a larger selection of rentals available. Some have already been secured with the resort and are ready to book.&nbsp; If not, then we can check on availability for your specific time frame.</p>\r\n<p class=\"\">Always happy to answer any questions you may have about the resort and ourselves.&nbsp;&nbsp;</p>\r\n<p class=\"\">Thanks!&nbsp; Linda and Frank Helman</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 align-column-center\"><span class=\"\">From the moment you arrive, you will sense the difference with personalized attention 24/7 and the exclusivity in private beach and pool areas that are intimate and tranquil. At Vidanta’s Estates at Nuevo Vacation Mexican resort, we invite you to explore the gardens and landscaping, enjoy the ocean breeze, the unparalleled panoramic view of the Pacific Ocean in a magnificent sunset, and the natural biodiversity of the Bandera’s bay. It is the kind of extraordinary Mexican vacation experience you want, and the kind of service you deserve and expect.</span></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 0em 3em 90px;\">\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-110\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"k8m4Uj5JJAQ\" data-imhwpb-asset-id=\"1111013\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-111\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"r1tjlHBnHzY\" data-imhwpb-asset-id=\"1111014\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-112\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"l5gzNmXTzIg\" data-imhwpb-asset-id=\"1111015\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-113\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"\" data-imhwpb-asset-id=\"1111016\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-114\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"sBtqOe23bd0\" data-imhwpb-asset-id=\"1111017\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-115\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"B8He4PJkMLg\" data-imhwpb-asset-id=\"1111018\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\'); background-size: cover; background-position: 50% 58%;\" data-imhwpb-asset-id=\"1111020\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding: 75px 2em 4em;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-key\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Vacation Concierge</h3>\r\n<p class=\"\">While your seasonal home is vacant, we can find renters and provide a complete vacation concierge service from buying groceries to recommending local hot spots, enforcing safety and more.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-star-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Special Markets</h3>\r\n<p class=\"\">Do you have a home that will bring more on a specialty market? From working with homes on the National Register of Historic Places to highly specialized industrial sites, we’ll handle it.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\" style=\"padding: 3em 4em 4em;\">\r\n<h3 class=\"\">Our Mission</h3>\r\n<p class=\"\">At Bold Estate we put the customer’s needs before our own. We make your transaction, whether it’s buying, selling, renting, or investing, a truly extraordinary experience.</p>\r\n<p class=\"\">We work endlessly to hone skills, continuously striving for perfection, and sweating over every detail. Our commitment to making your realty experience the best imaginable means that we’ll always give you more.</p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6 color5-background-color color-5-text-contrast bg-background-color\" style=\"padding: 4em; background-image: url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL19hTjZ6SURSTGZRLzE5MjB4MTI3OA_3D_3D-imhwpb-mp3ssj59au1z9n4.jpg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1111021\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL19hTjZ6SURSTGZRLzE5MjB4MTI3OA_3D_3D-imhwpb-mp3ssj59au1z9n4.jpg\">\r\n<div class=\"\">\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12\" style=\"padding: 3em 4em 4em;\">\r\n<h3 class=\"\">Customer First</h3>\r\n<p class=\"\">We are committed to providing the absolute best quality to each and every one of our customers. We have continued to grow while staying true to our original mission — to give you, the customer, a winning service that you can rely on.</p>\r\n<p class=\"\">Our commitment to making your realty experience the best imaginable means that we’ll always give you more than the other guys. We put the customer first.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding: 3em 4em 2em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">Our Location</h2>\r\n<p class=\"\">Because we put the customer first, we always have free promotions that are charged at other realty agencies. Our commitment to making your realty experience the best imaginable means that we’ll always give you more than the other guys.</p>\r\n<p class=\"\">Stop in today for a free consultation! Let us show you how we can do more for you than anyone else.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More </a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 bg-box-flush\">\r\n<p class=\"boldgrid-google-maps\" style=\"margin: 0; line-height: 0;\"><iframe style=\"width: 100%;\" src=\"https://maps.google.com/maps?q=New+York%2C+NY&amp;t=m&amp;z=16&amp;output=embed\" width=\"1000\" height=\"500\" frameborder=\"0\"></iframe></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','97-revision-v1','','','2022-03-25 20:00:23','2022-03-25 20:00:23','',97,'https://estatesatnuevo.com/?p=145',0,'revision','',0),(146,1,'2022-03-25 20:01:13','2022-03-25 20:01:13','<div class=\"boldgrid-section\" style=\"color: #ffffff; background-image: linear-gradient(to left, rgba(26, 26, 26, 0.5), rgba(26, 26, 26, 0.5)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1NTLWQ0bk1Od2lRLzE5MjB4MTI4Mg_3D_3D-imhwpb-l6lnwj9f34ljpy1.jpg\'); background-size: cover; background-position: 50% 75%;\" data-imhwpb-asset-id=\"1111019\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1NTLWQ0bk1Od2lRLzE5MjB4MTI4Mg_3D_3D-imhwpb-l6lnwj9f34ljpy1.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-md-2 col-sm-2 col-xs-12\"></div>\r\n<div class=\"col-md-8 col-sm-10 col-xs-12\">\r\n<h2 class=\"h1 bg-text-fx bg-text-fx-closeheavy\" style=\"color: #ffffff; text-align: center;\">ESTATES AT NUEVO</h2>\r\n<h1 class=\"intro__title\" style=\"font-weight: 600; font-size: 32px; color: #ffffff;\" data-font-weight=\"600\">Ultimate Luxury Meets Ultimate Nature</h1>\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-12\"></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 25px 4em 0px;\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><b>4 Bedroom</b></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><b>3 Bedroom</b></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><b>2 Bedroom</b></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><b>1 Bedroom</b></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 60px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6 color4-background-color color-4-text-contrast bg-background-color\" style=\"padding: 3em 4em 4em;\">\r\n<h3 class=\"\">RESORT INFO</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>The Estates Luxxe Luxury Vacation Condos are the pinnacle of luxury and service within our Vidanta resort group. Nestled between the Pacific Ocean and the Sierra Madre Mountains, Vidanta Nuevo Vallarta is a Mexican tropical beach paradise vacation. Vidanta Nuevo Vallarta offers the ultimate Mexican resort vacation. As the biggest of the Vidanta destinations, it has been carefully cultivated to provide a high-end experience full of options: Grand Luxxe luxury vacation condos, 40 plus restaurants and lounges to try, three golf courses including the Norman Signature Course and The Jack Nicklaus Academy of Golf, a shopping plaza, two indulgent spas, beautiful beaches, and countless pools.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 3em 4em 4em;\">\r\n<h3 class=\"\">DINING</h3>\r\n<p class=\"\"><span>With over 40 restaurants and lounges to choose from, Vidanta Nuevo Vallarta gives guests the opportunity to dine however they like. Options range from high-end eateries to casual restaurants to authentic Mexican spots, and even a gourmet market filled with offerings from all over the world. One thing is for sure—an amazing culinary experience is always just a meal away at Vidanta Nuevo Vallarta.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color5-background-color color-5-text-contrast bg-background-color\" style=\"padding: 3em 4em 4em;\">\r\n<h3 class=\"\">ACTIVITIES</h3>\r\n<p class=\"\"><span>The Estates Vacation offers a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, a number of pool &amp; poolside activities including water polo, water volleyball, aqua aerobics, Paddle Board stretching class, Salsa lessons, Spanish class, arts &amp; crafts, Guacamole making class. Kids Club, Beach, Tours, Night time Shows</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding: 3em 4em 1em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">About Us</h2>\r\n<h3 class=\"\">WE CARE ABOUT YOUR VACATION</h3>\r\n<div><span class=\"\">We are owners at the Estates at Nuevo Luxury Condo Suites at the Vidanta Resorts.&nbsp; We also own at the Grand Luxxe Vacation resort.&nbsp; There are several of the Vidanta resorts in Mexico but we love the Nuevo Vallarta site because it has the most to offer.&nbsp; &nbsp;</span></div>\r\n<p class=\"\">We work with other owners so we have a larger selection of rentals available. Some have already been secured with the resort and are ready to book.&nbsp; If not, then we can check on availability for your specific time frame.</p>\r\n<p class=\"\">Always happy to answer any questions you may have about the resort and ourselves.&nbsp;&nbsp;</p>\r\n<p class=\"\">Thanks!&nbsp; Linda and Frank Helman</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 align-column-center\"><span class=\"\">From the moment you arrive, you will sense the difference with personalized attention 24/7 and the exclusivity in private beach and pool areas that are intimate and tranquil. At Vidanta’s Estates at Nuevo Vacation Mexican resort, we invite you to explore the gardens and landscaping, enjoy the ocean breeze, the unparalleled panoramic view of the Pacific Ocean in a magnificent sunset, and the natural biodiversity of the Bandera’s bay. It is the kind of extraordinary Mexican vacation experience you want, and the kind of service you deserve and expect.</span></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 0em 3em 90px;\">\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-110\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"k8m4Uj5JJAQ\" data-imhwpb-asset-id=\"1111013\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-111\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"r1tjlHBnHzY\" data-imhwpb-asset-id=\"1111014\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-112\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"l5gzNmXTzIg\" data-imhwpb-asset-id=\"1111015\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-113\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"\" data-imhwpb-asset-id=\"1111016\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-114\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"sBtqOe23bd0\" data-imhwpb-asset-id=\"1111017\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-115\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"B8He4PJkMLg\" data-imhwpb-asset-id=\"1111018\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\'); background-size: cover; background-position: 50% 58%;\" data-imhwpb-asset-id=\"1111020\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding: 75px 2em 4em;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-key\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Vacation Concierge</h3>\r\n<p class=\"\">While your seasonal home is vacant, we can find renters and provide a complete vacation concierge service from buying groceries to recommending local hot spots, enforcing safety and more.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-star-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Special Markets</h3>\r\n<p class=\"\">Do you have a home that will bring more on a specialty market? From working with homes on the National Register of Historic Places to highly specialized industrial sites, we’ll handle it.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\" style=\"padding: 3em 4em 4em;\">\r\n<h3 class=\"\">Our Mission</h3>\r\n<p class=\"\">At Bold Estate we put the customer’s needs before our own. We make your transaction, whether it’s buying, selling, renting, or investing, a truly extraordinary experience.</p>\r\n<p class=\"\">We work endlessly to hone skills, continuously striving for perfection, and sweating over every detail. Our commitment to making your realty experience the best imaginable means that we’ll always give you more.</p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6 color5-background-color color-5-text-contrast bg-background-color\" style=\"padding: 4em; background-image: url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL19hTjZ6SURSTGZRLzE5MjB4MTI3OA_3D_3D-imhwpb-mp3ssj59au1z9n4.jpg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1111021\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL19hTjZ6SURSTGZRLzE5MjB4MTI3OA_3D_3D-imhwpb-mp3ssj59au1z9n4.jpg\">\r\n<div class=\"\">\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12\" style=\"padding: 3em 4em 4em;\">\r\n<h3 class=\"\">Customer First</h3>\r\n<p class=\"\">We are committed to providing the absolute best quality to each and every one of our customers. We have continued to grow while staying true to our original mission — to give you, the customer, a winning service that you can rely on.</p>\r\n<p class=\"\">Our commitment to making your realty experience the best imaginable means that we’ll always give you more than the other guys. We put the customer first.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding: 3em 4em 2em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">Our Location</h2>\r\n<p class=\"\">Because we put the customer first, we always have free promotions that are charged at other realty agencies. Our commitment to making your realty experience the best imaginable means that we’ll always give you more than the other guys.</p>\r\n<p class=\"\">Stop in today for a free consultation! Let us show you how we can do more for you than anyone else.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More </a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 bg-box-flush\">\r\n<p class=\"boldgrid-google-maps\" style=\"margin: 0; line-height: 0;\"><iframe style=\"width: 100%;\" src=\"https://maps.google.com/maps?q=New+York%2C+NY&amp;t=m&amp;z=16&amp;output=embed\" width=\"1000\" height=\"500\" frameborder=\"0\"></iframe></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','97-revision-v1','','','2022-03-25 20:01:13','2022-03-25 20:01:13','',97,'https://estatesatnuevo.com/?p=146',0,'revision','',0),(148,1,'2022-03-25 20:54:10','2022-03-25 20:54:10','<div class=\"boldgrid-section\" style=\"color: #ffffff; background-image: linear-gradient(to left, rgba(26, 26, 26, 0.5), rgba(26, 26, 26, 0.5)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1NTLWQ0bk1Od2lRLzE5MjB4MTI4Mg_3D_3D-imhwpb-l6lnwj9f34ljpy1.jpg\'); background-size: cover; background-position: 50% 75%;\" data-imhwpb-asset-id=\"1111019\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1NTLWQ0bk1Od2lRLzE5MjB4MTI4Mg_3D_3D-imhwpb-l6lnwj9f34ljpy1.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-md-2 col-sm-2 col-xs-12\"></div>\r\n<div class=\"col-md-8 col-sm-10 col-xs-12\">\r\n<h2 class=\"h1 bg-text-fx bg-text-fx-closeheavy\" style=\"color: #ffffff; text-align: center;\">ESTATES AT NUEVO</h2>\r\n<h1 class=\"intro__title\" style=\"font-weight: 600; font-size: 32px; color: #ffffff;\" data-font-weight=\"600\">Ultimate Luxury Meets Ultimate Nature</h1>\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-12\"></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 25px 4em 0px;\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><b>4 Bedroom</b></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><b>3 Bedroom</b></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><b>2 Bedroom</b></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><b>1 Bedroom</b></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 60px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6 color4-background-color color-4-text-contrast bg-background-color\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">RESORT INFO</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>The Estates at Nuevo&nbsp; Luxury Vacation Condos are the pinnacle of luxury and service within our Vidanta resort group. Nestled between the Pacific Ocean and the Sierra Madre Mountains, Estates at Nuevo is a Mexican tropical beach paradise vacation that offers the ultimate Mexican resort vacation. As the biggest of the Vidanta destinations, it has been carefully cultivated to provide a high-end experience full of options:&nbsp; luxury vacation condos,&nbsp; restaurants and lounges&nbsp; golf courses, a shopping plaza, two indulgent spas, beautiful beaches, and countless pools.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">DINING</h3>\r\n<p class=\"\"><span>With over 40 restaurants and lounges to choose from, Estates at Nuevo gives guests the opportunity to dine however they like. Options range from high-end eateries to casual restaurants to authentic Mexican spots, and even a gourmet market filled with offerings from all over the world. One thing is for sure—an amazing culinary experience is always just a meal away.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color5-background-color color-5-text-contrast bg-background-color\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">ACTIVITIES</h3>\r\n<p class=\"\"><span>The Estates Vacation offers a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, a number of pool &amp; poolside activities including water polo, water volleyball, aqua aerobics, Paddle Board stretching class, Salsa lessons, Spanish class, arts &amp; crafts, Guacamole making class. Kids Club, Beach, Tours, and Night time Shows.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding: 3em 4em 1em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">About Us</h2>\r\n<h3 class=\"\">WE CARE ABOUT YOUR VACATION</h3>\r\n<div><span class=\"\">We are owners at the Estates at Nuevo Luxury Condo Suites at the Vidanta Resorts.&nbsp; We also own at the Grand Luxxe Vacation resort.&nbsp; There are several of the Vidanta resorts in Mexico but we love the Nuevo Vallarta site because it has the most to offer.&nbsp; &nbsp;</span></div>\r\n<p class=\"\">We work with other owners so we have a larger selection of rentals available. Some have already been secured with the resort and are ready to book.&nbsp; If not, then we can check on availability for your specific time frame.</p>\r\n<p class=\"\">Always happy to answer any questions you may have about the resort and ourselves.&nbsp;&nbsp;</p>\r\n<p class=\"\">Thanks!&nbsp; Linda and Frank Helman</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 align-column-center\"><span class=\"\">From the moment you arrive, you will sense the difference with personalized attention 24/7 and the exclusivity in private beach and pool areas that are intimate and tranquil. At Vidanta’s Estates at Nuevo Vacation Mexican resort, we invite you to explore the gardens and landscaping, enjoy the ocean breeze, the unparalleled panoramic view of the Pacific Ocean in a magnificent sunset, and the natural biodiversity of the Bandera’s bay. It is the kind of extraordinary Mexican vacation experience you want, and the kind of service you deserve and expect.</span></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 0em 3em 90px;\">\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-110\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"k8m4Uj5JJAQ\" data-imhwpb-asset-id=\"1111013\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-111\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"r1tjlHBnHzY\" data-imhwpb-asset-id=\"1111014\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-112\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"l5gzNmXTzIg\" data-imhwpb-asset-id=\"1111015\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-113\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"\" data-imhwpb-asset-id=\"1111016\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-114\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"sBtqOe23bd0\" data-imhwpb-asset-id=\"1111017\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-115\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"B8He4PJkMLg\" data-imhwpb-asset-id=\"1111018\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\'); background-size: cover; background-position: 50% 58%;\" data-imhwpb-asset-id=\"1111020\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding: 75px 2em 4em;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-key\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Vacation GOLF</h3>\r\n<p class=\"H1\" data-font-weight=\"600\">Two Designer Courses, a Par 3 Lighted Course, and a State-of-the Art Instructional Academy.&nbsp; Estates at Nuevo boasts the most comprehensive golf offerings in the area. PGA tournament in 2023 here!</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-star-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Special NEEDS</h3>\r\n<p class=\"\">Do you have a special need? Wheelchairs are available for rent and special golf carts will take you around the property.&nbsp; Need a baby crib or child care? We can handle that too.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container-fluid\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding: 3em 4em 2em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">Our Location</h2>\r\n<p class=\"\">Because we put the customer first, we always have free transportation from the airport to the resort and to your living suite.&nbsp;</p>\r\n<p class=\"\">Review the room details and let us know how we can help you have the best vacation possible.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More </a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 bg-box-flush\">\r\n\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','97-revision-v1','','','2022-03-25 20:54:10','2022-03-25 20:54:10','',97,'https://estatesatnuevo.com/?p=148',0,'revision','',0),(147,1,'2022-03-25 20:33:20','2022-03-25 20:33:20','<div class=\"boldgrid-section\" style=\"color: #ffffff; background-image: linear-gradient(to left, rgba(26, 26, 26, 0.5), rgba(26, 26, 26, 0.5)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1NTLWQ0bk1Od2lRLzE5MjB4MTI4Mg_3D_3D-imhwpb-l6lnwj9f34ljpy1.jpg\'); background-size: cover; background-position: 50% 75%;\" data-imhwpb-asset-id=\"1111019\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1NTLWQ0bk1Od2lRLzE5MjB4MTI4Mg_3D_3D-imhwpb-l6lnwj9f34ljpy1.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-md-2 col-sm-2 col-xs-12\"></div>\r\n<div class=\"col-md-8 col-sm-10 col-xs-12\">\r\n<h2 class=\"h1 bg-text-fx bg-text-fx-closeheavy\" style=\"color: #ffffff; text-align: center;\">ESTATES AT NUEVO</h2>\r\n<h1 class=\"intro__title\" style=\"font-weight: 600; font-size: 32px; color: #ffffff;\" data-font-weight=\"600\">Ultimate Luxury Meets Ultimate Nature</h1>\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-12\"></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 25px 4em 0px;\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><b>4 Bedroom</b></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><b>3 Bedroom</b></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><b>2 Bedroom</b></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><b>1 Bedroom</b></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 60px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6 color4-background-color color-4-text-contrast bg-background-color\" style=\"padding: 3em 4em 4em;\">\r\n<h3 class=\"\">RESORT INFO</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>The Estates Luxxe Luxury Vacation Condos are the pinnacle of luxury and service within our Vidanta resort group. Nestled between the Pacific Ocean and the Sierra Madre Mountains, Vidanta Nuevo Vallarta is a Mexican tropical beach paradise vacation. Vidanta Nuevo Vallarta offers the ultimate Mexican resort vacation. As the biggest of the Vidanta destinations, it has been carefully cultivated to provide a high-end experience full of options: Grand Luxxe luxury vacation condos, 40 plus restaurants and lounges to try, three golf courses including the Norman Signature Course and The Jack Nicklaus Academy of Golf, a shopping plaza, two indulgent spas, beautiful beaches, and countless pools.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 3em 4em 4em;\">\r\n<h3 class=\"\">DINING</h3>\r\n<p class=\"\"><span>With over 40 restaurants and lounges to choose from, Vidanta Nuevo Vallarta gives guests the opportunity to dine however they like. Options range from high-end eateries to casual restaurants to authentic Mexican spots, and even a gourmet market filled with offerings from all over the world. One thing is for sure—an amazing culinary experience is always just a meal away at Vidanta Nuevo Vallarta.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color5-background-color color-5-text-contrast bg-background-color\" style=\"padding: 3em 4em 4em;\">\r\n<h3 class=\"\">ACTIVITIES</h3>\r\n<p class=\"\"><span>The Estates Vacation offers a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, a number of pool &amp; poolside activities including water polo, water volleyball, aqua aerobics, Paddle Board stretching class, Salsa lessons, Spanish class, arts &amp; crafts, Guacamole making class. Kids Club, Beach, Tours, Night time Shows</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding: 3em 4em 1em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">About Us</h2>\r\n<h3 class=\"\">WE CARE ABOUT YOUR VACATION</h3>\r\n<div><span class=\"\">We are owners at the Estates at Nuevo Luxury Condo Suites at the Vidanta Resorts.&nbsp; We also own at the Grand Luxxe Vacation resort.&nbsp; There are several of the Vidanta resorts in Mexico but we love the Nuevo Vallarta site because it has the most to offer.&nbsp; &nbsp;</span></div>\r\n<p class=\"\">We work with other owners so we have a larger selection of rentals available. Some have already been secured with the resort and are ready to book.&nbsp; If not, then we can check on availability for your specific time frame.</p>\r\n<p class=\"\">Always happy to answer any questions you may have about the resort and ourselves.&nbsp;&nbsp;</p>\r\n<p class=\"\">Thanks!&nbsp; Linda and Frank Helman</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 align-column-center\"><span class=\"\">From the moment you arrive, you will sense the difference with personalized attention 24/7 and the exclusivity in private beach and pool areas that are intimate and tranquil. At Vidanta’s Estates at Nuevo Vacation Mexican resort, we invite you to explore the gardens and landscaping, enjoy the ocean breeze, the unparalleled panoramic view of the Pacific Ocean in a magnificent sunset, and the natural biodiversity of the Bandera’s bay. It is the kind of extraordinary Mexican vacation experience you want, and the kind of service you deserve and expect.</span></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 0em 3em 90px;\">\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-110\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"k8m4Uj5JJAQ\" data-imhwpb-asset-id=\"1111013\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-111\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"r1tjlHBnHzY\" data-imhwpb-asset-id=\"1111014\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-112\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"l5gzNmXTzIg\" data-imhwpb-asset-id=\"1111015\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-113\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"\" data-imhwpb-asset-id=\"1111016\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-114\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"sBtqOe23bd0\" data-imhwpb-asset-id=\"1111017\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-115\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"B8He4PJkMLg\" data-imhwpb-asset-id=\"1111018\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\'); background-size: cover; background-position: 50% 58%;\" data-imhwpb-asset-id=\"1111020\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding: 75px 2em 4em;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-key\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Vacation GOLF</h3>\r\n<p class=\"H1\" data-font-weight=\"600\">Two Designer Courses, a Par 3 Lighted Course, and a State-of-the Art Instructional Academy.&nbsp; Estates at Nuevo boasts the most comprehensive golf offerings in the area. PGA tournament in 2023 here!</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-star-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Special NEEDS</h3>\r\n<p class=\"\">Do you have a special need? Wheelchairs are available for rent and special golf carts will take you around the property.&nbsp; Need a baby crib or child care? We can handle that too.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\" style=\"padding: 3em 4em 4em;\">\r\n<h3 class=\"\">Our Mission</h3>\r\n<p class=\"\">At Bold Estate we put the customer’s needs before our own. We make your transaction, whether it’s buying, selling, renting, or investing, a truly extraordinary experience.</p>\r\n<p class=\"\">We work endlessly to hone skills, continuously striving for perfection, and sweating over every detail. Our commitment to making your realty experience the best imaginable means that we’ll always give you more.</p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6 color5-background-color color-5-text-contrast bg-background-color\" style=\"padding: 4em; background-image: url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL19hTjZ6SURSTGZRLzE5MjB4MTI3OA_3D_3D-imhwpb-mp3ssj59au1z9n4.jpg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1111021\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL19hTjZ6SURSTGZRLzE5MjB4MTI3OA_3D_3D-imhwpb-mp3ssj59au1z9n4.jpg\">\r\n<div class=\"\">\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12\" style=\"padding: 3em 4em 4em;\">\r\n<h3 class=\"\">Customer First</h3>\r\n<p class=\"\">We are committed to providing the absolute best quality to each and every one of our customers. We have continued to grow while staying true to our original mission — to give you, the customer, a winning service that you can rely on.</p>\r\n<p class=\"\">Our commitment to making your realty experience the best imaginable means that we’ll always give you more than the other guys. We put the customer first.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding: 3em 4em 2em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">Our Location</h2>\r\n<p class=\"\">Because we put the customer first, we always have free transportation from the airport to the resort and to your living suite.&nbsp;</p>\r\n<p class=\"\">Review the room details and let us know how we can help you have the best vacation possible.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More </a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 bg-box-flush\">\r\n<p class=\"boldgrid-google-maps\" style=\"margin: 0; line-height: 0;\"><iframe style=\"width: 100%;\" src=\"https://maps.google.com/maps?q=New+York%2C+NY&amp;t=m&amp;z=16&amp;output=embed\" width=\"1000\" height=\"500\" frameborder=\"0\"></iframe></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','97-revision-v1','','','2022-03-25 20:33:20','2022-03-25 20:33:20','',97,'https://estatesatnuevo.com/?p=147',0,'revision','',0),(149,1,'2022-03-25 20:56:13','2022-03-25 20:56:13','','Estates at Nuevo','','inherit','open','closed','','vidanta-nuevovallarta-ataglance','','','2022-03-25 20:56:45','2022-03-25 20:56:45','',97,'https://estatesatnuevo.com/wp-content/uploads/2022/03/vidanta-nuevovallarta-ataglance.jpg',0,'attachment','image/jpeg',0),(152,1,'2023-06-21 18:58:39','2023-06-21 18:58:39','<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-7 col-xs-12 col-sm-12 col-lg-7\">\n<h3 class=\"color3-color\" style=\"font-family: Chonburi; font-weight: 600; font-style: normal; font-size: 25px; text-align: center;\" data-font-family=\"Chonburi\" data-font-weight=\"600\" data-font-style=\"normal\">MONEY and CREDIT CARDS</h3>\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">The Estates at Nuevo is a cashless resort meaning you do not use cash on the property. You provide a credit card when you check-in and sign the bills with your name and room number. Each person in the condo is required to sign in and you will be asked to sign on a electronic signature pad so your signature can be checked when you sign your bills. You settle your account when you leave.&nbsp;</p>\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">The money in Mexico is pesos and the sign is a $ sign. When you are looking at prices, if it\'s $240, it\'s really about $13.50 USD depending on the current currency exchange.&nbsp;&nbsp;</p>\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">The resort and local banks will require your passport to convert currency should you require it.&nbsp;</p>\n\n</div>\n<div class=\"col-md-5 col-xs-12 col-sm-12 col-lg-5\">\n<p class=\"mod-img\"><img class=\"alignnone wp-image-1399 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/money-300x158.jpg\" alt=\"Money in different currencies\" width=\"300\" height=\"158\" data-imhwpb-built-photo-search=\"93|landscape\"></p>\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-6 col-sm-5 text-center col-xs-12 col-lg-6\">\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-1834\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/pvairport-300x199.jpg\" alt=\"Puerto Vallarta Airport\" width=\"434\" height=\"288\"></p>\n<p class=\"mod-img\">&nbsp;</p>\n\n</div>\n<div class=\"col-md-6 col-sm-7 col-xs-12 col-lg-6\">\n<h2 class=\"color3-color\" style=\"font-family: Chonburi; font-weight: 600; font-size: 25px; text-align: center;\" data-font-family=\"Chonburi\" data-font-weight=\"600\" data-font-style=\"\">At the Airport</h2>\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">You need to have your custom forms completed before entering immigration area.&nbsp; If possible, do this on the plane before you disembark.&nbsp; Once you get through immigration, walk to your baggage and then to customs where you will push a button to register green or red. If red, they will inspect your luggage, if green, walk on through to locate the Gapsa taxi driver hostess with your name on their list.&nbsp; Be sure you follow the instructions that will be sent to you.&nbsp;</p>\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-6 col-sm-5 text-center col-xs-12 col-lg-6\" style=\"padding-right: 0em; padding-left: 0em;\">\n<p class=\"color3-color\" style=\"font-family: Chonburi; font-weight: 600; font-size: 25px; text-align: center;\" data-font-family=\"Chonburi\" data-font-weight=\"600\" data-font-style=\"\">AMENITIES IN YOUR CONDO</p>\n<p class=\"color3-color\" style=\"margin-left: 32px; margin-right: 18px; text-align: left; font-weight: 600;\" data-font-weight=\"600\">Each condo has a kitchen area with refrigerator, coffee pot, blender, dishes, pots and pans, cutlery, etc.&nbsp; And each bedroom has a robe and free slippers, luxury toiletries, and a hair dryer as well as a flat screen television and a desk with chair,&nbsp; The market has a selection of groceries for all your needs.</p>\n\n</div>\n<div class=\"col-md-6 col-sm-7 col-xs-12 col-lg-6\">\n<h4 class=\"color3-color\" style=\"font-family: Chonburi; font-weight: 600; font-size: 25px; text-align: center;\" data-font-family=\"Chonburi\" data-font-weight=\"600\" data-font-style=\"\">DAILY MAID SERVICE</h4>\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">Daily maid service is included. They make beds, dust, generally cleaning but not dishes.&nbsp; They work in shifts so if you intend to leave a tip, do it daily rather than at the end of your stay.&nbsp; There is also a nightly turn-down service with chocolates by your bed.&nbsp;&nbsp;</p>\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-6 col-sm-5 text-center col-xs-12 col-lg-6\">\n<p class=\"mod-img\"><img class=\"alignnone wp-image-299 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/30_0_300_203.15789473684_vidanta-nuevovallarta-ataglance-gallery-15.jpg\" alt=\"\" width=\"300\" height=\"203\" data-imhwpb-built-photo-search=\"92|landscape\"></p>\n<p class=\"mod-img\"><img class=\"alignnone wp-image-1045 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Spatium-1-300x203.jpg\" alt=\"Spatium area\" width=\"300\" height=\"203\" data-imhwpb-built-photo-search=\"92|landscape\"></p>\n\n</div>\n<div class=\"col-md-6 col-sm-7 col-xs-12 col-lg-6\">\n<h2 class=\"color3-color\" style=\"font-family: Chonburi; font-weight: 600; font-size: 25px; text-align: center;\" data-font-family=\"Chonburi\" data-font-weight=\"600\" data-font-style=\"\">General info</h2>\n<h4 class=\"color3-color\" style=\"font-family: Chonburi; font-weight: 600; text-align: center;\" data-font-family=\"Chonburi\" data-font-weight=\"600\" data-font-style=\"\">Other stuff that\'s good to know.</h4>\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">We have tried to provide all the information for your vacation, however feel free to contact us with any questions.</p>\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">The sun can be strong, so bring sunglasses and sun screen.&nbsp;&nbsp;</p>\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">There is free wi-fi and internet in each condo as well as in most places on the property.&nbsp; &nbsp;&nbsp;</p>\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">The resort has a filtration system so the water is safe to drink and fruits and vegetables are locally grown and safe to consume.&nbsp; &nbsp; &nbsp;</p>\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">The gym has state-of-the art equipment and is free to use. Please wear sneakers.&nbsp; &nbsp;&nbsp;</p>\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">The Spatium spa has free water areas that include a sauna, steam room, whirlpool, and cold plunge pool.</p>\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\n</div>\n</div>\n</div>','Info','','inherit','closed','closed','','101-autosave-v1','','','2023-06-21 18:58:39','2023-06-21 18:58:39','',101,'https://estatesatnuevo.com/?p=152',0,'revision','',0),(196,1,'2022-03-26 19:39:09','2022-03-26 19:39:09','','estates2a','','inherit','open','closed','','estates2a-2','','','2022-03-26 19:39:09','2022-03-26 19:39:09','',173,'https://estatesatnuevo.com/wp-content/uploads/2022/03/estates2a-1.jpg',0,'attachment','image/jpeg',0),(197,1,'2022-03-26 19:39:11','2022-03-26 19:39:11','','estates2bed','','inherit','open','closed','','estates2bed','','','2022-03-26 19:39:11','2022-03-26 19:39:11','',173,'https://estatesatnuevo.com/wp-content/uploads/2022/03/estates2bed.jpg',0,'attachment','image/jpeg',0),(198,1,'2022-03-26 19:39:13','2022-03-26 19:39:13','','estates2bedbath','','inherit','open','closed','','estates2bedbath','','','2022-03-26 19:39:13','2022-03-26 19:39:13','',173,'https://estatesatnuevo.com/wp-content/uploads/2022/03/estates2bedbath.jpg',0,'attachment','image/jpeg',0),(199,1,'2022-03-26 19:39:14','2022-03-26 19:39:14','','estates2beds','','inherit','open','closed','','estates2beds','','','2022-03-26 19:39:14','2022-03-26 19:39:14','',173,'https://estatesatnuevo.com/wp-content/uploads/2022/03/estates2beds.jpg',0,'attachment','image/jpeg',0),(200,1,'2022-03-26 19:39:15','2022-03-26 19:39:15','','estates2deck','','inherit','open','closed','','estates2deck','','','2022-03-26 19:39:15','2022-03-26 19:39:15','',173,'https://estatesatnuevo.com/wp-content/uploads/2022/03/estates2deck.jpg',0,'attachment','image/jpeg',0),(201,1,'2022-03-26 19:39:16','2022-03-26 19:39:16','','estates3','','inherit','open','closed','','estates3','','','2022-03-26 19:39:16','2022-03-26 19:39:16','',173,'https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3.jpg',0,'attachment','image/jpeg',0),(214,1,'2022-03-26 19:39:32','2022-03-26 19:39:32','','estates4master','','inherit','open','closed','','estates4master','','','2022-03-26 19:39:32','2022-03-26 19:39:32','',173,'https://estatesatnuevo.com/wp-content/uploads/2022/03/estates4master.jpg',0,'attachment','image/jpeg',0),(215,1,'2022-03-26 19:39:33','2022-03-26 19:39:33','','estates4second','','inherit','open','closed','','estates4second','','','2022-03-26 19:39:33','2022-03-26 19:39:33','',173,'https://estatesatnuevo.com/wp-content/uploads/2022/03/estates4second.jpg',0,'attachment','image/jpeg',0),(212,1,'2022-03-26 19:39:30','2022-03-26 19:39:30','','estates4deck','','inherit','open','closed','','estates4deck','','','2022-03-26 19:39:30','2022-03-26 19:39:30','',173,'https://estatesatnuevo.com/wp-content/uploads/2022/03/estates4deck.jpg',0,'attachment','image/jpeg',0),(213,1,'2022-03-26 19:39:31','2022-03-26 19:39:31','','estates4living','','inherit','open','closed','','estates4living','','','2022-03-26 19:39:31','2022-03-26 19:39:31','',173,'https://estatesatnuevo.com/wp-content/uploads/2022/03/estates4living.jpg',0,'attachment','image/jpeg',0),(210,1,'2022-03-26 19:39:27','2022-03-26 19:39:27','','estates4bed2','','inherit','open','closed','','estates4bed2','','','2022-03-26 19:39:27','2022-03-26 19:39:27','',173,'https://estatesatnuevo.com/wp-content/uploads/2022/03/estates4bed2.jpg',0,'attachment','image/jpeg',0),(211,1,'2022-03-26 19:39:28','2022-03-26 19:39:28','','estates4beddouble','','inherit','open','closed','','estates4beddouble','','','2022-03-26 19:39:28','2022-03-26 19:39:28','',173,'https://estatesatnuevo.com/wp-content/uploads/2022/03/estates4beddouble.jpg',0,'attachment','image/jpeg',0),(208,1,'2022-03-26 19:39:24','2022-03-26 19:39:24','','estates1rooom','','inherit','open','closed','','estates3rooom-2','','','2022-03-26 20:06:14','2022-03-26 20:06:14','',173,'https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3rooom-1.jpg',0,'attachment','image/jpeg',0),(209,1,'2022-03-26 19:39:26','2022-03-26 19:39:26','','estates4bath','','inherit','open','closed','','estates4bath','','','2022-03-26 19:39:26','2022-03-26 19:39:26','',173,'https://estatesatnuevo.com/wp-content/uploads/2022/03/estates4bath.jpg',0,'attachment','image/jpeg',0),(204,1,'2022-03-26 19:39:20','2022-03-26 19:39:20','','estates3bed2','','inherit','open','closed','','estates3bed2','','','2022-03-26 19:39:20','2022-03-26 19:39:20','',173,'https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3bed2.jpg',0,'attachment','image/jpeg',0),(205,1,'2022-03-26 19:39:21','2022-03-26 19:39:21','','estates3beda','','inherit','open','closed','','estates3beda','','','2022-03-26 19:39:21','2022-03-26 19:39:21','',173,'https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3beda.jpg',0,'attachment','image/jpeg',0),(206,1,'2022-03-26 19:39:22','2022-03-26 19:39:22','','estates1deck','','inherit','open','closed','','estates3deck-3','','','2022-03-26 20:03:17','2022-03-26 20:03:17','',173,'https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3deck-2.jpg',0,'attachment','image/jpeg',0),(207,1,'2022-03-26 19:39:23','2022-03-26 19:39:23','','','','inherit','open','closed','','estates3dining-2','','','2022-04-13 22:38:58','2022-04-13 22:38:58','',173,'https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3dining-1.jpg',0,'attachment','image/jpeg',0),(202,1,'2022-03-26 19:39:17','2022-03-26 19:39:17','','estates3bath','','inherit','open','closed','','estates3bath','','','2022-03-26 19:39:17','2022-03-26 19:39:17','',173,'https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3bath.jpg',0,'attachment','image/jpeg',0),(203,1,'2022-03-26 19:39:19','2022-03-26 19:39:19','','estates3bed','','inherit','open','closed','','estates3bed-2','','','2022-03-26 19:39:19','2022-03-26 19:39:19','',173,'https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3bed-1.jpg',0,'attachment','image/jpeg',0),(166,1,'2022-04-13 20:57:12','2022-04-13 20:57:12','<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-top: 0px;\">\n<div class=\"col-md-12 text-center col-xs-12 col-sm-12 text-center align-column-center col-lg-12\" style=\"padding-left: 0.9em;\">\n<h1 class=\"intro__title color3-color\" style=\"font-weight: 600; font-size: 32px;\" data-font-weight=\"600\">Estates 4 Bedroom Luxury Condo</h1>\n<p class=\"color3-color\" style=\"font-family: Arial, Helvetica, sans-serif; font-weight: 600; text-align: left; font-size: 18px; line-height: 2em;\" data-font-family=\"Arial\" data-font-weight=\"600\" data-font-style=\"\"><span style=\"color: #000000; font-family: Arial, Times New Roman, san-serif;\"><span style=\"font-size: medium;\">This Estates Expansive Luxurious 4 Bedroom, 4.5 Bathroom Condo breathtaking space has a two-storied layout with the first floor featuring a gourmet kitchen outfitted with granite counter tops, a breakfast bar and all the finest appliances, a stylish dining area seating ten, a gorgeous lounge area with a TV, a master bedroom with a king bed and a TV, another bedroom with two full size beds and a TV, three bathrooms including two with a Jacuzzi tub, and an expansive terrace with massive private pool. The second story features a bedroom with a king bed and a TV, another bedroom with two full size beds and a TV, one and a half bathrooms, washer/dryer unit, and two private upper terraces. This condo accommodates 12 adults and 2 children under the age of 12.</span></span></p>\n<p class=\"color3-color\" style=\"text-align: left; font-weight: 600; font-family: Arial, Helvetica, sans-serif; font-size: 17px; line-height: 2em;\" data-font-family=\"Arial\" data-font-weight=\"600\" data-font-style=\"\">This condo includes access to all pools, gym, golf, spa, and tennis courts. Some costs may be charged for golf and spa packages. Included is complimentary transportation from the airport.&nbsp; A butler will be assigned to assist your every need at the Estates at Nuevo Luxurious 4 Bedroom condo.&nbsp; Morning coffee and tea are complimentary.&nbsp; Each unit has an outdoor deck with dining area and 2 lounge chairs as well as a small pool.&nbsp; All rentals with us have access to Platinum benefits that include best seating at pools, preferred check-in, preferred tee times and spa times (if reserved 72 hours in advance), and preferred restaurant reservations.</p>\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\n<div class=\"image-gallery\"></div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\n<div class=\"image-gallery\">\n<p class=\"\">&nbsp;</p>\n<p class=\"\"><img class=\"alignnone wp-image-1992 size-full\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-4bed.jpg\" alt=\"\" width=\"630\" height=\"386\" data-imhwpb-built-photo-search=\"108|square\"></p>\n<p class=\"\"><img class=\"alignnone wp-image-2023 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/living-area-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\n<p class=\"\"><img class=\"alignnone wp-image-2024 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/master-1-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\n<p class=\"\"><img class=\"alignnone wp-image-2015 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/2nd-bed-tv-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\n\n</div>\n</div>\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\n<div class=\"image-gallery\">\n<p class=\"\"><img class=\"alignnone wp-image-2028 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/overhead-shot-225x300.jpeg\" alt=\"\" width=\"225\" height=\"300\" data-imhwpb-built-photo-search=\"108|square\"></p>\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2022 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/living-area-1-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2017 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/another-bath-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2014 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/58_0_300_225.29182879377_estates4second.jpg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\n\n</div>\n</div>\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\n<div class=\"image-gallery\">\n\n[caption id=\"attachment_2029\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-2029 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/pool-deck-300x225.jpeg\" alt=\"deck pool\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"> 4 bed estates deck pool[/caption]\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2013 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/31_0_300_203.87323943662_estates4master.jpg\" alt=\"\" width=\"300\" height=\"203\" data-imhwpb-built-photo-search=\"108|square\"></p>\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2031 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/third-beds-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2026 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/master-bath-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\n\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-bottom: 0px;\">\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\n<p class=\"\" style=\"text-align: left; color: #000000;\">&nbsp;</p>\n\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\n<div class=\"container-fluid\">\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\n<div class=\"col-md-6 col-xs-12 col-sm-12 col-lg-6\">\n<div>\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Ask about a Play and Stay Golf Package that includes free or discounted golf. The details will be determined based on the date and unit available.</p>\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">All units are a minimum of 7 nights with check-ins Friday-Monday.</p>\n<p class=\"\" style=\"font-weight: 600; color: #000000; font-size: 18px;\" data-font-weight=\"600\"><strong><a href=\" https://www.GrandLuxxe-Vacation.com/home/contact-us/\">E-mail </a></strong>for details and we will do our best to get you the unit you desire. Click the word e-mail for a link.</p>\n<p class=\"\"><iframe style=\"overflow: hidden; display: block; margin: 0 auto; width: 100%; max-width: 400px; min-height: 400px;\" src=\"https://www.houfy.com/embed/7148/pricing\" frameborder=\"“0&quot;\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n\n</div>\n</div>\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\">\n<div>\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Review - \"The Estates cannot be equaled!</p>\n<p class=\"\" style=\"font-weight: 600; line-height: 1.4em; color: #000000;\" data-font-weight=\"600\">Absolutely luxurious property with high-end everything. Had 4 couples in a 4 bedroom unit. Butler service was phenomenal. They answered all questions and even loaned us his personal Alexa to assist my wheelchair-bound husband.&nbsp; We highly recommend the iced coffee as well as coffee delivered to the room every morning.&nbsp; Attentive and courteous housekeeping.</p>\n<p class=\"\" style=\"font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">I really enjoyed the large pool on the deck. Private swimming.&nbsp; So nice to site outside with drinks by the pool area. Dining on the deck is a plus as well.</p>\n<p class=\"\" style=\"font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">Enjoyed the Joy Club activities and attention at the pool. Aqua aerobics and pool blackjack was lots of fun.</p>\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Julia D, Chicago, IL</p>\n\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>','Estates 4 Bedroom','','inherit','closed','closed','','99-autosave-v1','','','2022-04-13 20:57:12','2022-04-13 20:57:12','',99,'https://estatesatnuevo.com/?p=166',0,'revision','',0),(164,1,'2022-03-25 21:11:47','2022-03-25 21:11:47','','estates 4','','inherit','open','closed','','estates-4-2','','','2022-03-25 21:11:47','2022-03-25 21:11:47','',0,'https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-4-1.jpg',0,'attachment','image/jpeg',0),(165,1,'2022-03-25 21:12:49','2022-03-25 21:12:49','','estates 4bed','','inherit','open','closed','','estates-4bed','','','2022-03-25 21:12:49','2022-03-25 21:12:49','',0,'https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-4bed.jpg',0,'attachment','image/jpeg',0),(265,1,'2022-04-01 20:42:13','2022-04-01 20:42:13','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 text-center col-xs-12 col-sm-12 text-center\" style=\"padding-left: 0.9em;\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"font-family: Arial, Helvetica, sans-serif; font-weight: 600; text-align: left; font-size: 18px; color: #000000; line-height: 2em;\" data-font-family=\"Arial\" data-font-weight=\"600\" data-font-style=\"\"><span style=\"color: #000000; font-family: Arial, Times New Roman, san-serif;\"><span style=\"color: #000000; font-family: Arial, Times New Roman, san-serif;\"><span style=\"font-size: medium;\">This Estates at Nuevo Expansive Luxurious 4 Bedroom, 4.5 Bathroom Condo breathtaking space has a two-storied layout with the first floor featuring a gourmet kitchen outfitted with granite counter tops, a breakfast bar and all the finest appliances, a stylish dining area seating ten, a gorgeous lounge area with a TV, a master bedroom with a king bed and a TV, another bedroom with two full size beds and a TV, three bathrooms including two with a Jacuzzi tub, and an expansive terrace with massive private pool. The second story features a bedroom with a king bed and a TV, another bedroom with two full size beds and a TV, one and a half bathrooms, and two private upper terraces. This condo accommodates 12 adults and 2 children under the age of 12.</span></span></span></p>\r\n<p class=\"\" style=\"text-align: left; font-weight: 600; font-family: Arial, Helvetica, sans-serif; font-size: 17px; color: #000000; line-height: 2em;\" data-font-family=\"Arial\" data-font-weight=\"600\" data-font-style=\"\">The Estates at Nuevo Luxurious 4 Bedroom condo includes access to all pools, gym, golf, spa, and tennis courts. Some costs may be charged for golf and spa packages. Included is complimentary transportation from the airport.&nbsp; A butler will be assigned to assist your every need.&nbsp; Morning coffee and tea are complimentary.&nbsp; Each unit has an outdoor deck with dining area and 2 lounge chairs as well as a small pool.&nbsp; All rentals with us have access to Platinum benefits that include best seating at pools, preferred check-in, preferred tee times and spa times (if reserved 72 hours in advance), and preferred restaurant reservations.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"image-gallery\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\"><img class=\"alignnone wp-image-1992 size-full\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-4bed.jpg\" alt=\"\" width=\"630\" height=\"386\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"\"><img class=\"alignnone wp-image-2023 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/living-area-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"\"><img class=\"alignnone wp-image-2024 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/master-1-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"\"><img class=\"alignnone wp-image-2015 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/2nd-bed-tv-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\"><img class=\"alignnone wp-image-2028 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/overhead-shot-225x300.jpeg\" alt=\"\" width=\"225\" height=\"300\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2022 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/living-area-1-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2017 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/another-bath-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2014 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/58_0_300_225.29182879377_estates4second.jpg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_2029\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-2029 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/pool-deck-300x225.jpeg\" alt=\"deck pool\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"> 4 bed estates deck pool[/caption]\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2013 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/31_0_300_203.87323943662_estates4master.jpg\" alt=\"\" width=\"300\" height=\"203\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2031 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/third-beds-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2026 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/master-bath-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<p class=\"\" style=\"text-align: left; color: #000000;\">&nbsp;</p>\r\n\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<div>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Ask about a Play and Stay Golf Package that includes free or discounted golf. The details will be determined based on the date and unit available.</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">All units are a minimum of 7 nights with check-ins Friday-Monday.</p>\r\n<p class=\"\" style=\"font-weight: 600; color: #000000; font-size: 18px;\" data-font-weight=\"600\"><strong><a href=\" https://www.GrandLuxxe-Vacation.com/home/contact-us/\">E-mail </a></strong>for details and we will do our best to get you the unit you desire. Click the word e-mail for a link.</p>\r\n<p class=\"\"><iframe style=\"overflow: hidden; display: block; margin: 0 auto; width: 100%; max-width: 400px; min-height: 400px;\" src=\"https://www.houfy.com/embed/7148/pricing\" frameborder=\"“0&quot;\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Review - \"The Estates cannot be equaled!</p>\r\n<p class=\"\" style=\"font-weight: 600; line-height: 1.4em; color: #000000;\" data-font-weight=\"600\">Absolutely luxurious property with high-end everything. Had 4 couples in a 4 bedroom unit. Butler service was phenomenal. They answered all questions and even loaned us his personal Alexa to assist my wheelchair-bound husband.&nbsp; We highly recommend the iced coffee as well as coffee delivered to the room every morning.&nbsp; Attentive and courteous housekeeping.</p>\r\n<p class=\"\" style=\"font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">I really enjoyed the large pool on the deck. Private swimming.&nbsp; So nice to site outside with drinks by the pool area. Dining on the deck is a plus as well.</p>\r\n<p class=\"\" style=\"font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">Enjoyed the Joy Club activities and attention at the pool. Aqua aerobics and pool blackjack was lots of fun.</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Julia D, Chicago, IL</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Estates 4 Bedroom','','inherit','closed','closed','','99-revision-v1','','','2022-04-01 20:42:13','2022-04-01 20:42:13','',99,'https://estatesatnuevo.com/?p=265',0,'revision','',0),(235,1,'2022-03-27 17:44:35','2022-03-27 17:44:35','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 text-center col-xs-12 col-sm-12 text-center\" style=\"padding-left: 0.9em;\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"font-family: Arial, Helvetica, sans-serif; font-weight: 600; text-align: left; font-size: 18px; color: #000000; line-height: 2em;\" data-font-family=\"Arial\" data-font-weight=\"600\" data-font-style=\"\"><span style=\"color: #000000; font-family: Arial, Times New Roman, san-serif;\"><span style=\"color: #000000; font-family: Arial, Times New Roman, san-serif;\"><span style=\"font-size: medium;\">This Estates at Nuevo Expansive Luxurious 4 Bedroom, 4.5 Bathroom Condo breathtaking space has a two-storied layout with the first floor featuring a gourmet kitchen outfitted with a breakfast bar and all the finest appliances, a stylish dining area seating ten, a gorgeous lounge area with a TV, a master bedroom with a king bed and a TV, another bedroom with two full size beds and a TV, three bathrooms including two with a Jacuzzi tub, and an expansive terrace with massive private pool. The second story features a bedroom with a king bed and a TV, another bedroom with two full size beds and a TV, one and a half bathrooms, and two private upper terraces. This condo accommodates 12 adults and 2 children under the age of 12.</span></span></span></p>\r\n<p class=\"\" style=\"text-align: left; font-weight: 600; font-family: Arial, Helvetica, sans-serif; font-size: 17px; color: #000000; line-height: 2em;\" data-font-family=\"Arial\" data-font-weight=\"600\" data-font-style=\"\">The Estates at Nuevo Luxurious 4 Bedroom condo includes access to all pools, gym, golf, spa, and tennis courts. Some costs may be charged for golf and spa packages. Included is complimentary transportation from the airport.&nbsp; These units have gourmet kitchens with granite counter tops, a full size refrigerator, microwave, washer and dryer, etc.&nbsp; A butler will be assigned to assist your every need.&nbsp; Morning coffee and tea are complimentary.&nbsp; Each unit has an outdoor deck with dining area and 2 lounge chairs as well as a small pool.&nbsp; All rentals with us have access to Platinum benefits that include best seating at pools, preferred check-in, preferred tee times and spa times (if reserved 72 hours in advance), preferred restaurant reservations, and special butler services.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"image-gallery\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\"><img class=\"alignnone wp-image-1992 size-full\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-4bed.jpg\" alt=\"\" width=\"630\" height=\"386\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"\"><img class=\"alignnone wp-image-2023 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/living-area-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"\"><img class=\"alignnone wp-image-2024 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/master-1-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"\"><img class=\"alignnone wp-image-2015 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/2nd-bed-tv-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\"><img class=\"alignnone wp-image-2028 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/overhead-shot-225x300.jpeg\" alt=\"\" width=\"225\" height=\"300\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2022 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/living-area-1-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2017 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/another-bath-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2014 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/58_0_300_225.29182879377_estates4second.jpg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_2029\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-2029 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/pool-deck-300x225.jpeg\" alt=\"deck pool\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"> 4 bed estates deck pool[/caption]\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2013 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/31_0_300_203.87323943662_estates4master.jpg\" alt=\"\" width=\"300\" height=\"203\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2031 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/third-beds-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2026 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/master-bath-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<p class=\"\" style=\"text-align: left; color: #000000;\">&nbsp;</p>\r\n\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<div>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Ask about a Play and Stay Golf Package that includes free or discounted golf. The details will be determined based on the date and unit available.</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">All units are a minimum of 7 nights with check-ins Friday-Monday.</p>\r\n<p class=\"\" style=\"font-weight: 600; color: #000000; font-size: 18px;\" data-font-weight=\"600\"><strong><a href=\" https://www.GrandLuxxe-Vacation.com/home/contact-us/\">E-mail </a></strong>for details and we will do our best to get you the unit you desire. Click the word e-mail for a link.</p>\r\n<p class=\"\"><iframe style=\"overflow: hidden; display: block; margin: 0 auto; width: 100%; max-width: 400px; min-height: 400px;\" src=\"https://www.houfy.com/embed/7148/pricing\" frameborder=\"“0&quot;\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Review - \"The Estates cannot be equaled!</p>\r\n<p class=\"\" style=\"font-weight: 600; line-height: 1.4em; color: #000000;\" data-font-weight=\"600\">Absolutely luxurious property with high-end everything. Had 4 couples in a 4 bedroom unit. Butler service was phenomenal. They answered all questions and even loaned us his personal Alexa to assist my wheelchair-bound husband.&nbsp; We highly recommend the iced coffee as well as coffee delivered to the room every morning.&nbsp; Attentive and courteous housekeeping.</p>\r\n<p class=\"\" style=\"font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">I really enjoyed the large pool on the deck. Private swimming.&nbsp; So nice to site outside with drinks by the pool area. Dining on the deck is a plus as well.</p>\r\n<p class=\"\" style=\"font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">Enjoyed the Joy Club activities and attention at the pool. Aqua aerobics and pool blackjack was lots of fun.</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Julia D, Chicago, IL</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Estates 4 Bedroom','','inherit','closed','closed','','99-revision-v1','','','2022-03-27 17:44:35','2022-03-27 17:44:35','',99,'https://estatesatnuevo.com/?p=235',0,'revision','',0),(168,1,'2022-03-25 21:30:15','2022-03-25 21:30:15','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 text-center col-xs-12 col-sm-12 text-center\" style=\"padding-left: 0.9em;\">\r\n<div class=\"\">\r\n<h1 class=\"\" style=\"font-family: Arial, \'Times New Roman\', san-serif; font-weight: 600; color: #000000; font-size: 30px;\" data-font-family=\"Arial,\" data-font-weight=\"600\" data-font-style=\"\">4 Bedroom Residence&nbsp;</h1>\r\n<p class=\"\" style=\"font-family: Arial, Helvetica, sans-serif; font-weight: 600; text-align: left; font-size: 18px; color: #000000; line-height: 2em;\" data-font-family=\"Arial\" data-font-weight=\"600\" data-font-style=\"\"><span style=\"color: #000000; font-family: Arial, Times New Roman, san-serif;\"><span style=\"color: #000000; font-family: Arial, Times New Roman, san-serif;\"><span style=\"font-size: medium;\">This Estates at Nuevo Expansive Luxurious 4 Bedroom, 4.5 Bathroom Condo breathtaking space has a two-storied layout with the first floor featuring a gourmet kitchen outfitted with a breakfast bar and all the finest appliances, a stylish dining area seating ten, a gorgeous lounge area with a TV, a master bedroom with a king bed and a TV, another bedroom with two full size beds and a TV, three bathrooms including two with a Jacuzzi tub, and an expansive terrace with massive private pool. The second story features a bedroom with a king bed and a TV, another bedroom with two full size beds and a TV, one and a half bathrooms, and two private upper terraces. This condo accommodates 12 adults and 2 children under the age of 12.</span></span></span></p>\r\n<p class=\"\" style=\"text-align: left; font-weight: 600; font-family: Arial, Helvetica, sans-serif; font-size: 17px; color: #000000; line-height: 2em;\" data-font-family=\"Arial\" data-font-weight=\"600\" data-font-style=\"\">The Estates at Nuevo Luxurious 4 Bedroom condo includes access to all pools, gym, golf, spa, and tennis courts. Some costs may be charged for golf and spa packages. Included is complimentary transportation from the airport.&nbsp; These units have gourmet kitchens with granite counter tops, a full size refrigerator, microwave, washer and dryer, etc.&nbsp; A butler will be assigned to assist your every need.&nbsp; Morning coffee and tea are complimentary.&nbsp; Each unit has an outdoor deck with dining area and 2 lounge chairs as well as a small pool.&nbsp; All rentals with us have access to Platinum benefits that include best seating at pools, preferred check-in, preferred tee times and spa times (if reserved 72 hours in advance), preferred restaurant reservations, and special butler services.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"image-gallery\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\"><img class=\"alignnone wp-image-1992 size-full\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-4bed.jpg\" alt=\"\" width=\"630\" height=\"386\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"\"><img class=\"alignnone wp-image-2023 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/living-area-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"\"><img class=\"alignnone wp-image-2024 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/master-1-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"\"><img class=\"alignnone wp-image-2015 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/2nd-bed-tv-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\"><img class=\"alignnone wp-image-2028 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/overhead-shot-225x300.jpeg\" alt=\"\" width=\"225\" height=\"300\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2022 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/living-area-1-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2017 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/another-bath-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2014 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/58_0_300_225.29182879377_estates4second.jpg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_2029\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-2029 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/pool-deck-300x225.jpeg\" alt=\"deck pool\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"> 4 bed estates deck pool[/caption]\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2013 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/31_0_300_203.87323943662_estates4master.jpg\" alt=\"\" width=\"300\" height=\"203\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2031 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/third-beds-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2026 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/master-bath-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<p class=\"\" style=\"text-align: left; color: #000000;\">&nbsp;</p>\r\n\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<div>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Ask about a Play and Stay Golf Package that includes free or discounted golf. The details will be determined based on the date and unit available.</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">All units are a minimum of 7 nights with check-ins Friday-Monday.</p>\r\n<p class=\"\" style=\"font-weight: 600; color: #000000; font-size: 18px;\" data-font-weight=\"600\"><strong><a href=\" https://www.GrandLuxxe-Vacation.com/home/contact-us/\">E-mail </a></strong>for details and we will do our best to get you the unit you desire. Click the word e-mail for a link.</p>\r\n<p class=\"\"><iframe style=\"overflow: hidden; display: block; margin: 0 auto; width: 100%; max-width: 400px; min-height: 400px;\" src=\"https://www.houfy.com/embed/7148/pricing\" frameborder=\"“0&quot;\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Review - \"The Estates cannot be equaled!</p>\r\n<p class=\"\" style=\"font-weight: 600; line-height: 1.4em; color: #000000;\" data-font-weight=\"600\">Absolutely luxurious property with high-end everything. Had 4 couples in a 4 bedroom unit. Butler service was phenomenal. They answered all questions and even loaned us his personal Alexa to assist my wheelchair-bound husband.&nbsp; We highly recommend the iced coffee as well as coffee delivered to the room every morning.&nbsp; Attentive and courteous housekeeping.</p>\r\n<p class=\"\" style=\"font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">I really enjoyed the large pool on the deck. Private swimming.&nbsp; So nice to site outside with drinks by the pool area. Dining on the deck is a plus as well.</p>\r\n<p class=\"\" style=\"font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">Enjoyed the Joy Club activities and attention at the pool. Aqua aerobics and pool blackjack was lots of fun.</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Julia D, Chicago, IL</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','About Us','','inherit','closed','closed','','99-revision-v1','','','2022-03-25 21:30:15','2022-03-25 21:30:15','',99,'https://estatesatnuevo.com/?p=168',0,'revision','',0),(167,1,'2022-03-25 21:24:28','2022-03-25 21:24:28','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 text-center col-xs-12 col-sm-12 text-center\" style=\"padding-left: 0.9em;\">\r\n<div class=\"\">\r\n<h1 class=\"\" style=\"font-family: Arial, \'Times New Roman\', san-serif; font-weight: 600; color: #000000; font-size: 30px;\" data-font-family=\"Arial,\" data-font-weight=\"600\" data-font-style=\"\">ESTATES AT NUEVO Luxury 4 Bedroom Residence&nbsp;</h1>\r\n<h2 class=\"\" style=\"font-family: Arial, \'Times New Roman\', san-serif; font-weight: 600; color: #000000; font-size: 25px;\" data-font-family=\"Arial,\" data-font-weight=\"600\" data-font-style=\"\">the ultimate in Luxury and Service</h2>\r\n<p class=\"\" style=\"font-family: Arial, Helvetica, sans-serif; font-weight: 600; text-align: left; font-size: 18px; color: #000000;\" data-font-family=\"Arial\" data-font-weight=\"600\" data-font-style=\"\"><span style=\"color: #000000; font-family: Arial, Times New Roman, san-serif;\"><span style=\"color: #000000; font-family: Arial, Times New Roman, san-serif;\"><span style=\"font-size: medium;\">This Estates at Nuevo Expansive Luxurious  4 Bedroom, 4.5 Bathroom Condo breathtaking space has a two-storied layout with the first floor featuring a gourmet kitchen outfitted with a breakfast bar and all the finest appliances, a stylish dining area seating ten, a gorgeous lounge area with a TV, a master bedroom with a king bed and a TV, another bedroom with two full size beds and a TV, three bathrooms including two with a Jacuzzi tub, and an expansive terrace with massive private pool. The second story features a bedroom with a king bed and a TV, another bedroom with two full size beds and a TV, one and a half bathrooms, and two private upper terraces. This condo accommodates 12 adults and 2 children under the age of 12.</span></span></span></p>\r\n<p class=\"\" style=\"text-align: left; font-weight: 600; font-family: Arial, Helvetica, sans-serif; font-size: 18px; color: #000000; line-height: 2em;\" data-font-family=\"Arial\" data-font-weight=\"600\" data-font-style=\"\">The Estates at Nuevo Luxurious 4 Bedroom condo includes access to all pools, gym, golf, spa, and tennis courts. Some costs may be charged for golf and spa packages. Included is complimentary transportation from the airport.&nbsp; These units have gourmet kitchens with granite counter tops, a full size refrigerator, microwave, washer and dryer, etc.&nbsp; A butler will be assigned to assist your every need.&nbsp; Morning coffee and tea are complimentary.&nbsp; Each unit has an outdoor deck with dining area and 2 lounge chairs as well as a small pool.&nbsp; All rentals with us have access to Platinum benefits that include best seating at pools, preferred check-in, preferred tee times and spa times (if reserved 72 hours in advance), preferred restaurant reservations, and special butler services.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"image-gallery\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\"><img class=\"alignnone wp-image-1992 size-full\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-4bed.jpg\" alt=\"\" width=\"630\" height=\"386\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"\"><img class=\"alignnone wp-image-2023 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/living-area-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"\"><img class=\"alignnone wp-image-2024 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/master-1-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"\"><img class=\"alignnone wp-image-2015 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/2nd-bed-tv-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\"><img class=\"alignnone wp-image-2028 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/overhead-shot-225x300.jpeg\" alt=\"\" width=\"225\" height=\"300\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2022 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/living-area-1-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2017 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/another-bath-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2014 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/58_0_300_225.29182879377_estates4second.jpg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_2029\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-2029 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/pool-deck-300x225.jpeg\" alt=\"deck pool\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"> 4 bed estates deck pool[/caption]\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2013 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/31_0_300_203.87323943662_estates4master.jpg\" alt=\"\" width=\"300\" height=\"203\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2031 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/third-beds-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2026 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/master-bath-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<p class=\"\" style=\"text-align: left; color: #000000;\">&nbsp;</p>\r\n\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<div>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Ask about a Play and Stay Golf Package that includes free or discounted golf. The details will be determined based on the date and unit available.</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">All units are a minimum of 7 nights with check-ins Friday-Monday.</p>\r\n<p class=\"\" style=\"font-weight: 600; color: #000000; font-size: 18px;\" data-font-weight=\"600\"><strong><a href=\" https://www.GrandLuxxe-Vacation.com/home/contact-us/\">E-mail </a></strong>for details and we will do our best to get you the unit you desire. Click the word e-mail for a link.</p>\r\n<p class=\"\"><iframe style=\"overflow: hidden; display: block; margin: 0 auto; width: 100%; max-width: 400px; min-height: 400px;\" src=\"https://www.houfy.com/embed/7148/pricing\" frameborder=\"“0&quot;\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Review - \"The Estates cannot be equaled!</p>\r\n<p class=\"\" style=\"font-weight: 600; line-height: 1.4em; color: #000000;\" data-font-weight=\"600\">Absolutely luxurious property with high-end everything. Had 4 couples in a 4 bedroom unit. Butler service was phenomenal. They answered all questions and even loaned us his personal Alexa to assist my wheelchair-bound husband.&nbsp; We highly recommend the iced coffee as well as coffee delivered to the room every morning.&nbsp; Attentive and courteous housekeeping.</p>\r\n<p class=\"\" style=\"font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">I really enjoyed the large pool on the deck. Private swimming.&nbsp; So nice to site outside with drinks by the pool area. Dining on the deck is a plus as well.</p>\r\n<p class=\"\" style=\"font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">Enjoyed the Joy Club activities and attention at the pool. Aqua aerobics and pool blackjack was lots of fun.</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Julia D, Chicago, IL</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','About Us','','inherit','closed','closed','','99-revision-v1','','','2022-03-25 21:24:28','2022-03-25 21:24:28','',99,'https://estatesatnuevo.com/?p=167',0,'revision','',0),(169,1,'2022-03-25 21:31:09','2022-03-25 21:31:09','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 text-center col-xs-12 col-sm-12 text-center\" style=\"padding-left: 0.9em;\">\r\n<div class=\"\">\r\n<h1 class=\"\" style=\"font-family: Arial, \'Times New Roman\', san-serif; font-weight: 600; color: #000000; font-size: 30px;\" data-font-family=\"Arial,\" data-font-weight=\"600\" data-font-style=\"\">4 Bedroom Residence&nbsp;</h1>\r\n<p class=\"\" style=\"font-family: Arial, Helvetica, sans-serif; font-weight: 600; text-align: left; font-size: 18px; color: #000000; line-height: 2em;\" data-font-family=\"Arial\" data-font-weight=\"600\" data-font-style=\"\"><span style=\"color: #000000; font-family: Arial, Times New Roman, san-serif;\"><span style=\"color: #000000; font-family: Arial, Times New Roman, san-serif;\"><span style=\"font-size: medium;\">This Estates at Nuevo Expansive Luxurious 4 Bedroom, 4.5 Bathroom Condo breathtaking space has a two-storied layout with the first floor featuring a gourmet kitchen outfitted with a breakfast bar and all the finest appliances, a stylish dining area seating ten, a gorgeous lounge area with a TV, a master bedroom with a king bed and a TV, another bedroom with two full size beds and a TV, three bathrooms including two with a Jacuzzi tub, and an expansive terrace with massive private pool. The second story features a bedroom with a king bed and a TV, another bedroom with two full size beds and a TV, one and a half bathrooms, and two private upper terraces. This condo accommodates 12 adults and 2 children under the age of 12.</span></span></span></p>\r\n<p class=\"\" style=\"text-align: left; font-weight: 600; font-family: Arial, Helvetica, sans-serif; font-size: 17px; color: #000000; line-height: 2em;\" data-font-family=\"Arial\" data-font-weight=\"600\" data-font-style=\"\">The Estates at Nuevo Luxurious 4 Bedroom condo includes access to all pools, gym, golf, spa, and tennis courts. Some costs may be charged for golf and spa packages. Included is complimentary transportation from the airport.&nbsp; These units have gourmet kitchens with granite counter tops, a full size refrigerator, microwave, washer and dryer, etc.&nbsp; A butler will be assigned to assist your every need.&nbsp; Morning coffee and tea are complimentary.&nbsp; Each unit has an outdoor deck with dining area and 2 lounge chairs as well as a small pool.&nbsp; All rentals with us have access to Platinum benefits that include best seating at pools, preferred check-in, preferred tee times and spa times (if reserved 72 hours in advance), preferred restaurant reservations, and special butler services.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"image-gallery\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\"><img class=\"alignnone wp-image-1992 size-full\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-4bed.jpg\" alt=\"\" width=\"630\" height=\"386\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"\"><img class=\"alignnone wp-image-2023 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/living-area-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"\"><img class=\"alignnone wp-image-2024 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/master-1-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"\"><img class=\"alignnone wp-image-2015 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/2nd-bed-tv-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\"><img class=\"alignnone wp-image-2028 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/overhead-shot-225x300.jpeg\" alt=\"\" width=\"225\" height=\"300\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2022 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/living-area-1-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2017 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/another-bath-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2014 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/58_0_300_225.29182879377_estates4second.jpg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_2029\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-2029 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/pool-deck-300x225.jpeg\" alt=\"deck pool\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"> 4 bed estates deck pool[/caption]\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2013 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/31_0_300_203.87323943662_estates4master.jpg\" alt=\"\" width=\"300\" height=\"203\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2031 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/third-beds-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2026 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/master-bath-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<p class=\"\" style=\"text-align: left; color: #000000;\">&nbsp;</p>\r\n\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<div>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Ask about a Play and Stay Golf Package that includes free or discounted golf. The details will be determined based on the date and unit available.</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">All units are a minimum of 7 nights with check-ins Friday-Monday.</p>\r\n<p class=\"\" style=\"font-weight: 600; color: #000000; font-size: 18px;\" data-font-weight=\"600\"><strong><a href=\" https://www.GrandLuxxe-Vacation.com/home/contact-us/\">E-mail </a></strong>for details and we will do our best to get you the unit you desire. Click the word e-mail for a link.</p>\r\n<p class=\"\"><iframe style=\"overflow: hidden; display: block; margin: 0 auto; width: 100%; max-width: 400px; min-height: 400px;\" src=\"https://www.houfy.com/embed/7148/pricing\" frameborder=\"“0&quot;\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Review - \"The Estates cannot be equaled!</p>\r\n<p class=\"\" style=\"font-weight: 600; line-height: 1.4em; color: #000000;\" data-font-weight=\"600\">Absolutely luxurious property with high-end everything. Had 4 couples in a 4 bedroom unit. Butler service was phenomenal. They answered all questions and even loaned us his personal Alexa to assist my wheelchair-bound husband.&nbsp; We highly recommend the iced coffee as well as coffee delivered to the room every morning.&nbsp; Attentive and courteous housekeeping.</p>\r\n<p class=\"\" style=\"font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">I really enjoyed the large pool on the deck. Private swimming.&nbsp; So nice to site outside with drinks by the pool area. Dining on the deck is a plus as well.</p>\r\n<p class=\"\" style=\"font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">Enjoyed the Joy Club activities and attention at the pool. Aqua aerobics and pool blackjack was lots of fun.</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Julia D, Chicago, IL</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','4 Bedroom','','inherit','closed','closed','','99-revision-v1','','','2022-03-25 21:31:09','2022-03-25 21:31:09','',99,'https://estatesatnuevo.com/?p=169',0,'revision','',0),(170,1,'2022-03-25 21:41:11','2022-03-25 21:41:11','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 text-center col-xs-12 col-sm-12 text-center col-lg-12\">\r\n<h1 class=\"intro__title color3-color\" style=\"font-weight: 600; font-size: 32px;\" data-font-weight=\"600\">Estates 2 Bedroom Luxury Condo</h1>\r\n<p class=\"color3-color\" style=\"text-align: left; font-weight: 600;\" data-font-weight=\"600\"><span style=\"font-size: 17.5px; text-align: center;\">This gorgeous space features a gourmet kitchen outfitted with a breakfast bar and all the finest appliances, a stylish dining area seating six, a lounge area with TV, a master bedroom with a king bed and a TV, another bedroom with two beds and a TV, three bathrooms including two with a Jacuzzi tub, and a large terrace complete with beautiful outdoor furnishings and a private plunge pool.&nbsp; The Estates 2 Bedroom Luxury Condo accommodates 6 adults and 2 children.</span></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_1997\" align=\"aligncenter\" width=\"630\"]<img class=\"wp-image-1997 size-full\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates2a.jpg\" alt=\"2 bed estates\" width=\"630\" height=\"386\" data-imhwpb-built-photo-search=\"108|landscape\"> 2 bed estates[/caption]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_2047\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-1996 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates2-300x184.jpg\" alt=\"estates 2\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> estates2beds[/caption]\r\n\r\n[caption id=\"attachment_2047\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-2047 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates2beds-300x184.jpg\" alt=\"estates 2\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> 2 bed estates[/caption]\r\n\r\n[caption id=\"attachment_1995\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1995 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-walkway-300x184.jpg\" alt=\"Walkway to Estates pools and shops\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Walkway to Estates pools and shops[/caption]\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_1998\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1998 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates2bed-300x184.jpg\" alt=\"estates 2 bed\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Master bedroom 2 bed estates[/caption]\r\n\r\n[caption id=\"attachment_2046\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-2046 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates2bedbath-300x184.jpg\" alt=\"estates2bedbath\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> estates2bedbath[/caption]\r\n\r\n[caption id=\"attachment_1990\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1990 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-2pools-300x184.jpg\" alt=\"Estates pools\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Estates private pools[/caption]\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_1999\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1999 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates2deck-300x184.jpg\" alt=\"estates2deck\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> estates2deck[/caption]\r\n\r\n[caption id=\"attachment_1993\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-1993 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-beachland-300x184.jpg\" alt=\"Estates only pool section\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Estates only pool section[/caption]\r\n\r\n[caption id=\"attachment_2052\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-2052 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/2bedestateplan-300x208.jpeg\" alt=\"2bed estate floorplan\" width=\"300\" height=\"208\" data-imhwpb-built-photo-search=\"108|square\"> 2bed estate floorplan[/caption]\r\n<p class=\"mod-img\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12 col-lg-6\" style=\"padding-left: 2.6em;\">\r\n<p class=\"\" style=\"font-size: 18px; color: #000000; font-weight: 600; line-height: 1.5em;\" data-font-weight=\"600\">Reduced golf fees and 2 for 1 basic 50-minute massages plus use of all facilities of the gym and spa free of charge.&nbsp; This includes facilities only and does not include food and beverages, facial or other spa treatments, personal training or any other services available at the gym or spa.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Complimentary morning coffee/tea service. A safety deposit box in each bedroom. Daily maid service and chocolates on your pillow at night!</p>\r\n<p class=\"\" style=\"font-size: 18px; font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">All units are a minimum of 7 nights with check-ins Friday-Monday.</p>\r\n<p class=\"\" style=\"font-weight: 600; font-size: 18px; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\"><strong><a class=\"\" href=\" https://www.GrandLuxxe-Vacation.com/home/contact-us/\">E-mail </a></strong>for details and we will do our best to get you the unit you desire. Click the word e-mail for a link.</p>\r\n<p class=\"\"><iframe style=\"overflow: hidden; display: block; margin: 0 auto; width: 100%; max-width: 400px; min-height: 400px;\" src=\"https://www.houfy.com/embed/7151/pricing\" frameborder=\"“0&quot;\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n<p class=\"\" style=\"font-weight: 600;\" data-font-weight=\"600\">Please ask any questions prior to your reservation request.&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding-right: 2.4em;\">\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\"><span style=\"font-size: 17.5px;\">Free in-room Internet access.&nbsp;&nbsp;</span></p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Tennis Courts - Use of the courts free of charge includes se of facilities and use of towels only and not the cost of nighttime illumination, rental or purchase of equipment, food and beverages, or any other expenses associated with the use of tennis courts.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Butler Service - a butler is assigned to assist your every need. Making reservations, etc.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Restaurant Reservations - Advise concierge of where you would like to eat and at what time and how many in your party (Reservations must be made 24 hours in advance).</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Spa Services - Rest, Relax, and Rejuvenate. Take advantage of the many massage and body treatments offered at the BRIO Spa &amp; Fitness Center. (Reservations must be made 72 hours in advance).</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Tee Times/Golf Reservations - Enjoy advance booking for your rounds of golf. Call the Pro Shop 72 hours in advance to book your tee times.</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Check-in - Enjoy an exclusive check in experience, free of long lines and waiting time.</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred View - The most desirable views subject to space availability.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Estates 2 Bedroom','','publish','closed','closed','','estates-2-bedroom','','','2022-04-13 20:52:19','2022-04-13 20:52:19','',97,'https://estatesatnuevo.com/?page_id=170',0,'page','',0),(171,1,'2022-03-25 21:41:11','2022-03-25 21:41:11','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 text-center col-xs-12 col-sm-12 text-center\">\r\n<h1 class=\"intro__title\" style=\"color: #000000; font-weight: 600; font-size: 32px;\" data-font-weight=\"600\">2 BEDROOM</h1>\r\n<p class=\"\" style=\"text-align: left; color: #000000; font-weight: 600;\" data-font-weight=\"600\"><span style=\"font-size: 17.5px; text-align: center;\">This gorgeous space features a gourmet kitchen outfitted with a breakfast bar and all the finest appliances, a stylish dining area seating six, a lounge area with TV, a master bedroom with a king bed and a TV, another bedroom with two beds and a TV, three bathrooms including two with a Jacuzzi tub, and a large terrace complete with beautiful outdoor furnishings and a private plunge pool.&nbsp; Accommodates 6 adults and 2 children.</span></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_1997\" align=\"aligncenter\" width=\"630\"]<img class=\"wp-image-1997 size-full\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates2a.jpg\" alt=\"2 bed estates\" width=\"630\" height=\"386\" data-imhwpb-built-photo-search=\"108|landscape\"> 2 bed estates[/caption]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_2047\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-1996 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates2-300x184.jpg\" alt=\"estates 2\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> estates2beds[/caption]\r\n\r\n[caption id=\"attachment_2047\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-2047 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates2beds-300x184.jpg\" alt=\"estates 2\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> 2 bed estates[/caption]\r\n\r\n[caption id=\"attachment_1995\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1995 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-walkway-300x184.jpg\" alt=\"Walkway to Estates pools and shops\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Walkway to Estates pools and shops[/caption]\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_1998\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1998 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates2bed-300x184.jpg\" alt=\"estates 2 bed\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Master bedroom 2 bed estates[/caption]\r\n\r\n[caption id=\"attachment_2046\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-2046 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates2bedbath-300x184.jpg\" alt=\"estates2bedbath\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> estates2bedbath[/caption]\r\n\r\n[caption id=\"attachment_1990\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1990 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-2pools-300x184.jpg\" alt=\"Estates pools\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Estates private pools[/caption]\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_1999\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1999 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates2deck-300x184.jpg\" alt=\"estates2deck\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> estates2deck[/caption]\r\n\r\n[caption id=\"attachment_1993\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-1993 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-beachland-300x184.jpg\" alt=\"Estates only pool section\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Estates only pool section[/caption]\r\n\r\n[caption id=\"attachment_2052\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-2052 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/2bedestateplan-300x208.jpeg\" alt=\"2bed estate floorplan\" width=\"300\" height=\"208\" data-imhwpb-built-photo-search=\"108|square\"> 2bed estate floorplan[/caption]\r\n<p class=\"mod-img\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\" style=\"padding-left: 2.6em;\">\r\n<p class=\"\" style=\"font-size: 18px; color: #000000; font-weight: 600; line-height: 1.5em;\" data-font-weight=\"600\">Reduced golf fees and 2 for 1 basic 50-minute massages plus use of all facilities of the gym and spa free of charge.&nbsp; This includes facilities only and does not include food and beverages, facial or other spa treatments, personal training or any other services available at the gym or spa.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Complimentary morning coffee/tea service. A safety deposit box in each bedroom. Daily maid service and chocolates on your pillow at night!</p>\r\n<p class=\"\" style=\"font-size: 18px; font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">All units are a minimum of 7 nights with check-ins Friday-Monday.</p>\r\n<p class=\"\" style=\"font-weight: 600; font-size: 18px; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\"><strong><a class=\"\" href=\" https://www.GrandLuxxe-Vacation.com/home/contact-us/\">E-mail </a></strong>for details and we will do our best to get you the unit you desire. Click the word e-mail for a link.</p>\r\n<p class=\"\"><iframe style=\"overflow: hidden; display: block; margin: 0 auto; width: 100%; max-width: 400px; min-height: 400px;\" src=\"https://www.houfy.com/embed/7151/pricing\" frameborder=\"“0&quot;\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n<p class=\"\" style=\"font-weight: 600;\" data-font-weight=\"600\">Please ask any questions prior to your reservation request.&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding-right: 2.4em;\">\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\"><span style=\"font-size: 17.5px;\">Free in-room Internet access.&nbsp;&nbsp;</span></p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Tennis Courts - Use of the courts free of charge includes se of facilities and use of towels only and not the cost of nighttime illumination, rental or purchase of equipment, food and beverages, or any other expenses associated with the use of tennis courts.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Butler Service - a butler is assigned to assist your every need. Making reservations, etc.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Restaurant Reservations - Advise concierge of where you would like to eat and at what time and how many in your party (Reservations must be made 24 hours in advance).</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Spa Services - Rest, Relax, and Rejuvenate. Take advantage of the many massage and body treatments offered at the BRIO Spa &amp; Fitness Center. (Reservations must be made 72 hours in advance).</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Tee Times/Golf Reservations - Enjoy advance booking for your rounds of golf. Call the Pro Shop 72 hours in advance to book your tee times.</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Check-in - Enjoy an exclusive check in experience, free of long lines and waiting time.</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred View - The most desirable views subject to space availability.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Estates 2 Bedroom','','inherit','closed','closed','','170-revision-v1','','','2022-03-25 21:41:11','2022-03-25 21:41:11','',170,'https://estatesatnuevo.com/?p=171',0,'revision','',0),(234,1,'2022-03-26 21:38:42','2022-03-26 21:38:42','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"color: #ffffff; background-image: linear-gradient(to left, rgba(26, 26, 26, 0.5), rgba(26, 26, 26, 0.5)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/pool.jpg\'); background-size: cover; background-position: 50% 75%;\" data-imhwpb-asset-id=\"1111019\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/pool.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-md-2 col-sm-2 col-xs-12\"></div>\r\n<div class=\"col-md-8 col-sm-10 col-xs-12\">\r\n<h2 class=\"h1 bg-text-fx bg-text-fx-closeheavy\" style=\"color: #ffffff; text-align: center;\">ESTATES AT NUEVO</h2>\r\n<h2 class=\"intro__title\" style=\"font-weight: 600; font-size: 32px; color: #ffffff;\" data-font-weight=\"600\">Ultimate Luxury Meets Ultimate Nature</h2>\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-12\"></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 25px 4em 0px;\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"https://www.estatesatnuevo.com/estates-4-bedroom\"><b>4 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"https://www.estatesatnuevo.com/estates-3-bedroom\"><b>3 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"https://www.estatesatnuevo.com/estates-2-bedroom\"><b>2 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"https://www.estatesatnuevo.com/estates-1-bedroom\"><b>1 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 60px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6 color4-background-color color-4-text-contrast bg-background-color\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">RESORT INFO</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>The Estates at Nuevo&nbsp; Luxury Vacation Condos are the pinnacle of luxury and service within our Vidanta resort group. Nestled between the Pacific Ocean and the Sierra Madre Mountains, Estates at Nuevo is a Mexican tropical beach paradise vacation that offers the ultimate Mexican resort vacation. As the biggest of the Vidanta destinations, it has been carefully cultivated to provide a high-end experience full of options:&nbsp; luxury vacation condos,&nbsp; restaurants and lounges&nbsp; golf courses, a shopping plaza, two indulgent spas, beautiful beaches, and countless pools.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">DINING</h3>\r\n<p class=\"\"><span>With over 40 restaurants and lounges to choose from, Estates at Nuevo gives guests the opportunity to dine however they like. Options range from high-end eateries to casual restaurants to authentic Mexican spots, and even a gourmet market filled with offerings from all over the world. One thing is for sure—an amazing culinary experience is always just a meal away.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color5-background-color color-5-text-contrast bg-background-color\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">ACTIVITIES</h3>\r\n<p class=\"\"><span>The Estates Vacation offers a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, a number of pool &amp; poolside activities including water polo, water volleyball, aqua aerobics, Paddle Board stretching class, Salsa lessons, Spanish class, arts &amp; crafts, Guacamole making class. Kids Club, Beach, Tours, and Night time Shows.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding: 3em 4em 1em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">About Us</h2>\r\n<h3 class=\"\">WE CARE ABOUT YOUR VACATION</h3>\r\n<div><span class=\"\">We are owners at the Estates at Nuevo Luxury Condo Suites at the Vidanta Resorts.&nbsp; We also own at the Grand Luxxe Vacation resort.&nbsp; There are several of the Vidanta resorts in Mexico but we love the Nuevo Vallarta site because it has the most to offer.&nbsp; &nbsp;</span></div>\r\n<p class=\"\">We work with other owners so we have a larger selection of rentals available. Some have already been secured with the resort and are ready to book.&nbsp; If not, then we can check on availability for your specific time frame.</p>\r\n<p class=\"\">Always happy to answer any questions you may have about the resort and ourselves.&nbsp;&nbsp;</p>\r\n<p class=\"\">Thanks!&nbsp; Linda and Frank Helman</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 align-column-center\"><span class=\"\">From the moment you arrive, you will sense the difference with personalized attention 24/7 and the exclusivity in private beach and pool areas that are intimate and tranquil. At Vidanta’s Estates at Nuevo Vacation Mexican resort, we invite you to explore the gardens and landscaping, enjoy the ocean breeze, the unparalleled panoramic view of the Pacific Ocean in a magnificent sunset, and the natural biodiversity of the Bandera’s bay. It is the kind of extraordinary Mexican vacation experience you want, and the kind of service you deserve and expect.</span></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 0em 3em 90px;\">\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-110\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"k8m4Uj5JJAQ\" data-imhwpb-asset-id=\"1111013\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-111\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"r1tjlHBnHzY\" data-imhwpb-asset-id=\"1111014\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-112\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"l5gzNmXTzIg\" data-imhwpb-asset-id=\"1111015\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-113\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"\" data-imhwpb-asset-id=\"1111016\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-114\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"sBtqOe23bd0\" data-imhwpb-asset-id=\"1111017\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-115\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"B8He4PJkMLg\" data-imhwpb-asset-id=\"1111018\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\'); background-size: cover; background-position: 50% 58%;\" data-imhwpb-asset-id=\"1111020\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding: 75px 2em 4em;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-key\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Vacation GOLF</h3>\r\n<p class=\"H1\" data-font-weight=\"600\">Two Designer Courses, a Par 3 Lighted Course, and a State-of-the Art Instructional Academy.&nbsp; Estates at Nuevo boasts the most comprehensive golf offerings in the area. PGA tournament in 2023 here!</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-star-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Special NEEDS</h3>\r\n<p class=\"\">Do you have a special need? Wheelchairs are available for rent and special golf carts will take you around the property.&nbsp; Need a baby crib or child care? We can handle that too.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container-fluid\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding: 3em 4em 2em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">Our Location</h2>\r\n<p class=\"\">Because we put the customer first, we always have free transportation from the airport to the resort and to your living suite.&nbsp;</p>\r\n<p class=\"\">Review the room details and let us know how we can help you have the best vacation possible.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More </a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 bg-box-flush\">\r\n\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','97-revision-v1','','','2022-03-26 21:38:42','2022-03-26 21:38:42','',97,'https://estatesatnuevo.com/?p=234',0,'revision','',0),(173,1,'2022-03-26 20:34:06','2022-03-26 20:34:06','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 text-center col-xs-12 col-sm-12 text-center col-lg-12\">\r\n<h1 class=\"intro__title color3-color\" style=\"font-weight: 600; font-size: 32px;\" data-font-weight=\"600\">Estates 3 Bedroom Luxury Condo</h1>\r\n<p class=\"color3-color\" style=\"text-align: left; font-weight: 600;\" data-font-weight=\"600\"><span style=\"font-size: 17.5px; text-align: center;\"><span>This beautiful space features a gourmet kitchen outfitted with a breakfast bar and all the finest appliances, a stylish dining area, a lounge area with TV, two bedrooms with a king bed and a TV, another bedroom with two twin beds and a TV, five bathrooms including three with a Jacuzzi tub, and a large terrace complete with beautiful outdoor furnishings and a private plunge pool.</span>&nbsp; The Estates 3 Bedroom Luxury Condo accommodates 10 adults and 2 children.</span></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\" style=\"padding-left: 11em;\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\" style=\"padding: 0em;\"><img class=\"alignnone wp-image-175 \" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3dining-300x184.jpg\" alt=\"\" width=\"703\" height=\"431\" data-imhwpb-built-photo-search=\"108|landscape\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\r\n<div class=\"image-gallery\">\r\n\r\n<img class=\"alignnone wp-image-176 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3deck-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\">\r\n<p class=\"\"><img class=\"alignnone wp-image-202 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3bath-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n\r\n[caption id=\"attachment_1995\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1995 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-walkway-300x184.jpg\" alt=\"Walkway to Estates pools and shops\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Walkway to Estates pools and shops[/caption]\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\r\n<div class=\"image-gallery\">\r\n\r\n<img class=\"alignnone wp-image-177 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3bed-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\">\r\n\r\n<img class=\"alignnone wp-image-208 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3rooom-1-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\">\r\n\r\n[caption id=\"attachment_1990\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1990 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-2pools-300x184.jpg\" alt=\"Estates pools\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Estates private pools[/caption]\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\"><img class=\"alignnone wp-image-204 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3bed2-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n\r\n[caption id=\"attachment_1993\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-1993 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-beachland-300x184.jpg\" alt=\"Estates only pool section\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Estates only pool section[/caption]\r\n<p class=\"\"><img class=\"alignnone wp-image-193 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-pool-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12 col-lg-6\" style=\"padding-left: 2.6em;\">\r\n<p class=\"\" style=\"font-size: 18px; color: #000000; font-weight: 600; line-height: 1.5em;\" data-font-weight=\"600\">Reduced or free golf fees and 2 for 1 basic 50-minute massages plus use of all facilities of the gym and spa free of charge.&nbsp; This includes facilities only and does not include food and beverages, facial or other spa treatments, personal training or any other services available at the gym or spa.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Complimentary morning coffee/tea service. A safety deposit box in each bedroom. Daily maid service and chocolates on your pillow at night!</p>\r\n<p class=\"\" style=\"font-size: 18px; font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">All units are a minimum of 7 nights with check-ins Friday-Monday.</p>\r\n<p class=\"\" style=\"font-weight: 600; font-size: 18px; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\"><strong><a class=\"\" href=\" https://www.GrandLuxxe-Vacation.com/home/contact-us/\">E-mail </a></strong>for details and we will do our best to get you the unit you desire. Click the word e-mail for a link.</p>\r\n<p class=\"\"><iframe style=\"overflow: hidden; display: block; margin: 0 auto; width: 100%; max-width: 400px; min-height: 400px;\" src=\"https://www.houfy.com/embed/67766/pricing\" frameborder=\"“0&quot;\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n<p class=\"\" style=\"font-weight: 600;\" data-font-weight=\"600\">Please ask any questions prior to your reservation request.&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding-right: 2.4em;\">\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\"><span style=\"font-size: 17.5px;\">Free in-room Internet access.&nbsp;&nbsp;</span></p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Tennis Courts - Use of the courts free of charge includes se of facilities and use of towels only and not the cost of nighttime illumination, rental or purchase of equipment, food and beverages, or any other expenses associated with the use of tennis courts.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Butler Service - a butler is assigned to assist your every need. Making reservations, etc.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Restaurant Reservations - Advise concierge of where you would like to eat and at what time and how many in your party (Reservations must be made 24 hours in advance).</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Spa Services - Rest, Relax, and Rejuvenate. Take advantage of the many massage and body treatments offered at the BRIO Spa &amp; Fitness Center. (Reservations must be made 72 hours in advance).</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Tee Times/Golf Reservations - Enjoy advance booking for your rounds of golf. Call the Pro Shop 72 hours in advance to book your tee times.</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Check-in - Enjoy an exclusive check in experience, free of long lines and waiting time.</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred View - The most desirable views subject to space availability.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Estates 3 Bedroom','','publish','closed','closed','','estates-3-bedroom','','','2022-04-17 12:55:15','2022-04-17 12:55:15','',97,'https://estatesatnuevo.com/?page_id=173',0,'page','',0),(174,1,'2022-03-26 19:25:46','2022-03-26 19:25:46','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Estates 3 Bedroom','','inherit','closed','closed','','173-revision-v1','','','2022-03-26 19:25:46','2022-03-26 19:25:46','',173,'https://estatesatnuevo.com/?p=174',0,'revision','',0),(216,1,'2022-03-26 19:47:21','2022-03-26 19:47:21','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 text-center col-xs-12 col-sm-12 text-center\">\r\n<h1 class=\"intro__title\" style=\"color: #000000; font-weight: 600; font-size: 32px;\" data-font-weight=\"600\">3 BEDROOM</h1>\r\n<p class=\"\" style=\"text-align: left; color: #000000; font-weight: 600;\" data-font-weight=\"600\"><span style=\"font-size: 17.5px; text-align: center;\"><span>This beautiful space features a gourmet kitchen outfitted with a breakfast bar and all the finest appliances, a stylish dining area, a lounge area with TV, two bedrooms with a king bed and a TV, another bedroom with two twin beds and a TV, five bathrooms including three with a Jacuzzi tub, and a large terrace complete with beautiful outdoor furnishings and a private plunge pool.</span> Accommodates 10 adults and 2 children.</span></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\" style=\"padding-left: 11em;\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\" style=\"padding: 0em;\"><img class=\"alignnone wp-image-175 \" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3dining-300x184.jpg\" alt=\"\" width=\"703\" height=\"431\" data-imhwpb-built-photo-search=\"108|landscape\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n\r\n<img class=\"alignnone wp-image-176 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3deck-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\">\r\n<p class=\"\"><img class=\"alignnone wp-image-202 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3bath-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n\r\n[caption id=\"attachment_1995\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1995 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-walkway-300x184.jpg\" alt=\"Walkway to Estates pools and shops\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Walkway to Estates pools and shops[/caption]\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n\r\n<img class=\"alignnone wp-image-177 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3bed-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\">\r\n\r\n<img class=\"alignnone wp-image-208 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3rooom-1-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\">\r\n\r\n[caption id=\"attachment_1990\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1990 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-2pools-300x184.jpg\" alt=\"Estates pools\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Estates private pools[/caption]\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\"><img class=\"alignnone wp-image-204 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3bed2-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n\r\n[caption id=\"attachment_1993\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-1993 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-beachland-300x184.jpg\" alt=\"Estates only pool section\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Estates only pool section[/caption]\r\n\r\n<img class=\"alignnone wp-image-193 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-pool-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\">\r\n<p class=\"mod-img\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\" style=\"padding-left: 2.6em;\">\r\n<p class=\"\" style=\"font-size: 18px; color: #000000; font-weight: 600; line-height: 1.5em;\" data-font-weight=\"600\">Reduced or free golf fees and 2 for 1 basic 50-minute massages plus use of all facilities of the gym and spa free of charge.&nbsp; This includes facilities only and does not include food and beverages, facial or other spa treatments, personal training or any other services available at the gym or spa.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Complimentary morning coffee/tea service. A safety deposit box in each bedroom. Daily maid service and chocolates on your pillow at night!</p>\r\n<p class=\"\" style=\"font-size: 18px; font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">All units are a minimum of 7 nights with check-ins Friday-Monday.</p>\r\n<p class=\"\" style=\"font-weight: 600; font-size: 18px; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\"><strong><a class=\"\" href=\" https://www.GrandLuxxe-Vacation.com/home/contact-us/\">E-mail </a></strong>for details and we will do our best to get you the unit you desire. Click the word e-mail for a link.</p>\r\n<p class=\"\"><iframe style=\"overflow: hidden; display: block; margin: 0 auto; width: 100%; max-width: 400px; min-height: 400px;\" src=\"https://www.houfy.com/embed/7151/pricing\" frameborder=\"“0&quot;\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n<p class=\"\" style=\"font-weight: 600;\" data-font-weight=\"600\">Please ask any questions prior to your reservation request.&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding-right: 2.4em;\">\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\"><span style=\"font-size: 17.5px;\">Free in-room Internet access.&nbsp;&nbsp;</span></p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Tennis Courts - Use of the courts free of charge includes se of facilities and use of towels only and not the cost of nighttime illumination, rental or purchase of equipment, food and beverages, or any other expenses associated with the use of tennis courts.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Butler Service - a butler is assigned to assist your every need. Making reservations, etc.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Restaurant Reservations - Advise concierge of where you would like to eat and at what time and how many in your party (Reservations must be made 24 hours in advance).</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Spa Services - Rest, Relax, and Rejuvenate. Take advantage of the many massage and body treatments offered at the BRIO Spa &amp; Fitness Center. (Reservations must be made 72 hours in advance).</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Tee Times/Golf Reservations - Enjoy advance booking for your rounds of golf. Call the Pro Shop 72 hours in advance to book your tee times.</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Check-in - Enjoy an exclusive check in experience, free of long lines and waiting time.</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred View - The most desirable views subject to space availability.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Estates 3 Bedroom','','inherit','closed','closed','','173-revision-v1','','','2022-03-26 19:47:21','2022-03-26 19:47:21','',173,'https://estatesatnuevo.com/?p=216',0,'revision','',0),(178,1,'2022-03-26 19:35:05','2022-03-26 19:35:05','','estates3deck','','inherit','open','closed','','estates3deck-2','','','2022-03-26 19:35:05','2022-03-26 19:35:05','',173,'https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3deck-1.jpg',0,'attachment','image/jpeg',0),(175,1,'2022-03-26 19:29:58','2022-03-26 19:29:58','','estates3','','inherit','open','closed','','estates3dining','','','2022-03-26 19:30:15','2022-03-26 19:30:15','',173,'https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3dining.jpg',0,'attachment','image/jpeg',0),(176,1,'2022-03-26 19:33:37','2022-03-26 19:33:37','','estates3deck','','inherit','open','closed','','estates3deck','','','2022-03-26 19:33:37','2022-03-26 19:33:37','',173,'https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3deck.jpg',0,'attachment','image/jpeg',0),(177,1,'2022-03-26 19:34:35','2022-03-26 19:34:35','','estates3bed','','inherit','open','closed','','estates3bed','','','2022-03-26 19:34:35','2022-03-26 19:34:35','',173,'https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3bed.jpg',0,'attachment','image/jpeg',0),(217,1,'2022-03-26 19:55:13','2022-03-26 19:55:13','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 text-center col-xs-12 col-sm-12 text-center\">\r\n<h1 class=\"intro__title\" style=\"color: #000000; font-weight: 600; font-size: 32px;\" data-font-weight=\"600\">Estates 3 Bedroom Luxury Condo</h1>\r\n<p class=\"\" style=\"text-align: left; color: #000000; font-weight: 600;\" data-font-weight=\"600\"><span style=\"font-size: 17.5px; text-align: center;\"><span>This beautiful space features a gourmet kitchen outfitted with a breakfast bar and all the finest appliances, a stylish dining area, a lounge area with TV, two bedrooms with a king bed and a TV, another bedroom with two twin beds and a TV, five bathrooms including three with a Jacuzzi tub, and a large terrace complete with beautiful outdoor furnishings and a private plunge pool.</span>&nbsp; The Estates 3 Bedroom Luxury Condo accommodates 10 adults and 2 children.</span></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\" style=\"padding-left: 11em;\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\" style=\"padding: 0em;\"><img class=\"alignnone wp-image-175 \" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3dining-300x184.jpg\" alt=\"\" width=\"703\" height=\"431\" data-imhwpb-built-photo-search=\"108|landscape\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n\r\n<img class=\"alignnone wp-image-176 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3deck-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\">\r\n<p class=\"\"><img class=\"alignnone wp-image-202 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3bath-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n\r\n[caption id=\"attachment_1995\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1995 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-walkway-300x184.jpg\" alt=\"Walkway to Estates pools and shops\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Walkway to Estates pools and shops[/caption]\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n\r\n<img class=\"alignnone wp-image-177 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3bed-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\">\r\n\r\n<img class=\"alignnone wp-image-208 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3rooom-1-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\">\r\n\r\n[caption id=\"attachment_1990\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1990 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-2pools-300x184.jpg\" alt=\"Estates pools\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Estates private pools[/caption]\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\"><img class=\"alignnone wp-image-204 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3bed2-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n\r\n[caption id=\"attachment_1993\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-1993 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-beachland-300x184.jpg\" alt=\"Estates only pool section\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Estates only pool section[/caption]\r\n\r\n<img class=\"alignnone wp-image-193 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-pool-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\">\r\n<p class=\"mod-img\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\" style=\"padding-left: 2.6em;\">\r\n<p class=\"\" style=\"font-size: 18px; color: #000000; font-weight: 600; line-height: 1.5em;\" data-font-weight=\"600\">Reduced or free golf fees and 2 for 1 basic 50-minute massages plus use of all facilities of the gym and spa free of charge.&nbsp; This includes facilities only and does not include food and beverages, facial or other spa treatments, personal training or any other services available at the gym or spa.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Complimentary morning coffee/tea service. A safety deposit box in each bedroom. Daily maid service and chocolates on your pillow at night!</p>\r\n<p class=\"\" style=\"font-size: 18px; font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">All units are a minimum of 7 nights with check-ins Friday-Monday.</p>\r\n<p class=\"\" style=\"font-weight: 600; font-size: 18px; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\"><strong><a class=\"\" href=\" https://www.GrandLuxxe-Vacation.com/home/contact-us/\">E-mail </a></strong>for details and we will do our best to get you the unit you desire. Click the word e-mail for a link.</p>\r\n<p class=\"\"><iframe style=\"overflow: hidden; display: block; margin: 0 auto; width: 100%; max-width: 400px; min-height: 400px;\" src=\"https://www.houfy.com/embed/7151/pricing\" frameborder=\"“0&quot;\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n<p class=\"\" style=\"font-weight: 600;\" data-font-weight=\"600\">Please ask any questions prior to your reservation request.&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding-right: 2.4em;\">\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\"><span style=\"font-size: 17.5px;\">Free in-room Internet access.&nbsp;&nbsp;</span></p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Tennis Courts - Use of the courts free of charge includes se of facilities and use of towels only and not the cost of nighttime illumination, rental or purchase of equipment, food and beverages, or any other expenses associated with the use of tennis courts.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Butler Service - a butler is assigned to assist your every need. Making reservations, etc.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Restaurant Reservations - Advise concierge of where you would like to eat and at what time and how many in your party (Reservations must be made 24 hours in advance).</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Spa Services - Rest, Relax, and Rejuvenate. Take advantage of the many massage and body treatments offered at the BRIO Spa &amp; Fitness Center. (Reservations must be made 72 hours in advance).</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Tee Times/Golf Reservations - Enjoy advance booking for your rounds of golf. Call the Pro Shop 72 hours in advance to book your tee times.</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Check-in - Enjoy an exclusive check in experience, free of long lines and waiting time.</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred View - The most desirable views subject to space availability.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Estates 3 Bedroom','','inherit','closed','closed','','173-revision-v1','','','2022-03-26 19:55:13','2022-03-26 19:55:13','',173,'https://estatesatnuevo.com/?p=217',0,'revision','',0),(218,1,'2022-03-26 19:56:14','2022-03-26 19:56:14','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 text-center col-xs-12 col-sm-12 text-center\">\r\n<h1 class=\"intro__title\" style=\"color: #000000; font-weight: 600; font-size: 32px;\" data-font-weight=\"600\">Estates 2 Bedroom Luxury Condo</h1>\r\n<p class=\"\" style=\"text-align: left; color: #000000; font-weight: 600;\" data-font-weight=\"600\"><span style=\"font-size: 17.5px; text-align: center;\">This gorgeous space features a gourmet kitchen outfitted with a breakfast bar and all the finest appliances, a stylish dining area seating six, a lounge area with TV, a master bedroom with a king bed and a TV, another bedroom with two beds and a TV, three bathrooms including two with a Jacuzzi tub, and a large terrace complete with beautiful outdoor furnishings and a private plunge pool.&nbsp; The Estates 2 Bedroom Luxury Condo accommodates 6 adults and 2 children.</span></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_1997\" align=\"aligncenter\" width=\"630\"]<img class=\"wp-image-1997 size-full\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates2a.jpg\" alt=\"2 bed estates\" width=\"630\" height=\"386\" data-imhwpb-built-photo-search=\"108|landscape\"> 2 bed estates[/caption]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_2047\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-1996 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates2-300x184.jpg\" alt=\"estates 2\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> estates2beds[/caption]\r\n\r\n[caption id=\"attachment_2047\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-2047 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates2beds-300x184.jpg\" alt=\"estates 2\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> 2 bed estates[/caption]\r\n\r\n[caption id=\"attachment_1995\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1995 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-walkway-300x184.jpg\" alt=\"Walkway to Estates pools and shops\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Walkway to Estates pools and shops[/caption]\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_1998\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1998 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates2bed-300x184.jpg\" alt=\"estates 2 bed\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Master bedroom 2 bed estates[/caption]\r\n\r\n[caption id=\"attachment_2046\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-2046 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates2bedbath-300x184.jpg\" alt=\"estates2bedbath\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> estates2bedbath[/caption]\r\n\r\n[caption id=\"attachment_1990\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1990 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-2pools-300x184.jpg\" alt=\"Estates pools\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Estates private pools[/caption]\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_1999\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1999 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates2deck-300x184.jpg\" alt=\"estates2deck\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> estates2deck[/caption]\r\n\r\n[caption id=\"attachment_1993\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-1993 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-beachland-300x184.jpg\" alt=\"Estates only pool section\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Estates only pool section[/caption]\r\n\r\n[caption id=\"attachment_2052\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-2052 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/2bedestateplan-300x208.jpeg\" alt=\"2bed estate floorplan\" width=\"300\" height=\"208\" data-imhwpb-built-photo-search=\"108|square\"> 2bed estate floorplan[/caption]\r\n<p class=\"mod-img\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\" style=\"padding-left: 2.6em;\">\r\n<p class=\"\" style=\"font-size: 18px; color: #000000; font-weight: 600; line-height: 1.5em;\" data-font-weight=\"600\">Reduced golf fees and 2 for 1 basic 50-minute massages plus use of all facilities of the gym and spa free of charge.&nbsp; This includes facilities only and does not include food and beverages, facial or other spa treatments, personal training or any other services available at the gym or spa.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Complimentary morning coffee/tea service. A safety deposit box in each bedroom. Daily maid service and chocolates on your pillow at night!</p>\r\n<p class=\"\" style=\"font-size: 18px; font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">All units are a minimum of 7 nights with check-ins Friday-Monday.</p>\r\n<p class=\"\" style=\"font-weight: 600; font-size: 18px; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\"><strong><a class=\"\" href=\" https://www.GrandLuxxe-Vacation.com/home/contact-us/\">E-mail </a></strong>for details and we will do our best to get you the unit you desire. Click the word e-mail for a link.</p>\r\n<p class=\"\"><iframe style=\"overflow: hidden; display: block; margin: 0 auto; width: 100%; max-width: 400px; min-height: 400px;\" src=\"https://www.houfy.com/embed/7151/pricing\" frameborder=\"“0&quot;\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n<p class=\"\" style=\"font-weight: 600;\" data-font-weight=\"600\">Please ask any questions prior to your reservation request.&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding-right: 2.4em;\">\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\"><span style=\"font-size: 17.5px;\">Free in-room Internet access.&nbsp;&nbsp;</span></p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Tennis Courts - Use of the courts free of charge includes se of facilities and use of towels only and not the cost of nighttime illumination, rental or purchase of equipment, food and beverages, or any other expenses associated with the use of tennis courts.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Butler Service - a butler is assigned to assist your every need. Making reservations, etc.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Restaurant Reservations - Advise concierge of where you would like to eat and at what time and how many in your party (Reservations must be made 24 hours in advance).</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Spa Services - Rest, Relax, and Rejuvenate. Take advantage of the many massage and body treatments offered at the BRIO Spa &amp; Fitness Center. (Reservations must be made 72 hours in advance).</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Tee Times/Golf Reservations - Enjoy advance booking for your rounds of golf. Call the Pro Shop 72 hours in advance to book your tee times.</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Check-in - Enjoy an exclusive check in experience, free of long lines and waiting time.</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred View - The most desirable views subject to space availability.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Estates 2 Bedroom','','inherit','closed','closed','','170-revision-v1','','','2022-03-26 19:56:14','2022-03-26 19:56:14','',170,'https://estatesatnuevo.com/?p=218',0,'revision','',0),(219,1,'2022-03-26 20:33:42','2022-03-26 20:33:42','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 27px;\">\r\n<div class=\"col-md-12 text-center col-xs-12 col-sm-12 text-center col-lg-12\">\r\n<h1 class=\"intro__title color3-color\" style=\"font-weight: 600; font-size: 32px;\" data-font-weight=\"600\">Estates 1 Bedroom Luxury Condo</h1>\r\n<p class=\"color3-color\" style=\"text-align: left; font-weight: 600;\" data-font-weight=\"600\"><span style=\"font-size: 17.5px; text-align: center;\"><span>This gorgeous space features a gourmet kitchen outfitted with all the finest appliances, a stylish dining area seating six, a separate lounge area with TV, a bedroom with a king bed and a TV, two bathrooms including one with a Jacuzzi tub, and a large terrace complete with beautiful outdoor furnishings. </span>The Estates 1 Bedroom Luxury Condo accommodates 4 adults.</span></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-1 col-sm-12 col-xs-12 col-lg-1\"></div>\r\n<div class=\"col-md-10 col-xs-12 col-sm-12 align-column-center col-lg-10\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\" style=\"padding: 4em;\"><span class=\"\"></span><img class=\"align=aligncenter\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-1-300x184.jpg\" alt=\"\" width=\"630\" height=\"386\" data-imhwpb-built-photo-search=\"108|landscape\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12 col-lg-1\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\"><img class=\"alignnone wp-image-208 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3rooom-1-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n\r\n[caption id=\"attachment_1995\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1995 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-walkway-300x184.jpg\" alt=\"Walkway to Estates pools and shops\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Walkway to Estates pools and shops[/caption]\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\"><img class=\"alignnone wp-image-185 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-1bed-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n\r\n[caption id=\"attachment_1990\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1990 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-2pools-300x184.jpg\" alt=\"Estates pools\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Estates private pools[/caption]\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\"><img class=\"alignnone wp-image-184 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-1-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n\r\n[caption id=\"attachment_1993\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-1993 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-beachland-300x184.jpg\" alt=\"Estates only pool section\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Estates only pool section[/caption]\r\n<p class=\"mod-img\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12 col-lg-6\" style=\"padding-left: 2.6em;\">\r\n<p class=\"\" style=\"font-size: 18px; color: #000000; font-weight: 600; line-height: 1.5em;\" data-font-weight=\"600\">Reduced golf fees and 2 for 1 basic 50-minute massages plus use of all facilities of the gym and spa free of charge.&nbsp; This includes facilities only and does not include food and beverages, facial or other spa treatments, personal training or any other services available at the gym or spa.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Complimentary morning coffee/tea service. A safety deposit box in each bedroom. Daily maid service and chocolates on your pillow at night!</p>\r\n<p class=\"\" style=\"font-size: 18px; font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">All units are a minimum of 7 nights with check-ins Friday-Monday.</p>\r\n<p class=\"\" style=\"font-weight: 600; font-size: 18px; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\"><strong><a class=\"\" href=\" https://www.GrandLuxxe-Vacation.com/home/contact-us/\">E-mail </a></strong>for details and we will do our best to get you the unit you desire. Click the word e-mail for a link.</p>\r\n<p class=\"\"><iframe style=\"overflow: hidden; display: block; margin: 0 auto; width: 100%; max-width: 400px; min-height: 400px;\" src=\"https://www.houfy.com/embed/67716/pricing\" frameborder=\"“0&quot;\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n<p class=\"\" style=\"font-weight: 600;\" data-font-weight=\"600\">Please ask any questions prior to your reservation request.&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding-right: 2.4em;\">\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\"><span style=\"font-size: 17.5px;\">Free in-room Internet access.&nbsp;&nbsp;</span></p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Tennis Courts - Use of the courts free of charge includes se of facilities and use of towels only and not the cost of nighttime illumination, rental or purchase of equipment, food and beverages, or any other expenses associated with the use of tennis courts.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Butler Service - a butler is assigned to assist your every need. Making reservations, etc.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Restaurant Reservations - Advise concierge of where you would like to eat and at what time and how many in your party (Reservations must be made 24 hours in advance).</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Spa Services - Rest, Relax, and Rejuvenate. Take advantage of the many massage and body treatments offered at the BRIO Spa &amp; Fitness Center. (Reservations must be made 72 hours in advance).</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Tee Times/Golf Reservations - Enjoy advance booking for your rounds of golf. Call the Pro Shop 72 hours in advance to book your tee times.</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Check-in - Enjoy an exclusive check in experience, free of long lines and waiting time.</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred View - The most desirable views subject to space availability.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Estates 1 Bedroom','','publish','closed','closed','','estates-1-bedroom','','','2022-04-16 16:47:24','2022-04-16 16:47:24','',97,'https://estatesatnuevo.com/?page_id=219',0,'page','',0),(220,1,'2022-03-26 19:59:53','2022-03-26 19:59:53','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Estates 1 Bedroom','','inherit','closed','closed','','219-revision-v1','','','2022-03-26 19:59:53','2022-03-26 19:59:53','',219,'https://estatesatnuevo.com/?p=220',0,'revision','',0),(222,1,'2022-03-26 20:17:15','2022-03-26 20:17:15','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 text-center col-xs-12 col-sm-12 text-center\">\r\n<h1 class=\"intro__title\" style=\"color: #000000; font-weight: 600; font-size: 32px;\" data-font-weight=\"600\">Estates 1 Bedroom Luxury Condo</h1>\r\n<p class=\"\" style=\"text-align: left; color: #000000; font-weight: 600;\" data-font-weight=\"600\"><span style=\"font-size: 17.5px; text-align: center;\"><span>This gorgeous space features a gourmet kitchen outfitted with all the finest appliances, a stylish dining area seating six, a separate lounge area with TV, a bedroom with a king bed and a TV, two bathrooms including one with a Jacuzzi tub, and a large terrace complete with beautiful outdoor furnishings. </span>The Estates 1 Bedroom Luxury Condo accommodates 4 adults.</span></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-10 col-xs-12 col-sm-12 align-column-center\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\" style=\"padding: 4em;\"><span class=\"\"></span><img class=\"align=aligncenter\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-1-300x184.jpg\" alt=\"\" width=\"630\" height=\"386\" data-imhwpb-built-photo-search=\"108|landscape\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\"><img class=\"alignnone wp-image-208 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3rooom-1-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n\r\n[caption id=\"attachment_1995\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1995 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-walkway-300x184.jpg\" alt=\"Walkway to Estates pools and shops\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Walkway to Estates pools and shops[/caption]\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\"><img class=\"alignnone wp-image-185 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-1bed-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n\r\n[caption id=\"attachment_1990\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1990 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-2pools-300x184.jpg\" alt=\"Estates pools\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Estates private pools[/caption]\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n\r\n<img class=\"alignnone wp-image-184 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-1-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\">\r\n\r\n[caption id=\"attachment_1993\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-1993 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-beachland-300x184.jpg\" alt=\"Estates only pool section\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Estates only pool section[/caption]\r\n<p class=\"mod-img\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\" style=\"padding-left: 2.6em;\">\r\n<p class=\"\" style=\"font-size: 18px; color: #000000; font-weight: 600; line-height: 1.5em;\" data-font-weight=\"600\">Reduced golf fees and 2 for 1 basic 50-minute massages plus use of all facilities of the gym and spa free of charge.&nbsp; This includes facilities only and does not include food and beverages, facial or other spa treatments, personal training or any other services available at the gym or spa.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Complimentary morning coffee/tea service. A safety deposit box in each bedroom. Daily maid service and chocolates on your pillow at night!</p>\r\n<p class=\"\" style=\"font-size: 18px; font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">All units are a minimum of 7 nights with check-ins Friday-Monday.</p>\r\n<p class=\"\" style=\"font-weight: 600; font-size: 18px; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\"><strong><a class=\"\" href=\" https://www.GrandLuxxe-Vacation.com/home/contact-us/\">E-mail </a></strong>for details and we will do our best to get you the unit you desire. Click the word e-mail for a link.</p>\r\n<p class=\"\"><iframe style=\"overflow: hidden; display: block; margin: 0 auto; width: 100%; max-width: 400px; min-height: 400px;\" src=\"https://www.houfy.com/embed/7151/pricing\" frameborder=\"“0&quot;\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n<p class=\"\" style=\"font-weight: 600;\" data-font-weight=\"600\">Please ask any questions prior to your reservation request.&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding-right: 2.4em;\">\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\"><span style=\"font-size: 17.5px;\">Free in-room Internet access.&nbsp;&nbsp;</span></p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Tennis Courts - Use of the courts free of charge includes se of facilities and use of towels only and not the cost of nighttime illumination, rental or purchase of equipment, food and beverages, or any other expenses associated with the use of tennis courts.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Butler Service - a butler is assigned to assist your every need. Making reservations, etc.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Restaurant Reservations - Advise concierge of where you would like to eat and at what time and how many in your party (Reservations must be made 24 hours in advance).</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Spa Services - Rest, Relax, and Rejuvenate. Take advantage of the many massage and body treatments offered at the BRIO Spa &amp; Fitness Center. (Reservations must be made 72 hours in advance).</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Tee Times/Golf Reservations - Enjoy advance booking for your rounds of golf. Call the Pro Shop 72 hours in advance to book your tee times.</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Check-in - Enjoy an exclusive check in experience, free of long lines and waiting time.</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred View - The most desirable views subject to space availability.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Estates 1 Bedroom','','inherit','closed','closed','','219-revision-v1','','','2022-03-26 20:17:15','2022-03-26 20:17:15','',219,'https://estatesatnuevo.com/?p=222',0,'revision','',0),(221,1,'2022-03-26 20:02:12','2022-03-26 20:02:12','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 text-center col-xs-12 col-sm-12 text-center\">\r\n<h1 class=\"intro__title\" style=\"color: #000000; font-weight: 600; font-size: 32px;\" data-font-weight=\"600\">Estates 1 Bedroom Luxury Condo</h1>\r\n<p class=\"\" style=\"text-align: left; color: #000000; font-weight: 600;\" data-font-weight=\"600\"><span style=\"font-size: 17.5px; text-align: center;\"><span>This gorgeous space features a gourmet kitchen outfitted with all the finest appliances, a stylish dining area seating six, a separate lounge area with TV, a bedroom with a king bed and a TV, two bathrooms including one with a Jacuzzi tub, and a large terrace complete with beautiful outdoor furnishings. </span>The Estates 1 Bedroom Luxury Condo accommodates 4 adults.</span></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_1997\" align=\"aligncenter\" width=\"630\"]<img class=\"wp-image-1997 size-full\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates2a.jpg\" alt=\"2 bed estates\" width=\"630\" height=\"386\" data-imhwpb-built-photo-search=\"108|landscape\"> 2 bed estates[/caption]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_2047\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-1996 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates2-300x184.jpg\" alt=\"estates 2\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> estates2beds[/caption]\r\n\r\n[caption id=\"attachment_2047\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-2047 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates2beds-300x184.jpg\" alt=\"estates 2\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> 2 bed estates[/caption]\r\n\r\n[caption id=\"attachment_1995\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1995 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-walkway-300x184.jpg\" alt=\"Walkway to Estates pools and shops\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Walkway to Estates pools and shops[/caption]\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_1998\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1998 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates2bed-300x184.jpg\" alt=\"estates 2 bed\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Master bedroom 2 bed estates[/caption]\r\n\r\n[caption id=\"attachment_2046\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-2046 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates2bedbath-300x184.jpg\" alt=\"estates2bedbath\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> estates2bedbath[/caption]\r\n\r\n[caption id=\"attachment_1990\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1990 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-2pools-300x184.jpg\" alt=\"Estates pools\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Estates private pools[/caption]\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_1999\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1999 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates2deck-300x184.jpg\" alt=\"estates2deck\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> estates2deck[/caption]\r\n\r\n[caption id=\"attachment_1993\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-1993 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-beachland-300x184.jpg\" alt=\"Estates only pool section\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Estates only pool section[/caption]\r\n\r\n[caption id=\"attachment_2052\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-2052 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/2bedestateplan-300x208.jpeg\" alt=\"2bed estate floorplan\" width=\"300\" height=\"208\" data-imhwpb-built-photo-search=\"108|square\"> 2bed estate floorplan[/caption]\r\n<p class=\"mod-img\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\" style=\"padding-left: 2.6em;\">\r\n<p class=\"\" style=\"font-size: 18px; color: #000000; font-weight: 600; line-height: 1.5em;\" data-font-weight=\"600\">Reduced golf fees and 2 for 1 basic 50-minute massages plus use of all facilities of the gym and spa free of charge.&nbsp; This includes facilities only and does not include food and beverages, facial or other spa treatments, personal training or any other services available at the gym or spa.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Complimentary morning coffee/tea service. A safety deposit box in each bedroom. Daily maid service and chocolates on your pillow at night!</p>\r\n<p class=\"\" style=\"font-size: 18px; font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">All units are a minimum of 7 nights with check-ins Friday-Monday.</p>\r\n<p class=\"\" style=\"font-weight: 600; font-size: 18px; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\"><strong><a class=\"\" href=\" https://www.GrandLuxxe-Vacation.com/home/contact-us/\">E-mail </a></strong>for details and we will do our best to get you the unit you desire. Click the word e-mail for a link.</p>\r\n<p class=\"\"><iframe style=\"overflow: hidden; display: block; margin: 0 auto; width: 100%; max-width: 400px; min-height: 400px;\" src=\"https://www.houfy.com/embed/7151/pricing\" frameborder=\"“0&quot;\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n<p class=\"\" style=\"font-weight: 600;\" data-font-weight=\"600\">Please ask any questions prior to your reservation request.&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding-right: 2.4em;\">\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\"><span style=\"font-size: 17.5px;\">Free in-room Internet access.&nbsp;&nbsp;</span></p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Tennis Courts - Use of the courts free of charge includes se of facilities and use of towels only and not the cost of nighttime illumination, rental or purchase of equipment, food and beverages, or any other expenses associated with the use of tennis courts.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Butler Service - a butler is assigned to assist your every need. Making reservations, etc.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Restaurant Reservations - Advise concierge of where you would like to eat and at what time and how many in your party (Reservations must be made 24 hours in advance).</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Spa Services - Rest, Relax, and Rejuvenate. Take advantage of the many massage and body treatments offered at the BRIO Spa &amp; Fitness Center. (Reservations must be made 72 hours in advance).</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Tee Times/Golf Reservations - Enjoy advance booking for your rounds of golf. Call the Pro Shop 72 hours in advance to book your tee times.</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Check-in - Enjoy an exclusive check in experience, free of long lines and waiting time.</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred View - The most desirable views subject to space availability.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Estates 1 Bedroom','','inherit','closed','closed','','219-revision-v1','','','2022-03-26 20:02:12','2022-03-26 20:02:12','',219,'https://estatesatnuevo.com/?p=221',0,'revision','',0),(223,1,'2022-03-26 20:24:50','2022-03-26 20:24:50','<div class=\"boldgrid-section\" style=\"color: #ffffff; background-image: linear-gradient(to left, rgba(26, 26, 26, 0.5), rgba(26, 26, 26, 0.5)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1NTLWQ0bk1Od2lRLzE5MjB4MTI4Mg_3D_3D-imhwpb-l6lnwj9f34ljpy1.jpg\'); background-size: cover; background-position: 50% 75%;\" data-imhwpb-asset-id=\"1111019\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1NTLWQ0bk1Od2lRLzE5MjB4MTI4Mg_3D_3D-imhwpb-l6lnwj9f34ljpy1.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-md-2 col-sm-2 col-xs-12\"></div>\r\n<div class=\"col-md-8 col-sm-10 col-xs-12\">\r\n<h2 class=\"h1 bg-text-fx bg-text-fx-closeheavy\" style=\"color: #ffffff; text-align: center;\">ESTATES AT NUEVO</h2>\r\n<h1 class=\"intro__title\" style=\"font-weight: 600; font-size: 32px; color: #ffffff;\" data-font-weight=\"600\">Ultimate Luxury Meets Ultimate Nature</h1>\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-12\"></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 25px 4em 0px;\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"https://www.estatesatnuevo.com/estates-4-bedroom\"><b>4 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><b>3 Bedroom</b></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><b>2 Bedroom</b></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><b>1 Bedroom</b></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 60px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6 color4-background-color color-4-text-contrast bg-background-color\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">RESORT INFO</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>The Estates at Nuevo&nbsp; Luxury Vacation Condos are the pinnacle of luxury and service within our Vidanta resort group. Nestled between the Pacific Ocean and the Sierra Madre Mountains, Estates at Nuevo is a Mexican tropical beach paradise vacation that offers the ultimate Mexican resort vacation. As the biggest of the Vidanta destinations, it has been carefully cultivated to provide a high-end experience full of options:&nbsp; luxury vacation condos,&nbsp; restaurants and lounges&nbsp; golf courses, a shopping plaza, two indulgent spas, beautiful beaches, and countless pools.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">DINING</h3>\r\n<p class=\"\"><span>With over 40 restaurants and lounges to choose from, Estates at Nuevo gives guests the opportunity to dine however they like. Options range from high-end eateries to casual restaurants to authentic Mexican spots, and even a gourmet market filled with offerings from all over the world. One thing is for sure—an amazing culinary experience is always just a meal away.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color5-background-color color-5-text-contrast bg-background-color\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">ACTIVITIES</h3>\r\n<p class=\"\"><span>The Estates Vacation offers a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, a number of pool &amp; poolside activities including water polo, water volleyball, aqua aerobics, Paddle Board stretching class, Salsa lessons, Spanish class, arts &amp; crafts, Guacamole making class. Kids Club, Beach, Tours, and Night time Shows.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding: 3em 4em 1em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">About Us</h2>\r\n<h3 class=\"\">WE CARE ABOUT YOUR VACATION</h3>\r\n<div><span class=\"\">We are owners at the Estates at Nuevo Luxury Condo Suites at the Vidanta Resorts.&nbsp; We also own at the Grand Luxxe Vacation resort.&nbsp; There are several of the Vidanta resorts in Mexico but we love the Nuevo Vallarta site because it has the most to offer.&nbsp; &nbsp;</span></div>\r\n<p class=\"\">We work with other owners so we have a larger selection of rentals available. Some have already been secured with the resort and are ready to book.&nbsp; If not, then we can check on availability for your specific time frame.</p>\r\n<p class=\"\">Always happy to answer any questions you may have about the resort and ourselves.&nbsp;&nbsp;</p>\r\n<p class=\"\">Thanks!&nbsp; Linda and Frank Helman</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 align-column-center\"><span class=\"\">From the moment you arrive, you will sense the difference with personalized attention 24/7 and the exclusivity in private beach and pool areas that are intimate and tranquil. At Vidanta’s Estates at Nuevo Vacation Mexican resort, we invite you to explore the gardens and landscaping, enjoy the ocean breeze, the unparalleled panoramic view of the Pacific Ocean in a magnificent sunset, and the natural biodiversity of the Bandera’s bay. It is the kind of extraordinary Mexican vacation experience you want, and the kind of service you deserve and expect.</span></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 0em 3em 90px;\">\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-110\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"k8m4Uj5JJAQ\" data-imhwpb-asset-id=\"1111013\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-111\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"r1tjlHBnHzY\" data-imhwpb-asset-id=\"1111014\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-112\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"l5gzNmXTzIg\" data-imhwpb-asset-id=\"1111015\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-113\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"\" data-imhwpb-asset-id=\"1111016\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-114\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"sBtqOe23bd0\" data-imhwpb-asset-id=\"1111017\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-115\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"B8He4PJkMLg\" data-imhwpb-asset-id=\"1111018\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\'); background-size: cover; background-position: 50% 58%;\" data-imhwpb-asset-id=\"1111020\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding: 75px 2em 4em;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-key\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Vacation GOLF</h3>\r\n<p class=\"H1\" data-font-weight=\"600\">Two Designer Courses, a Par 3 Lighted Course, and a State-of-the Art Instructional Academy.&nbsp; Estates at Nuevo boasts the most comprehensive golf offerings in the area. PGA tournament in 2023 here!</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-star-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Special NEEDS</h3>\r\n<p class=\"\">Do you have a special need? Wheelchairs are available for rent and special golf carts will take you around the property.&nbsp; Need a baby crib or child care? We can handle that too.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container-fluid\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding: 3em 4em 2em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">Our Location</h2>\r\n<p class=\"\">Because we put the customer first, we always have free transportation from the airport to the resort and to your living suite.&nbsp;</p>\r\n<p class=\"\">Review the room details and let us know how we can help you have the best vacation possible.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More </a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 bg-box-flush\">\r\n\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','97-revision-v1','','','2022-03-26 20:24:50','2022-03-26 20:24:50','',97,'https://estatesatnuevo.com/?p=223',0,'revision','',0),(224,1,'2022-03-26 20:30:43','2022-03-26 20:30:43','<div class=\"boldgrid-section\" style=\"color: #ffffff; background-image: linear-gradient(to left, rgba(26, 26, 26, 0.5), rgba(26, 26, 26, 0.5)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1NTLWQ0bk1Od2lRLzE5MjB4MTI4Mg_3D_3D-imhwpb-l6lnwj9f34ljpy1.jpg\'); background-size: cover; background-position: 50% 75%;\" data-imhwpb-asset-id=\"1111019\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1NTLWQ0bk1Od2lRLzE5MjB4MTI4Mg_3D_3D-imhwpb-l6lnwj9f34ljpy1.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-md-2 col-sm-2 col-xs-12\"></div>\r\n<div class=\"col-md-8 col-sm-10 col-xs-12\">\r\n<h2 class=\"h1 bg-text-fx bg-text-fx-closeheavy\" style=\"color: #ffffff; text-align: center;\">ESTATES AT NUEVO</h2>\r\n<h1 class=\"intro__title\" style=\"font-weight: 600; font-size: 32px; color: #ffffff;\" data-font-weight=\"600\">Ultimate Luxury Meets Ultimate Nature</h1>\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-12\"></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 25px 4em 0px;\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"https://www.estatesatnuevo.com/estates-4-bedroom\"><b>4 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"https://www.estatesatnuevo.com/estates-3-bedroom\"><b>3 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"https://www.estatesatnuevo.com/estates-2-bedroom\"><b>2 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"https://www.estatesatnuevo.com/estates-1-bedroom\"><b>1 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 60px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6 color4-background-color color-4-text-contrast bg-background-color\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">RESORT INFO</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>The Estates at Nuevo&nbsp; Luxury Vacation Condos are the pinnacle of luxury and service within our Vidanta resort group. Nestled between the Pacific Ocean and the Sierra Madre Mountains, Estates at Nuevo is a Mexican tropical beach paradise vacation that offers the ultimate Mexican resort vacation. As the biggest of the Vidanta destinations, it has been carefully cultivated to provide a high-end experience full of options:&nbsp; luxury vacation condos,&nbsp; restaurants and lounges&nbsp; golf courses, a shopping plaza, two indulgent spas, beautiful beaches, and countless pools.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">DINING</h3>\r\n<p class=\"\"><span>With over 40 restaurants and lounges to choose from, Estates at Nuevo gives guests the opportunity to dine however they like. Options range from high-end eateries to casual restaurants to authentic Mexican spots, and even a gourmet market filled with offerings from all over the world. One thing is for sure—an amazing culinary experience is always just a meal away.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color5-background-color color-5-text-contrast bg-background-color\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">ACTIVITIES</h3>\r\n<p class=\"\"><span>The Estates Vacation offers a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, a number of pool &amp; poolside activities including water polo, water volleyball, aqua aerobics, Paddle Board stretching class, Salsa lessons, Spanish class, arts &amp; crafts, Guacamole making class. Kids Club, Beach, Tours, and Night time Shows.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding: 3em 4em 1em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">About Us</h2>\r\n<h3 class=\"\">WE CARE ABOUT YOUR VACATION</h3>\r\n<div><span class=\"\">We are owners at the Estates at Nuevo Luxury Condo Suites at the Vidanta Resorts.&nbsp; We also own at the Grand Luxxe Vacation resort.&nbsp; There are several of the Vidanta resorts in Mexico but we love the Nuevo Vallarta site because it has the most to offer.&nbsp; &nbsp;</span></div>\r\n<p class=\"\">We work with other owners so we have a larger selection of rentals available. Some have already been secured with the resort and are ready to book.&nbsp; If not, then we can check on availability for your specific time frame.</p>\r\n<p class=\"\">Always happy to answer any questions you may have about the resort and ourselves.&nbsp;&nbsp;</p>\r\n<p class=\"\">Thanks!&nbsp; Linda and Frank Helman</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 align-column-center\"><span class=\"\">From the moment you arrive, you will sense the difference with personalized attention 24/7 and the exclusivity in private beach and pool areas that are intimate and tranquil. At Vidanta’s Estates at Nuevo Vacation Mexican resort, we invite you to explore the gardens and landscaping, enjoy the ocean breeze, the unparalleled panoramic view of the Pacific Ocean in a magnificent sunset, and the natural biodiversity of the Bandera’s bay. It is the kind of extraordinary Mexican vacation experience you want, and the kind of service you deserve and expect.</span></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 0em 3em 90px;\">\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-110\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"k8m4Uj5JJAQ\" data-imhwpb-asset-id=\"1111013\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-111\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"r1tjlHBnHzY\" data-imhwpb-asset-id=\"1111014\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-112\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"l5gzNmXTzIg\" data-imhwpb-asset-id=\"1111015\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-113\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"\" data-imhwpb-asset-id=\"1111016\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-114\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"sBtqOe23bd0\" data-imhwpb-asset-id=\"1111017\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-115\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"B8He4PJkMLg\" data-imhwpb-asset-id=\"1111018\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\'); background-size: cover; background-position: 50% 58%;\" data-imhwpb-asset-id=\"1111020\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding: 75px 2em 4em;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-key\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Vacation GOLF</h3>\r\n<p class=\"H1\" data-font-weight=\"600\">Two Designer Courses, a Par 3 Lighted Course, and a State-of-the Art Instructional Academy.&nbsp; Estates at Nuevo boasts the most comprehensive golf offerings in the area. PGA tournament in 2023 here!</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-star-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Special NEEDS</h3>\r\n<p class=\"\">Do you have a special need? Wheelchairs are available for rent and special golf carts will take you around the property.&nbsp; Need a baby crib or child care? We can handle that too.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container-fluid\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding: 3em 4em 2em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">Our Location</h2>\r\n<p class=\"\">Because we put the customer first, we always have free transportation from the airport to the resort and to your living suite.&nbsp;</p>\r\n<p class=\"\">Review the room details and let us know how we can help you have the best vacation possible.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More </a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 bg-box-flush\">\r\n\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','97-revision-v1','','','2022-03-26 20:30:43','2022-03-26 20:30:43','',97,'https://estatesatnuevo.com/?p=224',0,'revision','',0),(225,1,'2022-03-26 20:35:12','2022-03-26 20:35:12','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 text-center col-xs-12 col-sm-12 text-center\">\r\n<h1 class=\"intro__title\" style=\"color: #000000; font-weight: 600; font-size: 32px;\" data-font-weight=\"600\">Estates 3 Bedroom Luxury Condo</h1>\r\n<p class=\"\" style=\"text-align: left; color: #000000; font-weight: 600;\" data-font-weight=\"600\"><span style=\"font-size: 17.5px; text-align: center;\"><span>This beautiful space features a gourmet kitchen outfitted with a breakfast bar and all the finest appliances, a stylish dining area, a lounge area with TV, two bedrooms with a king bed and a TV, another bedroom with two twin beds and a TV, five bathrooms including three with a Jacuzzi tub, and a large terrace complete with beautiful outdoor furnishings and a private plunge pool.</span>&nbsp; The Estates 3 Bedroom Luxury Condo accommodates 10 adults and 2 children.</span></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\" style=\"padding-left: 11em;\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\" style=\"padding: 0em;\"><img class=\"alignnone wp-image-175 \" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3dining-300x184.jpg\" alt=\"\" width=\"703\" height=\"431\" data-imhwpb-built-photo-search=\"108|landscape\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n\r\n<img class=\"alignnone wp-image-176 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3deck-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\">\r\n<p class=\"\"><img class=\"alignnone wp-image-202 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3bath-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n\r\n[caption id=\"attachment_1995\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1995 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-walkway-300x184.jpg\" alt=\"Walkway to Estates pools and shops\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Walkway to Estates pools and shops[/caption]\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n\r\n<img class=\"alignnone wp-image-177 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3bed-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\">\r\n\r\n<img class=\"alignnone wp-image-208 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3rooom-1-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\">\r\n\r\n[caption id=\"attachment_1990\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1990 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-2pools-300x184.jpg\" alt=\"Estates pools\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Estates private pools[/caption]\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\"><img class=\"alignnone wp-image-204 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3bed2-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n\r\n[caption id=\"attachment_1993\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-1993 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-beachland-300x184.jpg\" alt=\"Estates only pool section\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Estates only pool section[/caption]\r\n\r\n<img class=\"alignnone wp-image-193 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-pool-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\">\r\n<p class=\"mod-img\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\" style=\"padding-left: 2.6em;\">\r\n<p class=\"\" style=\"font-size: 18px; color: #000000; font-weight: 600; line-height: 1.5em;\" data-font-weight=\"600\">Reduced or free golf fees and 2 for 1 basic 50-minute massages plus use of all facilities of the gym and spa free of charge.&nbsp; This includes facilities only and does not include food and beverages, facial or other spa treatments, personal training or any other services available at the gym or spa.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Complimentary morning coffee/tea service. A safety deposit box in each bedroom. Daily maid service and chocolates on your pillow at night!</p>\r\n<p class=\"\" style=\"font-size: 18px; font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">All units are a minimum of 7 nights with check-ins Friday-Monday.</p>\r\n<p class=\"\" style=\"font-weight: 600; font-size: 18px; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\"><strong><a class=\"\" href=\" https://www.GrandLuxxe-Vacation.com/home/contact-us/\">E-mail </a></strong>for details and we will do our best to get you the unit you desire. Click the word e-mail for a link.</p>\r\n<p class=\"\"><iframe style=\"overflow: hidden; display: block; margin: 0 auto; width: 100%; max-width: 400px; min-height: 400px;\" src=\"https://www.houfy.com/embed/7151/pricing\" frameborder=\"“0&quot;\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n<p class=\"\" style=\"font-weight: 600;\" data-font-weight=\"600\">Please ask any questions prior to your reservation request.&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding-right: 2.4em;\">\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\"><span style=\"font-size: 17.5px;\">Free in-room Internet access.&nbsp;&nbsp;</span></p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Tennis Courts - Use of the courts free of charge includes se of facilities and use of towels only and not the cost of nighttime illumination, rental or purchase of equipment, food and beverages, or any other expenses associated with the use of tennis courts.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Butler Service - a butler is assigned to assist your every need. Making reservations, etc.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Restaurant Reservations - Advise concierge of where you would like to eat and at what time and how many in your party (Reservations must be made 24 hours in advance).</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Spa Services - Rest, Relax, and Rejuvenate. Take advantage of the many massage and body treatments offered at the BRIO Spa &amp; Fitness Center. (Reservations must be made 72 hours in advance).</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Tee Times/Golf Reservations - Enjoy advance booking for your rounds of golf. Call the Pro Shop 72 hours in advance to book your tee times.</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Check-in - Enjoy an exclusive check in experience, free of long lines and waiting time.</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred View - The most desirable views subject to space availability.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>','','','inherit','closed','closed','','173-revision-v1','','','2022-03-26 20:35:12','2022-03-26 20:35:12','',173,'https://estatesatnuevo.com/?p=225',0,'revision','',0),(226,1,'2022-04-17 12:54:08','2022-04-17 12:54:08','<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-12 text-center col-xs-12 col-sm-12 text-center col-lg-12\">\n<h1 class=\"intro__title color3-color\" style=\"font-weight: 600; font-size: 32px;\" data-font-weight=\"600\">Estates 3 Bedroom Luxury Condo</h1>\n<p class=\"color3-color\" style=\"text-align: left; font-weight: 600;\" data-font-weight=\"600\"><span style=\"font-size: 17.5px; text-align: center;\"><span>This beautiful space features a gourmet kitchen outfitted with a breakfast bar and all the finest appliances, a stylish dining area, a lounge area with TV, two bedrooms with a king bed and a TV, another bedroom with two twin beds and a TV, five bathrooms including three with a Jacuzzi tub, and a large terrace complete with beautiful outdoor furnishings and a private plunge pool.</span>&nbsp; The Estates 3 Bedroom Luxury Condo accommodates 10 adults and 2 children.</span></p>\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\" style=\"padding-left: 11em;\">\n<div class=\"image-gallery\">\n<p class=\"\" style=\"padding: 0em;\"><img class=\"alignnone wp-image-175 \" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3dining-300x184.jpg\" alt=\"\" width=\"703\" height=\"431\" data-imhwpb-built-photo-search=\"108|landscape\"></p>\n\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\n<div class=\"image-gallery\">\n\n<img class=\"alignnone wp-image-176 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3deck-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\">\n<p class=\"\"><img class=\"alignnone wp-image-202 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3bath-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"></p>\n\n\n[caption id=\"attachment_1995\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1995 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-walkway-300x184.jpg\" alt=\"Walkway to Estates pools and shops\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Walkway to Estates pools and shops[/caption]\n\n</div>\n</div>\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\n<div class=\"image-gallery\">\n\n<img class=\"alignnone wp-image-177 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3bed-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\">\n\n<img class=\"alignnone wp-image-208 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3rooom-1-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\">\n\n[caption id=\"attachment_1990\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1990 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-2pools-300x184.jpg\" alt=\"Estates pools\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Estates private pools[/caption]\n\n</div>\n</div>\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\n<div class=\"image-gallery\">\n<p class=\"\"><img class=\"alignnone wp-image-204 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3bed2-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"></p>\n\n\n[caption id=\"attachment_1993\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-1993 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-beachland-300x184.jpg\" alt=\"Estates only pool section\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Estates only pool section[/caption]\n<p class=\"\"><img class=\"alignnone wp-image-193 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-pool-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"></p>\n<p class=\"mod-img\">&nbsp;</p>\n\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\n<div class=\"container-fluid\">\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\n<div class=\"col-md-6 col-xs-12 col-sm-12 col-lg-6\" style=\"padding-left: 2.6em;\">\n<p class=\"\" style=\"font-size: 18px; color: #000000; font-weight: 600; line-height: 1.5em;\" data-font-weight=\"600\">Reduced or free golf fees and 2 for 1 basic 50-minute massages plus use of all facilities of the gym and spa free of charge.&nbsp; This includes facilities only and does not include food and beverages, facial or other spa treatments, personal training or any other services available at the gym or spa.</p>\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Complimentary morning coffee/tea service. A safety deposit box in each bedroom. Daily maid service and chocolates on your pillow at night!</p>\n<p class=\"\" style=\"font-size: 18px; font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">All units are a minimum of 7 nights with check-ins Friday-Monday.</p>\n<p class=\"\" style=\"font-weight: 600; font-size: 18px; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\"><strong><a class=\"\" href=\" https://www.GrandLuxxe-Vacation.com/home/contact-us/\">E-mail </a></strong>for details and we will do our best to get you the unit you desire. Click the word e-mail for a link.</p>\n<p class=\"\"><iframe style=\"overflow: hidden; display: block; margin: 0 auto; width: 100%; max-width: 400px; min-height: 400px;\" src=\"https://www.houfy.com/embed/7151/pricing\" frameborder=\"“0&quot;\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<p class=\"\" style=\"font-weight: 600;\" data-font-weight=\"600\">Please ask any questions prior to your reservation request.&nbsp;</p>\n\n</div>\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding-right: 2.4em;\">\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\"><span style=\"font-size: 17.5px;\">Free in-room Internet access.&nbsp;&nbsp;</span></p>\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Tennis Courts - Use of the courts free of charge includes se of facilities and use of towels only and not the cost of nighttime illumination, rental or purchase of equipment, food and beverages, or any other expenses associated with the use of tennis courts.</p>\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Butler Service - a butler is assigned to assist your every need. Making reservations, etc.</p>\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Restaurant Reservations - Advise concierge of where you would like to eat and at what time and how many in your party (Reservations must be made 24 hours in advance).</p>\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Spa Services - Rest, Relax, and Rejuvenate. Take advantage of the many massage and body treatments offered at the BRIO Spa &amp; Fitness Center. (Reservations must be made 72 hours in advance).</p>\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Tee Times/Golf Reservations - Enjoy advance booking for your rounds of golf. Call the Pro Shop 72 hours in advance to book your tee times.</p>\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Check-in - Enjoy an exclusive check in experience, free of long lines and waiting time.</p>\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred View - The most desirable views subject to space availability.</p>\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\n</div>\n</div>\n</div>','Estates 3 Bedroom','','inherit','closed','closed','','173-autosave-v1','','','2022-04-17 12:54:08','2022-04-17 12:54:08','',173,'https://estatesatnuevo.com/?p=226',0,'revision','',0),(227,1,'2022-03-26 20:37:22','2022-03-26 20:37:22','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 text-center col-xs-12 col-sm-12 text-center\">\r\n<h1 class=\"intro__title\" style=\"color: #000000; font-weight: 600; font-size: 32px;\" data-font-weight=\"600\">Estates 3 Bedroom Luxury Condo</h1>\r\n<p class=\"\" style=\"text-align: left; color: #000000; font-weight: 600;\" data-font-weight=\"600\"><span style=\"font-size: 17.5px; text-align: center;\"><span>This beautiful space features a gourmet kitchen outfitted with a breakfast bar and all the finest appliances, a stylish dining area, a lounge area with TV, two bedrooms with a king bed and a TV, another bedroom with two twin beds and a TV, five bathrooms including three with a Jacuzzi tub, and a large terrace complete with beautiful outdoor furnishings and a private plunge pool.</span>&nbsp; The Estates 3 Bedroom Luxury Condo accommodates 10 adults and 2 children.</span></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\" style=\"padding-left: 11em;\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\" style=\"padding: 0em;\"><img class=\"alignnone wp-image-175 \" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3dining-300x184.jpg\" alt=\"\" width=\"703\" height=\"431\" data-imhwpb-built-photo-search=\"108|landscape\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n\r\n<img class=\"alignnone wp-image-176 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3deck-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\">\r\n<p class=\"\"><img class=\"alignnone wp-image-202 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3bath-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n\r\n[caption id=\"attachment_1995\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1995 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-walkway-300x184.jpg\" alt=\"Walkway to Estates pools and shops\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Walkway to Estates pools and shops[/caption]\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n\r\n<img class=\"alignnone wp-image-177 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3bed-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\">\r\n\r\n<img class=\"alignnone wp-image-208 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3rooom-1-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\">\r\n\r\n[caption id=\"attachment_1990\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1990 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-2pools-300x184.jpg\" alt=\"Estates pools\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Estates private pools[/caption]\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\"><img class=\"alignnone wp-image-204 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3bed2-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n\r\n[caption id=\"attachment_1993\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-1993 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-beachland-300x184.jpg\" alt=\"Estates only pool section\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Estates only pool section[/caption]\r\n\r\n<img class=\"alignnone wp-image-193 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-pool-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\">\r\n<p class=\"mod-img\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\" style=\"padding-left: 2.6em;\">\r\n<p class=\"\" style=\"font-size: 18px; color: #000000; font-weight: 600; line-height: 1.5em;\" data-font-weight=\"600\">Reduced or free golf fees and 2 for 1 basic 50-minute massages plus use of all facilities of the gym and spa free of charge.&nbsp; This includes facilities only and does not include food and beverages, facial or other spa treatments, personal training or any other services available at the gym or spa.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Complimentary morning coffee/tea service. A safety deposit box in each bedroom. Daily maid service and chocolates on your pillow at night!</p>\r\n<p class=\"\" style=\"font-size: 18px; font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">All units are a minimum of 7 nights with check-ins Friday-Monday.</p>\r\n<p class=\"\" style=\"font-weight: 600; font-size: 18px; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\"><strong><a class=\"\" href=\" https://www.GrandLuxxe-Vacation.com/home/contact-us/\">E-mail </a></strong>for details and we will do our best to get you the unit you desire. Click the word e-mail for a link.</p>\r\n<p class=\"\"><iframe style=\"overflow: hidden; display: block; margin: 0 auto; width: 100%; max-width: 400px; min-height: 400px;\" src=\"https://www.houfy.com/embed/7151/pricing\" frameborder=\"“0&quot;\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n<p class=\"\" style=\"font-weight: 600;\" data-font-weight=\"600\">Please ask any questions prior to your reservation request.&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding-right: 2.4em;\">\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\"><span style=\"font-size: 17.5px;\">Free in-room Internet access.&nbsp;&nbsp;</span></p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Tennis Courts - Use of the courts free of charge includes se of facilities and use of towels only and not the cost of nighttime illumination, rental or purchase of equipment, food and beverages, or any other expenses associated with the use of tennis courts.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Butler Service - a butler is assigned to assist your every need. Making reservations, etc.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Restaurant Reservations - Advise concierge of where you would like to eat and at what time and how many in your party (Reservations must be made 24 hours in advance).</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Spa Services - Rest, Relax, and Rejuvenate. Take advantage of the many massage and body treatments offered at the BRIO Spa &amp; Fitness Center. (Reservations must be made 72 hours in advance).</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Tee Times/Golf Reservations - Enjoy advance booking for your rounds of golf. Call the Pro Shop 72 hours in advance to book your tee times.</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Check-in - Enjoy an exclusive check in experience, free of long lines and waiting time.</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred View - The most desirable views subject to space availability.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Estates 3 Bedroom','','inherit','closed','closed','','173-revision-v1','','','2022-03-26 20:37:22','2022-03-26 20:37:22','',173,'https://estatesatnuevo.com/?p=227',0,'revision','',0),(268,1,'2022-04-01 20:56:05','2022-04-01 20:56:05','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 text-center col-xs-12 col-sm-12 text-center\">\r\n<p class=\"\" style=\"text-align: left; color: #000000; font-weight: 600;\" data-font-weight=\"600\"><span style=\"font-size: 17.5px; text-align: center;\"><span>This gorgeous space features a gourmet kitchen outfitted with all the finest appliances, a stylish dining area seating six, a separate lounge area with TV, a bedroom with a king bed and a TV, two bathrooms including one with a Jacuzzi tub, and a large terrace complete with beautiful outdoor furnishings. </span>The Estates 1 Bedroom Luxury Condo accommodates 4 adults.</span></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-10 col-xs-12 col-sm-12 align-column-center\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\" style=\"padding: 4em;\"><span class=\"\"></span><img class=\"align=aligncenter\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-1-300x184.jpg\" alt=\"\" width=\"630\" height=\"386\" data-imhwpb-built-photo-search=\"108|landscape\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\"><img class=\"alignnone wp-image-208 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3rooom-1-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n\r\n[caption id=\"attachment_1995\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1995 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-walkway-300x184.jpg\" alt=\"Walkway to Estates pools and shops\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Walkway to Estates pools and shops[/caption]\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\"><img class=\"alignnone wp-image-185 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-1bed-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n\r\n[caption id=\"attachment_1990\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1990 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-2pools-300x184.jpg\" alt=\"Estates pools\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Estates private pools[/caption]\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n\r\n<img class=\"alignnone wp-image-184 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-1-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\">\r\n\r\n[caption id=\"attachment_1993\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-1993 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-beachland-300x184.jpg\" alt=\"Estates only pool section\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Estates only pool section[/caption]\r\n<p class=\"mod-img\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\" style=\"padding-left: 2.6em;\">\r\n<p class=\"\" style=\"font-size: 18px; color: #000000; font-weight: 600; line-height: 1.5em;\" data-font-weight=\"600\">Reduced golf fees and 2 for 1 basic 50-minute massages plus use of all facilities of the gym and spa free of charge.&nbsp; This includes facilities only and does not include food and beverages, facial or other spa treatments, personal training or any other services available at the gym or spa.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Complimentary morning coffee/tea service. A safety deposit box in each bedroom. Daily maid service and chocolates on your pillow at night!</p>\r\n<p class=\"\" style=\"font-size: 18px; font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">All units are a minimum of 7 nights with check-ins Friday-Monday.</p>\r\n<p class=\"\" style=\"font-weight: 600; font-size: 18px; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\"><strong><a class=\"\" href=\" https://www.GrandLuxxe-Vacation.com/home/contact-us/\">E-mail </a></strong>for details and we will do our best to get you the unit you desire. Click the word e-mail for a link.</p>\r\n<p class=\"\"><iframe style=\"overflow: hidden; display: block; margin: 0 auto; width: 100%; max-width: 400px; min-height: 400px;\" src=\"https://www.houfy.com/embed/7151/pricing\" frameborder=\"“0&quot;\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n<p class=\"\" style=\"font-weight: 600;\" data-font-weight=\"600\">Please ask any questions prior to your reservation request.&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding-right: 2.4em;\">\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\"><span style=\"font-size: 17.5px;\">Free in-room Internet access.&nbsp;&nbsp;</span></p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Tennis Courts - Use of the courts free of charge includes se of facilities and use of towels only and not the cost of nighttime illumination, rental or purchase of equipment, food and beverages, or any other expenses associated with the use of tennis courts.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Butler Service - a butler is assigned to assist your every need. Making reservations, etc.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Restaurant Reservations - Advise concierge of where you would like to eat and at what time and how many in your party (Reservations must be made 24 hours in advance).</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Spa Services - Rest, Relax, and Rejuvenate. Take advantage of the many massage and body treatments offered at the BRIO Spa &amp; Fitness Center. (Reservations must be made 72 hours in advance).</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Tee Times/Golf Reservations - Enjoy advance booking for your rounds of golf. Call the Pro Shop 72 hours in advance to book your tee times.</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Check-in - Enjoy an exclusive check in experience, free of long lines and waiting time.</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred View - The most desirable views subject to space availability.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Estates 1 Bedroom','','inherit','closed','closed','','219-revision-v1','','','2022-04-01 20:56:05','2022-04-01 20:56:05','',219,'https://estatesatnuevo.com/?p=268',0,'revision','',0),(229,1,'2022-03-26 21:23:36','2022-03-26 21:23:36','','pool','','inherit','open','closed','','pool','','','2022-03-26 21:23:36','2022-03-26 21:23:36','',97,'https://estatesatnuevo.com/wp-content/uploads/2022/03/pool.jpg',0,'attachment','image/jpeg',0),(230,1,'2022-03-26 21:24:44','2022-03-26 21:24:44','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"color: #ffffff; background-image: linear-gradient(to left, rgba(26, 26, 26, 0.5), rgba(26, 26, 26, 0.5)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1NTLWQ0bk1Od2lRLzE5MjB4MTI4Mg_3D_3D-imhwpb-l6lnwj9f34ljpy1.jpg\'); background-size: cover; background-position: 50% 75%;\" data-imhwpb-asset-id=\"1111019\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1NTLWQ0bk1Od2lRLzE5MjB4MTI4Mg_3D_3D-imhwpb-l6lnwj9f34ljpy1.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-md-2 col-sm-2 col-xs-12\"></div>\r\n<div class=\"col-md-8 col-sm-10 col-xs-12\">\r\n<h2 class=\"h1 bg-text-fx bg-text-fx-closeheavy\" style=\"color: #ffffff; text-align: center;\">ESTATES AT NUEVO</h2>\r\n<h2 class=\"intro__title\" style=\"font-weight: 600; font-size: 32px; color: #ffffff;\" data-font-weight=\"600\">Ultimate Luxury Meets Ultimate Nature</h2>\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-12\"></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 25px 4em 0px;\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"https://www.estatesatnuevo.com/estates-4-bedroom\"><b>4 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"https://www.estatesatnuevo.com/estates-3-bedroom\"><b>3 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"https://www.estatesatnuevo.com/estates-2-bedroom\"><b>2 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"https://www.estatesatnuevo.com/estates-1-bedroom\"><b>1 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 60px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6 color4-background-color color-4-text-contrast bg-background-color\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">RESORT INFO</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>The Estates at Nuevo&nbsp; Luxury Vacation Condos are the pinnacle of luxury and service within our Vidanta resort group. Nestled between the Pacific Ocean and the Sierra Madre Mountains, Estates at Nuevo is a Mexican tropical beach paradise vacation that offers the ultimate Mexican resort vacation. As the biggest of the Vidanta destinations, it has been carefully cultivated to provide a high-end experience full of options:&nbsp; luxury vacation condos,&nbsp; restaurants and lounges&nbsp; golf courses, a shopping plaza, two indulgent spas, beautiful beaches, and countless pools.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">DINING</h3>\r\n<p class=\"\"><span>With over 40 restaurants and lounges to choose from, Estates at Nuevo gives guests the opportunity to dine however they like. Options range from high-end eateries to casual restaurants to authentic Mexican spots, and even a gourmet market filled with offerings from all over the world. One thing is for sure—an amazing culinary experience is always just a meal away.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color5-background-color color-5-text-contrast bg-background-color\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">ACTIVITIES</h3>\r\n<p class=\"\"><span>The Estates Vacation offers a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, a number of pool &amp; poolside activities including water polo, water volleyball, aqua aerobics, Paddle Board stretching class, Salsa lessons, Spanish class, arts &amp; crafts, Guacamole making class. Kids Club, Beach, Tours, and Night time Shows.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding: 3em 4em 1em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">About Us</h2>\r\n<h3 class=\"\">WE CARE ABOUT YOUR VACATION</h3>\r\n<div><span class=\"\">We are owners at the Estates at Nuevo Luxury Condo Suites at the Vidanta Resorts.&nbsp; We also own at the Grand Luxxe Vacation resort.&nbsp; There are several of the Vidanta resorts in Mexico but we love the Nuevo Vallarta site because it has the most to offer.&nbsp; &nbsp;</span></div>\r\n<p class=\"\">We work with other owners so we have a larger selection of rentals available. Some have already been secured with the resort and are ready to book.&nbsp; If not, then we can check on availability for your specific time frame.</p>\r\n<p class=\"\">Always happy to answer any questions you may have about the resort and ourselves.&nbsp;&nbsp;</p>\r\n<p class=\"\">Thanks!&nbsp; Linda and Frank Helman</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 align-column-center\"><span class=\"\">From the moment you arrive, you will sense the difference with personalized attention 24/7 and the exclusivity in private beach and pool areas that are intimate and tranquil. At Vidanta’s Estates at Nuevo Vacation Mexican resort, we invite you to explore the gardens and landscaping, enjoy the ocean breeze, the unparalleled panoramic view of the Pacific Ocean in a magnificent sunset, and the natural biodiversity of the Bandera’s bay. It is the kind of extraordinary Mexican vacation experience you want, and the kind of service you deserve and expect.</span></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 0em 3em 90px;\">\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-110\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"k8m4Uj5JJAQ\" data-imhwpb-asset-id=\"1111013\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-111\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"r1tjlHBnHzY\" data-imhwpb-asset-id=\"1111014\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-112\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"l5gzNmXTzIg\" data-imhwpb-asset-id=\"1111015\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-113\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"\" data-imhwpb-asset-id=\"1111016\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-114\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"sBtqOe23bd0\" data-imhwpb-asset-id=\"1111017\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-115\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"B8He4PJkMLg\" data-imhwpb-asset-id=\"1111018\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\'); background-size: cover; background-position: 50% 58%;\" data-imhwpb-asset-id=\"1111020\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding: 75px 2em 4em;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-key\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Vacation GOLF</h3>\r\n<p class=\"H1\" data-font-weight=\"600\">Two Designer Courses, a Par 3 Lighted Course, and a State-of-the Art Instructional Academy.&nbsp; Estates at Nuevo boasts the most comprehensive golf offerings in the area. PGA tournament in 2023 here!</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-star-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Special NEEDS</h3>\r\n<p class=\"\">Do you have a special need? Wheelchairs are available for rent and special golf carts will take you around the property.&nbsp; Need a baby crib or child care? We can handle that too.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container-fluid\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding: 3em 4em 2em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">Our Location</h2>\r\n<p class=\"\">Because we put the customer first, we always have free transportation from the airport to the resort and to your living suite.&nbsp;</p>\r\n<p class=\"\">Review the room details and let us know how we can help you have the best vacation possible.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More </a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 bg-box-flush\">\r\n\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','97-revision-v1','','','2022-03-26 21:24:44','2022-03-26 21:24:44','',97,'https://estatesatnuevo.com/?p=230',0,'revision','',0),(231,1,'2022-03-26 21:26:30','2022-03-26 21:26:30','https://estatesatnuevo.com/wp-content/uploads/2022/03/cropped-pool.jpg','cropped-pool.jpg','','inherit','open','closed','','cropped-pool-jpg','','','2022-03-26 21:26:30','2022-03-26 21:26:30','',0,'https://estatesatnuevo.com/wp-content/uploads/2022/03/cropped-pool.jpg',0,'attachment','image/jpeg',0),(393,1,'2022-11-18 15:28:25','2022-11-18 15:28:25','<div class=\"color1-background-color color-1-text-contrast bg-background-color tmpl-about-13 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 50px; padding-bottom: 50px;\">\r\n<div class=\"col-md-8 col-sm-8 col-xs-12 col-lg-8\">\r\n<p class=\"\" style=\"border-width: 0px;\"><img src=\"https://mcusercontent.com/2d67d7fc60bdcd41ac8679ab9/images/efcd0688-d470-6228-5b7f-bf1a60d3d525.jpg\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\">\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Services','','publish','closed','closed','','services','','','2022-11-18 15:28:25','2022-11-18 15:28:25','',0,'https://estatesatnuevo.com/?page_id=393',0,'page','',0),(394,1,'2022-11-18 15:24:33','2022-11-18 15:24:33','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw150h150fitcropsaed28a9c5da8f9b20cf831f58ef7f368','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw150h150fitcropsaed28a9c5da8f9b20cf831f58ef7f368','','','2022-11-18 15:24:33','2022-11-18 15:24:33','',0,'https://estatesatnuevo.com/wp-content/uploads/2022/11/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw150h150fitcropsaed28a9c5da8f9b20cf831f58ef7f368.jpg',0,'attachment','image/jpeg',0),(236,1,'2022-03-27 17:53:34','2022-03-27 17:53:34','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"color: #ffffff; background-image: linear-gradient(to left, rgba(26, 26, 26, 0.5), rgba(26, 26, 26, 0.5)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/pool.jpg\'); background-size: cover; background-position: 50% 75%;\" data-imhwpb-asset-id=\"1111019\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/pool.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-md-2 col-sm-2 col-xs-12\"></div>\r\n<div class=\"col-md-8 col-sm-10 col-xs-12\">\r\n<h2 class=\"intro__title\" style=\"font-weight: 600; font-size: 32px; color: #ffffff;\" data-font-weight=\"600\">Ultimate Luxury Meets Ultimate Nature</h2>\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-12\"></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 25px 4em 0px;\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"https://www.estatesatnuevo.com/estates-4-bedroom\"><b>4 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"https://www.estatesatnuevo.com/estates-3-bedroom\"><b>3 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"https://www.estatesatnuevo.com/estates-2-bedroom\"><b>2 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"https://www.estatesatnuevo.com/estates-1-bedroom\"><b>1 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 60px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6 color4-background-color color-4-text-contrast bg-background-color\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">RESORT INFO</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>The Estates at Nuevo&nbsp; Luxury Vacation Condos are the pinnacle of luxury and service within our Vidanta resort group. Nestled between the Pacific Ocean and the Sierra Madre Mountains, Estates at Nuevo is a Mexican tropical beach paradise vacation that offers the ultimate Mexican resort vacation. As the biggest of the Vidanta destinations, it has been carefully cultivated to provide a high-end experience full of options:&nbsp; luxury vacation condos,&nbsp; restaurants and lounges&nbsp; golf courses, a shopping plaza, two indulgent spas, beautiful beaches, and countless pools.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">DINING</h3>\r\n<p class=\"\"><span>With over 40 restaurants and lounges to choose from, Estates at Nuevo gives guests the opportunity to dine however they like. Options range from high-end eateries to casual restaurants to authentic Mexican spots, and even a gourmet market filled with offerings from all over the world. One thing is for sure—an amazing culinary experience is always just a meal away.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color5-background-color color-5-text-contrast bg-background-color\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">ACTIVITIES</h3>\r\n<p class=\"\"><span>The Estates Vacation offers a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, a number of pool &amp; poolside activities including water polo, water volleyball, aqua aerobics, Paddle Board stretching class, Salsa lessons, Spanish class, arts &amp; crafts, Guacamole making class. Kids Club, Beach, Tours, and Night time Shows.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding: 3em 4em 1em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">About Us</h2>\r\n<h3 class=\"\">WE CARE ABOUT YOUR VACATION</h3>\r\n<div><span class=\"\">We are owners at the Estates at Nuevo Luxury Condo Suites at the Vidanta Resorts.&nbsp; We also own at the Grand Luxxe Vacation resort.&nbsp; There are several of the Vidanta resorts in Mexico but we love the Nuevo Vallarta site because it has the most to offer.&nbsp; &nbsp;</span></div>\r\n<p class=\"\">We work with other owners so we have a larger selection of rentals available. Some have already been secured with the resort and are ready to book.&nbsp; If not, then we can check on availability for your specific time frame.</p>\r\n<p class=\"\">Always happy to answer any questions you may have about the resort and ourselves.&nbsp;&nbsp;</p>\r\n<p class=\"\">Thanks!&nbsp; Linda and Frank Helman</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 align-column-center\"><span class=\"\">From the moment you arrive, you will sense the difference with personalized attention 24/7 and the exclusivity in private beach and pool areas that are intimate and tranquil. At Vidanta’s Estates at Nuevo Vacation Mexican resort, we invite you to explore the gardens and landscaping, enjoy the ocean breeze, the unparalleled panoramic view of the Pacific Ocean in a magnificent sunset, and the natural biodiversity of the Bandera’s bay. It is the kind of extraordinary Mexican vacation experience you want, and the kind of service you deserve and expect.</span></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 0em 3em 90px;\">\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-110\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"k8m4Uj5JJAQ\" data-imhwpb-asset-id=\"1111013\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-111\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"r1tjlHBnHzY\" data-imhwpb-asset-id=\"1111014\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-112\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"l5gzNmXTzIg\" data-imhwpb-asset-id=\"1111015\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-113\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"\" data-imhwpb-asset-id=\"1111016\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-114\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"sBtqOe23bd0\" data-imhwpb-asset-id=\"1111017\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-115\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"B8He4PJkMLg\" data-imhwpb-asset-id=\"1111018\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\'); background-size: cover; background-position: 50% 58%;\" data-imhwpb-asset-id=\"1111020\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding: 75px 2em 4em;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-key\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Vacation GOLF</h3>\r\n<p class=\"H1\" data-font-weight=\"600\">Two Designer Courses, a Par 3 Lighted Course, and a State-of-the Art Instructional Academy.&nbsp; Estates at Nuevo boasts the most comprehensive golf offerings in the area. PGA tournament in 2023 here!</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-star-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Special NEEDS</h3>\r\n<p class=\"\">Do you have a special need? Wheelchairs are available for rent and special golf carts will take you around the property.&nbsp; Need a baby crib or child care? We can handle that too.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container-fluid\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding: 3em 4em 2em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">Our Location</h2>\r\n<p class=\"\">Because we put the customer first, we always have free transportation from the airport to the resort and to your living suite.&nbsp;</p>\r\n<p class=\"\">Review the room details and let us know how we can help you have the best vacation possible.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More </a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 bg-box-flush\">\r\n\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','97-revision-v1','','','2022-03-27 17:53:34','2022-03-27 17:53:34','',97,'https://estatesatnuevo.com/?p=236',0,'revision','',0),(237,1,'2022-03-27 17:58:46','2022-03-27 17:58:46','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"color: #ffffff; background-image: linear-gradient(to left, rgba(26, 26, 26, 0.5), rgba(26, 26, 26, 0.5)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/pool.jpg\'); background-size: cover; background-position: 50% 75%;\" data-imhwpb-asset-id=\"1111019\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/pool.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-md-2 col-sm-2 col-xs-12\"></div>\r\n<div class=\"col-md-8 col-sm-10 col-xs-12\">\r\n<h2 class=\"intro__title\" style=\"font-weight: 600; font-size: 32px; color: #ffffff;\" data-font-weight=\"600\">Ultimate Luxury Meets Ultimate Nature</h2>\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-12\"></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 25px 4em 0px;\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"https://www.estatesatnuevo.com/estates-4-bedroom\"><b>4 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"https://www.estatesatnuevo.com/estates-3-bedroom\"><b>3 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"https://www.estatesatnuevo.com/estates-2-bedroom\"><b>2 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"https://www.estatesatnuevo.com/estates-1-bedroom\"><b>1 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 60px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">RESORT INFO</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>The Estates at Nuevo&nbsp; Luxury Vacation Condos are the pinnacle of luxury and service within our Vidanta resort group. Nestled between the Pacific Ocean and the Sierra Madre Mountains, Estates at Nuevo is a Mexican tropical beach paradise vacation that offers the ultimate Mexican resort vacation. As the biggest of the Vidanta destinations, it has been carefully cultivated to provide a high-end experience full of options:&nbsp; luxury vacation condos,&nbsp; restaurants and lounges&nbsp; golf courses, a shopping plaza, two indulgent spas, beautiful beaches, and countless pools.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">DINING</h3>\r\n<p class=\"\"><span>With over 40 restaurants and lounges to choose from, Estates at Nuevo gives guests the opportunity to dine however they like. Options range from high-end eateries to casual restaurants to authentic Mexican spots, and even a gourmet market filled with offerings from all over the world. One thing is for sure—an amazing culinary experience is always just a meal away.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">ACTIVITIES</h3>\r\n<p class=\"\"><span>The Estates Vacation offers a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, a number of pool &amp; poolside activities including water polo, water volleyball, aqua aerobics, Paddle Board stretching class, Salsa lessons, Spanish class, arts &amp; crafts, Guacamole making class. Kids Club, Beach, Tours, and Night time Shows.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding: 3em 4em 1em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">About Us</h2>\r\n<h3 class=\"\">WE CARE ABOUT YOUR VACATION</h3>\r\n<div><span class=\"\">We are owners at the Estates at Nuevo Luxury Condo Suites at the Vidanta Resorts.&nbsp; We also own at the Grand Luxxe Vacation resort.&nbsp; There are several of the Vidanta resorts in Mexico but we love the Nuevo Vallarta site because it has the most to offer.&nbsp; &nbsp;</span></div>\r\n<p class=\"\">We work with other owners so we have a larger selection of rentals available. Some have already been secured with the resort and are ready to book.&nbsp; If not, then we can check on availability for your specific time frame.</p>\r\n<p class=\"\">Always happy to answer any questions you may have about the resort and ourselves.&nbsp;&nbsp;</p>\r\n<p class=\"\">Thanks!&nbsp; Linda and Frank Helman</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 align-column-center\"><span class=\"\">From the moment you arrive, you will sense the difference with personalized attention 24/7 and the exclusivity in private beach and pool areas that are intimate and tranquil. At Vidanta’s Estates at Nuevo Vacation Mexican resort, we invite you to explore the gardens and landscaping, enjoy the ocean breeze, the unparalleled panoramic view of the Pacific Ocean in a magnificent sunset, and the natural biodiversity of the Bandera’s bay. It is the kind of extraordinary Mexican vacation experience you want, and the kind of service you deserve and expect.</span></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 0em 3em 90px;\">\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-110\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"k8m4Uj5JJAQ\" data-imhwpb-asset-id=\"1111013\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-111\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"r1tjlHBnHzY\" data-imhwpb-asset-id=\"1111014\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-112\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"l5gzNmXTzIg\" data-imhwpb-asset-id=\"1111015\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-113\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"\" data-imhwpb-asset-id=\"1111016\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-114\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"sBtqOe23bd0\" data-imhwpb-asset-id=\"1111017\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-115\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"B8He4PJkMLg\" data-imhwpb-asset-id=\"1111018\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\'); background-size: cover; background-position: 50% 58%;\" data-imhwpb-asset-id=\"1111020\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding: 75px 2em 4em;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-key\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Vacation GOLF</h3>\r\n<p class=\"H1\" data-font-weight=\"600\">Two Designer Courses, a Par 3 Lighted Course, and a State-of-the Art Instructional Academy.&nbsp; Estates at Nuevo boasts the most comprehensive golf offerings in the area. PGA tournament in 2023 here!</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-star-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Special NEEDS</h3>\r\n<p class=\"\">Do you have a special need? Wheelchairs are available for rent and special golf carts will take you around the property.&nbsp; Need a baby crib or child care? We can handle that too.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container-fluid\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding: 3em 4em 2em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">Our Location</h2>\r\n<p class=\"\">Because we put the customer first, we always have free transportation from the airport to the resort and to your living suite.&nbsp;</p>\r\n<p class=\"\">Review the room details and let us know how we can help you have the best vacation possible.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More </a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 bg-box-flush\">\r\n\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','97-revision-v1','','','2022-03-27 17:58:46','2022-03-27 17:58:46','',97,'https://estatesatnuevo.com/?p=237',0,'revision','',0),(238,1,'2022-03-27 18:04:08','2022-03-27 18:04:08','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"color: #ffffff; background-image: linear-gradient(to left, rgba(26, 26, 26, 0.5), rgba(26, 26, 26, 0.5)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/pool.jpg\'); background-size: cover; background-position: 50% 75%;\" data-imhwpb-asset-id=\"1111019\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/pool.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-md-2 col-sm-2 col-xs-12\"></div>\r\n<div class=\"col-md-8 col-sm-10 col-xs-12 align-column-center\">\r\n<h2 class=\"intro__title\" style=\"font-weight: 600; font-size: 32px; color: #ffffff;\" data-font-weight=\"600\">Ultimate Luxury Meets Ultimate Nature</h2>\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-12\"></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 25px 4em 0px;\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"https://www.estatesatnuevo.com/estates-4-bedroom\"><b>4 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"https://www.estatesatnuevo.com/estates-3-bedroom\"><b>3 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"https://www.estatesatnuevo.com/estates-2-bedroom\"><b>2 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"https://www.estatesatnuevo.com/estates-1-bedroom\"><b>1 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 60px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">RESORT INFO</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>The Estates at Nuevo&nbsp; Luxury Vacation Condos are the pinnacle of luxury and service within our Vidanta resort group. Nestled between the Pacific Ocean and the Sierra Madre Mountains, Estates at Nuevo is a Mexican tropical beach paradise vacation that offers the ultimate Mexican resort vacation. As the biggest of the Vidanta destinations, it has been carefully cultivated to provide a high-end experience full of options:&nbsp; luxury vacation condos,&nbsp; restaurants and lounges&nbsp; golf courses, a shopping plaza, two indulgent spas, beautiful beaches, and countless pools.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">DINING</h3>\r\n<p class=\"\"><span>With over 40 restaurants and lounges to choose from, Estates at Nuevo gives guests the opportunity to dine however they like. Options range from high-end eateries to casual restaurants to authentic Mexican spots, and even a gourmet market filled with offerings from all over the world. One thing is for sure—an amazing culinary experience is always just a meal away.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">ACTIVITIES</h3>\r\n<p class=\"\"><span>The Estates Vacation offers a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, a number of pool &amp; poolside activities including water polo, water volleyball, aqua aerobics, Paddle Board stretching class, Salsa lessons, Spanish class, arts &amp; crafts, Guacamole making class. Kids Club, Beach, Tours, and Night time Shows.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding: 3em 4em 1em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">About Us</h2>\r\n<h3 class=\"\">WE CARE ABOUT YOUR VACATION</h3>\r\n<div><span class=\"\">We are owners at the Estates at Nuevo Luxury Condo Suites at the Vidanta Resorts.&nbsp; We also own at the Grand Luxxe Vacation resort.&nbsp; There are several of the Vidanta resorts in Mexico but we love the Nuevo Vallarta site because it has the most to offer.&nbsp; &nbsp;</span></div>\r\n<p class=\"\">We work with other owners so we have a larger selection of rentals available. Some have already been secured with the resort and are ready to book.&nbsp; If not, then we can check on availability for your specific time frame.</p>\r\n<p class=\"\">Always happy to answer any questions you may have about the resort and ourselves.&nbsp;&nbsp;</p>\r\n<p class=\"\">Thanks!&nbsp; Linda and Frank Helman</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 align-column-center\"><span class=\"\">From the moment you arrive, you will sense the difference with personalized attention 24/7 and the exclusivity in private beach and pool areas that are intimate and tranquil. At Vidanta’s Estates at Nuevo Vacation Mexican resort, we invite you to explore the gardens and landscaping, enjoy the ocean breeze, the unparalleled panoramic view of the Pacific Ocean in a magnificent sunset, and the natural biodiversity of the Bandera’s bay. It is the kind of extraordinary Mexican vacation experience you want, and the kind of service you deserve and expect.</span></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 0em 3em 90px;\">\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-110\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"k8m4Uj5JJAQ\" data-imhwpb-asset-id=\"1111013\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-111\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"r1tjlHBnHzY\" data-imhwpb-asset-id=\"1111014\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-112\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"l5gzNmXTzIg\" data-imhwpb-asset-id=\"1111015\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-113\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"\" data-imhwpb-asset-id=\"1111016\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-114\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"sBtqOe23bd0\" data-imhwpb-asset-id=\"1111017\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-115\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"B8He4PJkMLg\" data-imhwpb-asset-id=\"1111018\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\'); background-size: cover; background-position: 50% 58%;\" data-imhwpb-asset-id=\"1111020\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding: 75px 2em 4em;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-key\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Vacation GOLF</h3>\r\n<p class=\"H1\" data-font-weight=\"600\">Two Designer Courses, a Par 3 Lighted Course, and a State-of-the Art Instructional Academy.&nbsp; Estates at Nuevo boasts the most comprehensive golf offerings in the area. PGA tournament in 2023 here!</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-star-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Special NEEDS</h3>\r\n<p class=\"\">Do you have a special need? Wheelchairs are available for rent and special golf carts will take you around the property.&nbsp; Need a baby crib or child care? We can handle that too.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container-fluid\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding: 3em 4em 2em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">Our Location</h2>\r\n<p class=\"\">Because we put the customer first, we always have free transportation from the airport to the resort and to your living suite.&nbsp;</p>\r\n<p class=\"\">Review the room details and let us know how we can help you have the best vacation possible.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More </a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 bg-box-flush\">\r\n\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','97-revision-v1','','','2022-03-27 18:04:08','2022-03-27 18:04:08','',97,'https://estatesatnuevo.com/?p=238',0,'revision','',0),(239,1,'2022-03-27 20:46:44','2022-03-27 20:46:44','<div class=\"color1-background-color color-1-text-contrast bg-background-color tmpl-portfolio-6 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 20px 0px 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 text-center\">\r\n<p class=\"\">&nbsp;</p>\r\n\r\n<h3 class=\"\" style=\"margin: 5px 0px; letter-spacing: 4.9px; font-weight: 600; font-size: 23px;\" data-font-weight=\"600\">&nbsp; &nbsp; FINE DINING</h3>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-4 boldgrid-section dynamic-gridblock color1-background-color color-1-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 34px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1058 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Azur-300x184.jpg\" alt=\"Azur French Restaurant\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Bistro Bleu – French Flair with a twist</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1059 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Costa-300x184.jpg\" alt=\"Costa Arena seafood restaurant\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Puerto Manjar – California – inspired Seafood</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1060 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Epazote-300x184.jpg\" alt=\"Epazote Mexican restaurant\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Brezza at The Estates – A Mediterranean flavor</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-4 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(#203356, #446cb3);\" data-bg-color-1=\"#203356\" data-bg-color-2=\"#446cb3\" data-bg-direction=\"to bottom\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 24px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1061 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/gong-300x184.jpg\" alt=\"Gong Asian Restaurant\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Gong Restaurant – Far East Favorites</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1062 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/quinto-300x184.jpg\" alt=\"Quinto Charcoal Grill\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Quinto Charcoal Grill- The Best of Land and Sea</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1063 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/burger-300x184.jpg\" alt=\"Burger Custom Made\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Burger Custom Made –&nbsp;Reimagining the Burger</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-4 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(#203356, #446cb3);\" data-bg-color-1=\"#203356\" data-bg-color-2=\"#446cb3\" data-bg-direction=\"to bottom\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1064 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/tramonto-300x184.jpg\" alt=\"Tramonto Italian\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Tramonto – Tratoria in Paradise</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1811 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/ameca-300x184.jpg\" alt=\"Ameca Grill\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Ameca Social House – Le Petit Chef presentation</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1366 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Cafe-300x184.jpg\" alt=\"Cafe del Lago Buffet\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Cafe Del Lago – Morning Lake Views</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color1-background-color color-1-text-contrast bg-background-color tmpl-portfolio-6 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section color1-background-color color-1-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<p class=\"\" style=\"text-align: center; font-size: 25px;\">Casual Dining, Bars and Lounges, Great in-room Dining</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\">\r\n<p class=\"\" style=\"font-weight: 600; font-size: 23px;\" data-font-family=\"\" data-font-weight=\"600\" data-font-style=\"\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</p>\r\n\r\n<div class=\"row gridblock\" style=\"padding-bottom: 0px; padding-top: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<p class=\"\">Balance - Healthy&nbsp; food and drinks</p>\r\n<p class=\"\">Chiringuito - Authentic Spanish food</p>\r\n<p class=\"\">Beachland -Street foods &amp; vendors</p>\r\n<p class=\"\">La Cantina - Mexican Bar and comfort food</p>\r\n<p class=\"\">Ola Mulata - Lunch and early dinner</p>\r\nEstates Lounge Deck - Snacks &amp; drinks\r\n\r\nSi Snack - Poolside dining&nbsp;\r\n<p class=\"\">Sky Garden - Residence rooftop dining</p>\r\nPar Break - Breakfast/lunch/snacks\r\n<p class=\"\">Pool Bars - Swim up service</p>\r\n<p class=\"\">Salum - Snacks/cocktails/music</p>\r\nPool bar at the Estates - Snacks &amp; drinks\r\n<p class=\"\">Grand Lobby Bar - Lobby of Grand Mayan</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<p class=\"\">Balche - Sandwiches and snacks</p>\r\n<p class=\"\">Green Table - Organic light fare</p>\r\nPizza To Go - Room service only\r\n<p class=\"\">Limon y Sal - Ceviche and other seafoods</p>\r\n<p class=\"\">Samba - Breakfast buffet, international lunch and dinner</p>\r\n<p class=\"\">Sweet Paris - Sweet and savory crepes</p>\r\n<p class=\"\">Tacos Break - Traditional Mexican</p>\r\nRoom Service - 24 hour service\r\n\r\nGrill at the Estates - Breakfast &amp; lunch\r\n<p class=\"\">Grand Vista Bar - Lobby of Grand Bliss</p>\r\n<p class=\"\">Luxxe Bar - Near Epazote Restaurant</p>\r\n<p class=\"\">Santuario - Nightly theme Entertainment&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','DINING','','publish','closed','closed','','dining','','','2022-03-29 16:47:34','2022-03-29 16:47:34','',97,'https://estatesatnuevo.com/?page_id=239',0,'page','',0),(241,1,'2022-03-27 18:20:26','2022-03-27 18:20:26','<div class=\"color1-background-color color-1-text-contrast bg-background-color tmpl-portfolio-6 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 20px 0px 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 text-center\">\r\n<p class=\"\">&nbsp;</p>\r\n\r\n<h3 class=\"\" style=\"margin: 5px 0px; letter-spacing: 4.9px; font-weight: 600; font-size: 23px;\" data-font-weight=\"600\">&nbsp; &nbsp; FINE DINING</h3>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-4 boldgrid-section dynamic-gridblock color1-background-color color-1-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 34px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1058 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Azur-300x184.jpg\" alt=\"Azur French Restaurant\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Bistro Bleu – French Flair with a twist</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1059 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Costa-300x184.jpg\" alt=\"Costa Arena seafood restaurant\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Puerto Manjar – California – inspired Seafood</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1060 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Epazote-300x184.jpg\" alt=\"Epazote Mexican restaurant\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Brezza at The Estates – A Mediterranean flavor</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-4 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(#203356, #446cb3);\" data-bg-color-1=\"#203356\" data-bg-color-2=\"#446cb3\" data-bg-direction=\"to bottom\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 24px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1061 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/gong-300x184.jpg\" alt=\"Gong Asian Restaurant\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Gong Restaurant – Far East Favorites</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1062 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/quinto-300x184.jpg\" alt=\"Quinto Charcoal Grill\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Quinto Charcoal Grill- The Best of Land and Sea</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1063 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/burger-300x184.jpg\" alt=\"Burger Custom Made\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Burger Custom Made –&nbsp;Reimagining the Burger</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-4 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(#203356, #446cb3);\" data-bg-color-1=\"#203356\" data-bg-color-2=\"#446cb3\" data-bg-direction=\"to bottom\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1064 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/tramonto-300x184.jpg\" alt=\"Tramonto Italian\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Tramonto – Tratoria in Paradise</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1811 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/ameca-300x184.jpg\" alt=\"Ameca Grill\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Ameca Social House – Le Petit Chef presentation</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1366 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Cafe-300x184.jpg\" alt=\"Cafe del Lago Buffet\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Cafe Del Lago – Morning Lake Views</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color1-background-color color-1-text-contrast bg-background-color\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section color1-background-color color-1-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<p class=\"\" style=\"text-align: center; font-size: 25px;\">Casual Dining, Bars and Lounges, Great in-room Dining</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\">\r\n<p class=\"\" style=\"font-weight: 600; font-size: 23px;\" data-font-family=\"\" data-font-weight=\"600\" data-font-style=\"\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</p>\r\n\r\n<div class=\"row gridblock\" style=\"padding-bottom: 0px; padding-top: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<p class=\"\">Balance - Healthy&nbsp; food and drinks</p>\r\n<p class=\"\">Chiringuito - Authentic Spanish food</p>\r\n<p class=\"\">Beachland -Street foods &amp; vendors</p>\r\n<p class=\"\">La Cantina - Mexican Bar and comfort food</p>\r\n<p class=\"\">Ola Mulata - Lunch and early dinner</p>\r\nEstates Lounge Deck - Snacks &amp; drinks\r\n\r\nSi Snack - Poolside dining&nbsp;\r\n<p class=\"\">Sky Garden - Residence rooftop dining</p>\r\nPar Break - Breakfast/lunch/snacks\r\n<p class=\"\">Pool Bars - Swim up service</p>\r\n<p class=\"\">Salum - Snacks/cocktails/music</p>\r\nPool bar at the Estates - Snacks &amp; drinks\r\n<p class=\"\">Grand Lobby Bar - Lobby of Grand Mayan</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<p class=\"\">Balche - Sandwiches and snacks</p>\r\n<p class=\"\">Green Table - Organic light fare</p>\r\nPizza To Go - Room service only\r\n<p class=\"\">Limon y Sal - Ceviche and other seafoods</p>\r\n<p class=\"\">Samba - Breakfast buffet, international lunch and dinner</p>\r\n<p class=\"\">Sweet Paris - Sweet and savory crepes</p>\r\n<p class=\"\">Tacos Break - Traditional Mexican</p>\r\nRoom Service - 24 hour service\r\n\r\nGrill at the Estates - Breakfast &amp; lunch\r\n<p class=\"\">Grand Vista Bar - Lobby of Grand Bliss</p>\r\n<p class=\"\">Luxxe Bar - Near Epazote Restaurant</p>\r\n<p class=\"\">Santuario - Nightly theme Entertainment&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','DINING','','inherit','closed','closed','','239-revision-v1','','','2022-03-27 18:20:26','2022-03-27 18:20:26','',239,'https://estatesatnuevo.com/?p=241',0,'revision','',0),(240,1,'2022-03-27 18:19:34','2022-03-27 18:19:34','<div class=\"color1-background-color color-1-text-contrast bg-background-color tmpl-portfolio-6 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 20px 0px 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 text-center\">\r\n<h3 class=\"\" style=\"margin: 5px 0px; letter-spacing: 4.9px; font-weight: 600; font-size: 30px; text-align: center;\" data-font-weight=\"600\">DINING</h3>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n<h3 class=\"\" style=\"margin: 5px 0px; letter-spacing: 4.9px; font-weight: 600; font-size: 23px;\" data-font-weight=\"600\">&nbsp; &nbsp; FINE DINING</h3>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-4 boldgrid-section dynamic-gridblock color1-background-color color-1-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 34px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1058 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Azur-300x184.jpg\" alt=\"Azur French Restaurant\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Bistro Bleu – French Flair with a twist</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1059 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Costa-300x184.jpg\" alt=\"Costa Arena seafood restaurant\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Puerto Manjar – California – inspired Seafood</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1060 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Epazote-300x184.jpg\" alt=\"Epazote Mexican restaurant\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Brezza at The Estates – A Mediterranean flavor</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-4 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(#203356, #446cb3);\" data-bg-color-1=\"#203356\" data-bg-color-2=\"#446cb3\" data-bg-direction=\"to bottom\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 24px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1061 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/gong-300x184.jpg\" alt=\"Gong Asian Restaurant\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Gong Restaurant – Far East Favorites</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1062 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/quinto-300x184.jpg\" alt=\"Quinto Charcoal Grill\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Quinto Charcoal Grill- The Best of Land and Sea</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1063 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/burger-300x184.jpg\" alt=\"Burger Custom Made\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Burger Custom Made –&nbsp;Reimagining the Burger</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-4 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(#203356, #446cb3);\" data-bg-color-1=\"#203356\" data-bg-color-2=\"#446cb3\" data-bg-direction=\"to bottom\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1064 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/tramonto-300x184.jpg\" alt=\"Tramonto Italian\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Tramonto – Tratoria in Paradise</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1811 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/ameca-300x184.jpg\" alt=\"Ameca Grill\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Ameca Social House – Le Petit Chef presentation</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1366 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Cafe-300x184.jpg\" alt=\"Cafe del Lago Buffet\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Cafe Del Lago – Morning Lake Views</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color1-background-color color-1-text-contrast bg-background-color\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section color1-background-color color-1-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<p class=\"\" style=\"text-align: center; font-size: 25px;\">Casual Dining, Bars and Lounges, Great in-room Dining</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\">\r\n<p class=\"\" style=\"font-weight: 600; font-size: 23px;\" data-font-family=\"\" data-font-weight=\"600\" data-font-style=\"\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</p>\r\n\r\n<div class=\"row gridblock\" style=\"padding-bottom: 0px; padding-top: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<p class=\"\">Balance - Healthy&nbsp; food and drinks</p>\r\n<p class=\"\">Chiringuito - Authentic Spanish food</p>\r\n<p class=\"\">Beachland -Street foods &amp; vendors</p>\r\n<p class=\"\">La Cantina - Mexican Bar and comfort food</p>\r\n<p class=\"\">Ola Mulata - Lunch and early dinner</p>\r\nEstates Lounge Deck - Snacks &amp; drinks\r\n\r\nSi Snack - Poolside dining&nbsp;\r\n<p class=\"\">Sky Garden - Residence rooftop dining</p>\r\nPar Break - Breakfast/lunch/snacks\r\n<p class=\"\">Pool Bars - Swim up service</p>\r\n<p class=\"\">Salum - Snacks/cocktails/music</p>\r\nPool bar at the Estates - Snacks &amp; drinks\r\n<p class=\"\">Grand Lobby Bar - Lobby of Grand Mayan</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<p class=\"\">Balche - Sandwiches and snacks</p>\r\n<p class=\"\">Green Table - Organic light fare</p>\r\nPizza To Go - Room service only\r\n<p class=\"\">Limon y Sal - Ceviche and other seafoods</p>\r\n<p class=\"\">Samba - Breakfast buffet, international lunch and dinner</p>\r\n<p class=\"\">Sweet Paris - Sweet and savory crepes</p>\r\n<p class=\"\">Tacos Break - Traditional Mexican</p>\r\nRoom Service - 24 hour service\r\n\r\nGrill at the Estates - Breakfast &amp; lunch\r\n<p class=\"\">Grand Vista Bar - Lobby of Grand Bliss</p>\r\n<p class=\"\">Luxxe Bar - Near Epazote Restaurant</p>\r\n<p class=\"\">Santuario - Nightly theme Entertainment&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','DINING','','inherit','closed','closed','','239-revision-v1','','','2022-03-27 18:19:34','2022-03-27 18:19:34','',239,'https://estatesatnuevo.com/?p=240',0,'revision','',0),(242,1,'2022-03-27 20:46:32','2022-03-27 20:46:32','<div class=\"color1-background-color color-1-text-contrast bg-background-color tmpl-portfolio-6 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 20px 0px 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 text-center\">\r\n<p class=\"\">&nbsp;</p>\r\n\r\n<h3 class=\"\" style=\"margin: 5px 0px; letter-spacing: 4.9px; font-weight: 600; font-size: 23px;\" data-font-weight=\"600\">&nbsp; &nbsp; FINE DINING</h3>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-4 boldgrid-section dynamic-gridblock color1-background-color color-1-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 34px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1058 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Azur-300x184.jpg\" alt=\"Azur French Restaurant\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Bistro Bleu – French Flair with a twist</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1059 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Costa-300x184.jpg\" alt=\"Costa Arena seafood restaurant\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Puerto Manjar – California – inspired Seafood</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1060 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Epazote-300x184.jpg\" alt=\"Epazote Mexican restaurant\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Brezza at The Estates – A Mediterranean flavor</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-4 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(#203356, #446cb3);\" data-bg-color-1=\"#203356\" data-bg-color-2=\"#446cb3\" data-bg-direction=\"to bottom\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 24px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1061 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/gong-300x184.jpg\" alt=\"Gong Asian Restaurant\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Gong Restaurant – Far East Favorites</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1062 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/quinto-300x184.jpg\" alt=\"Quinto Charcoal Grill\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Quinto Charcoal Grill- The Best of Land and Sea</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1063 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/burger-300x184.jpg\" alt=\"Burger Custom Made\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Burger Custom Made –&nbsp;Reimagining the Burger</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-4 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(#203356, #446cb3);\" data-bg-color-1=\"#203356\" data-bg-color-2=\"#446cb3\" data-bg-direction=\"to bottom\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1064 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/tramonto-300x184.jpg\" alt=\"Tramonto Italian\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Tramonto – Tratoria in Paradise</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1811 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/ameca-300x184.jpg\" alt=\"Ameca Grill\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Ameca Social House – Le Petit Chef presentation</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1366 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Cafe-300x184.jpg\" alt=\"Cafe del Lago Buffet\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Cafe Del Lago – Morning Lake Views</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color1-background-color color-1-text-contrast bg-background-color tmpl-portfolio-6 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section color1-background-color color-1-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<p class=\"\" style=\"text-align: center; font-size: 25px;\">Casual Dining, Bars and Lounges, Great in-room Dining</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\">\r\n<p class=\"\" style=\"font-weight: 600; font-size: 23px;\" data-font-family=\"\" data-font-weight=\"600\" data-font-style=\"\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</p>\r\n\r\n<div class=\"row gridblock\" style=\"padding-bottom: 0px; padding-top: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<p class=\"\">Balance - Healthy&nbsp; food and drinks</p>\r\n<p class=\"\">Chiringuito - Authentic Spanish food</p>\r\n<p class=\"\">Beachland -Street foods &amp; vendors</p>\r\n<p class=\"\">La Cantina - Mexican Bar and comfort food</p>\r\n<p class=\"\">Ola Mulata - Lunch and early dinner</p>\r\nEstates Lounge Deck - Snacks &amp; drinks\r\n\r\nSi Snack - Poolside dining&nbsp;\r\n<p class=\"\">Sky Garden - Residence rooftop dining</p>\r\nPar Break - Breakfast/lunch/snacks\r\n<p class=\"\">Pool Bars - Swim up service</p>\r\n<p class=\"\">Salum - Snacks/cocktails/music</p>\r\nPool bar at the Estates - Snacks &amp; drinks\r\n<p class=\"\">Grand Lobby Bar - Lobby of Grand Mayan</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<p class=\"\">Balche - Sandwiches and snacks</p>\r\n<p class=\"\">Green Table - Organic light fare</p>\r\nPizza To Go - Room service only\r\n<p class=\"\">Limon y Sal - Ceviche and other seafoods</p>\r\n<p class=\"\">Samba - Breakfast buffet, international lunch and dinner</p>\r\n<p class=\"\">Sweet Paris - Sweet and savory crepes</p>\r\n<p class=\"\">Tacos Break - Traditional Mexican</p>\r\nRoom Service - 24 hour service\r\n\r\nGrill at the Estates - Breakfast &amp; lunch\r\n<p class=\"\">Grand Vista Bar - Lobby of Grand Bliss</p>\r\n<p class=\"\">Luxxe Bar - Near Epazote Restaurant</p>\r\n<p class=\"\">Santuario - Nightly theme Entertainment&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','DINING','','inherit','closed','closed','','239-revision-v1','','','2022-03-27 20:46:32','2022-03-27 20:46:32','',239,'https://estatesatnuevo.com/?p=242',0,'revision','',0),(243,1,'2022-03-27 21:06:53','2022-03-27 21:06:53','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-7 col-xs-12 col-sm-12\">\r\n<h3 class=\"\" style=\"font-family: Chonburi; font-weight: 600; font-style: normal; color: #000000; font-size: 25px; text-align: center;\" data-font-family=\"Chonburi\" data-font-weight=\"600\" data-font-style=\"normal\">MONEY and CREDIT CARDS</h3>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\">The Estates at Nuevo is a cashless resort meaning you do not use cash on the property. You provide a credit card when you check-in and sign the bills with your name and room number. Each person in the condo is required to sign in and you will be asked to sign on a electronic signature pad so your signature can be checked when you sign your bills. You settle your account when you leave.&nbsp;</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\">The money in Mexico is pesos and the sign is a $ sign. When you are looking at prices, if it\'s $240, it\'s really about $13.50 USD depending on the current currency exchange.&nbsp;&nbsp;</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\">The resort and local banks will require your passport to convert currency should you require it.&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-1399 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/money-300x158.jpg\" alt=\"Money in different currencies\" width=\"300\" height=\"158\" data-imhwpb-built-photo-search=\"93|landscape\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-5 text-center col-xs-12\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-1834\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/pvairport-300x199.jpg\" alt=\"Puerto Vallarta Airport\" width=\"434\" height=\"288\"></p>\r\n<p class=\"mod-img\"><img class=\"wp-image-1402 size-full aligncenter\" src=\"https://www.GrandLuxxe-Vacation.com/wp-content/uploads/2019/04/0_1_279_177_PV-airport-2.jpg\" alt=\"\" width=\"279\" height=\"177\" data-imhwpb-built-photo-search=\"92|landscape\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-7 col-xs-12\">\r\n<h2 class=\"\" style=\"font-family: Chonburi; font-weight: 600; color: #000000; font-size: 25px; text-align: center;\" data-font-family=\"Chonburi\" data-font-weight=\"600\" data-font-style=\"\">At the Airport</h2>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\">You need to have your custom forms completed before entering immigration area.&nbsp; If possible, do this on the plane before you disembark.&nbsp; Once you get through immigration, walk to your baggage and then to customs where you will push a button to register green or red. If red, they will inspect your luggage, if green, walk on through to locate the Gapsa taxi driver hostess with your name on their list.&nbsp; Be sure you follow the instructions that will be sent when you request your free transportation to the resort.&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-5 text-center col-xs-12\" style=\"padding-right: 0em; padding-left: 0em;\">\r\n<p class=\"\" style=\"font-family: Chonburi; font-weight: 600; font-size: 25px; color: #000000; text-align: center;\" data-font-family=\"Chonburi\" data-font-weight=\"600\" data-font-style=\"\">AMENITIES IN YOUR CONDO</p>\r\n<p class=\"\" style=\"margin-left: 32px; margin-right: 18px; text-align: left; color: #000000; font-weight: 600;\" data-font-weight=\"600\">Each condo has a kitchen area with refrigerator, coffee pot, blender, dishes, pots and pans, cutlery, etc.&nbsp; And each bedroom has a robe and free slippers, luxury toiletries, and a hair dryer as well as a flat screen television and a desk with chair,&nbsp; The market has a selection of groceries for all your needs.</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-7 col-xs-12\">\r\n<h4 class=\"\" style=\"font-family: Chonburi; font-weight: 600; font-size: 25px; color: #000000; text-align: center;\" data-font-family=\"Chonburi\" data-font-weight=\"600\" data-font-style=\"\">DAILY MAID SERVICE</h4>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\">Daily maid service is included. They make beds, dust, generally cleaning but not dishes.&nbsp; They work in shifts so if you intend to leave a tip, do it daily rather than at the end of your stay.&nbsp; There is also a nightly turn-down service with chocolates by your bed.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-5 text-center col-xs-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-1045 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Spatium-1-300x203.jpg\" alt=\"Spatium area\" width=\"300\" height=\"203\" data-imhwpb-built-photo-search=\"92|landscape\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-7 col-xs-12\">\r\n<h2 class=\"\" style=\"font-family: Chonburi; font-weight: 600; font-size: 25px; color: #000000; text-align: center;\" data-font-family=\"Chonburi\" data-font-weight=\"600\" data-font-style=\"\">General info</h2>\r\n<h4 class=\"\" style=\"font-family: Chonburi; font-weight: 600; color: #000000; text-align: center;\" data-font-family=\"Chonburi\" data-font-weight=\"600\" data-font-style=\"\">Other stuff that\'s good to know.</h4>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\">We have tried to provide all the information for your vacation, however feel free to contact us with any questions.</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\">The sun can be strong, so bring sunglasses and sun screen.&nbsp;&nbsp;</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\">There is free wi-fi and internet in each condo as well as in most places on the property.&nbsp; &nbsp;&nbsp;</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\">The resort has a filtration system so the water is safe to drink and fruits and vegetables are locally grown and safe to consume.&nbsp; &nbsp; &nbsp;</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\">The gym has state-of-the art equipment and is free to use. Please wear sneakers.&nbsp; &nbsp;&nbsp;</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\">The Spatium spa has free water areas that include a sauna, steam room, whirlpool, and cold plunge pool.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Info','','inherit','closed','closed','','101-revision-v1','','','2022-03-27 21:06:53','2022-03-27 21:06:53','',101,'https://estatesatnuevo.com/?p=243',0,'revision','',0),(244,1,'2022-03-27 21:08:02','2022-03-27 21:08:02','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-7 col-xs-12 col-sm-12\">\r\n<h3 class=\"\" style=\"font-family: Chonburi; font-weight: 600; font-style: normal; color: #000000; font-size: 25px; text-align: center;\" data-font-family=\"Chonburi\" data-font-weight=\"600\" data-font-style=\"normal\">MONEY and CREDIT CARDS</h3>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\">The Estates at Nuevo is a cashless resort meaning you do not use cash on the property. You provide a credit card when you check-in and sign the bills with your name and room number. Each person in the condo is required to sign in and you will be asked to sign on a electronic signature pad so your signature can be checked when you sign your bills. You settle your account when you leave.&nbsp;</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\">The money in Mexico is pesos and the sign is a $ sign. When you are looking at prices, if it\'s $240, it\'s really about $13.50 USD depending on the current currency exchange.&nbsp;&nbsp;</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\">The resort and local banks will require your passport to convert currency should you require it.&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-1399 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/money-300x158.jpg\" alt=\"Money in different currencies\" width=\"300\" height=\"158\" data-imhwpb-built-photo-search=\"93|landscape\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-5 text-center col-xs-12\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-1834\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/pvairport-300x199.jpg\" alt=\"Puerto Vallarta Airport\" width=\"434\" height=\"288\"></p>\r\n<p class=\"mod-img\"><img class=\"wp-image-1402 size-full aligncenter\" src=\"https://www.GrandLuxxe-Vacation.com/wp-content/uploads/2019/04/0_1_279_177_PV-airport-2.jpg\" alt=\"\" width=\"279\" height=\"177\" data-imhwpb-built-photo-search=\"92|landscape\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-7 col-xs-12\">\r\n<h2 class=\"\" style=\"font-family: Chonburi; font-weight: 600; color: #000000; font-size: 25px; text-align: center;\" data-font-family=\"Chonburi\" data-font-weight=\"600\" data-font-style=\"\">At the Airport</h2>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\">You need to have your custom forms completed before entering immigration area.&nbsp; If possible, do this on the plane before you disembark.&nbsp; Once you get through immigration, walk to your baggage and then to customs where you will push a button to register green or red. If red, they will inspect your luggage, if green, walk on through to locate the Gapsa taxi driver hostess with your name on their list.&nbsp; Be sure you follow the instructions that will be sent when you request your free transportation to the resort.&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-5 text-center col-xs-12\" style=\"padding-right: 0em; padding-left: 0em;\">\r\n<p class=\"\" style=\"font-family: Chonburi; font-weight: 600; font-size: 25px; color: #000000; text-align: center;\" data-font-family=\"Chonburi\" data-font-weight=\"600\" data-font-style=\"\">AMENITIES IN YOUR CONDO</p>\r\n<p class=\"\" style=\"margin-left: 32px; margin-right: 18px; text-align: left; color: #000000; font-weight: 600;\" data-font-weight=\"600\">Each condo has a kitchen area with refrigerator, coffee pot, blender, dishes, pots and pans, cutlery, etc.&nbsp; And each bedroom has a robe and free slippers, luxury toiletries, and a hair dryer as well as a flat screen television and a desk with chair,&nbsp; The market has a selection of groceries for all your needs.</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-7 col-xs-12\">\r\n<h4 class=\"\" style=\"font-family: Chonburi; font-weight: 600; font-size: 25px; color: #000000; text-align: center;\" data-font-family=\"Chonburi\" data-font-weight=\"600\" data-font-style=\"\">DAILY MAID SERVICE</h4>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\">Daily maid service is included. They make beds, dust, generally cleaning but not dishes.&nbsp; They work in shifts so if you intend to leave a tip, do it daily rather than at the end of your stay.&nbsp; There is also a nightly turn-down service with chocolates by your bed.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-5 text-center col-xs-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-1045 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Spatium-1-300x203.jpg\" alt=\"Spatium area\" width=\"300\" height=\"203\" data-imhwpb-built-photo-search=\"92|landscape\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-7 col-xs-12\">\r\n<h2 class=\"\" style=\"font-family: Chonburi; font-weight: 600; font-size: 25px; color: #000000; text-align: center;\" data-font-family=\"Chonburi\" data-font-weight=\"600\" data-font-style=\"\">General info</h2>\r\n<h4 class=\"\" style=\"font-family: Chonburi; font-weight: 600; color: #000000; text-align: center;\" data-font-family=\"Chonburi\" data-font-weight=\"600\" data-font-style=\"\">Other stuff that\'s good to know.</h4>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\">We have tried to provide all the information for your vacation, however feel free to contact us with any questions.</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\">The sun can be strong, so bring sunglasses and sun screen.&nbsp;&nbsp;</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\">There is free wi-fi and internet in each condo as well as in most places on the property.&nbsp; &nbsp;&nbsp;</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\">The resort has a filtration system so the water is safe to drink and fruits and vegetables are locally grown and safe to consume.&nbsp; &nbsp; &nbsp;</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\">The gym has state-of-the art equipment and is free to use. Please wear sneakers.&nbsp; &nbsp;&nbsp;</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\">The Spatium spa has free water areas that include a sauna, steam room, whirlpool, and cold plunge pool.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>','General Information','','inherit','closed','closed','','101-revision-v1','','','2022-03-27 21:08:02','2022-03-27 21:08:02','',101,'https://estatesatnuevo.com/?p=244',0,'revision','',0),(245,1,'2022-03-27 21:11:50','2022-03-27 21:11:50','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-8 col-sm-8 col-xs-12\">\r\n<p class=\"\">Please use the contact form below, if you have any general questions or requests about our condos.&nbsp; We will try our best to respond back to you within 24 hours.</p>\r\n[weforms id=\"57\"]\r\n\r\n</div>\r\n<div class=\"col-md-4 col-sm-4 col-xs-12\">\r\n<p class=\"\"><img class=\"alignnone wp-image-139 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/64_0_360_300.58252427184_estates-4.jpg\" alt=\"\" width=\"360\" height=\"300\" data-imhwpb-built-photo-search=\"52|portrait\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Contact','','inherit','closed','closed','','105-revision-v1','','','2022-03-27 21:11:50','2022-03-27 21:11:50','',105,'https://estatesatnuevo.com/?p=245',0,'revision','',0),(246,1,'2022-03-27 21:15:11','2022-03-27 21:15:11','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-8 col-sm-8 col-xs-12\">\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\">Please use the contact form below, if you have any general questions or requests about our condos.&nbsp; We will try our best to respond back to you within 24 hours.</p>\r\n[weforms id=\"57\"]\r\n\r\n</div>\r\n<div class=\"col-md-4 col-sm-4 col-xs-12\">\r\n<p class=\"\"><img class=\"alignnone wp-image-139 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/64_0_360_300.58252427184_estates-4.jpg\" alt=\"\" width=\"360\" height=\"300\" data-imhwpb-built-photo-search=\"52|portrait\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Contact','','inherit','closed','closed','','105-revision-v1','','','2022-03-27 21:15:11','2022-03-27 21:15:11','',105,'https://estatesatnuevo.com/?p=246',0,'revision','',0),(247,1,'2022-03-27 21:24:53','2022-03-27 21:24:53','<div class=\"tmpl-team-2 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 30px; text-align: center;\" data-font-weight=\"600\">ACTIVITIES</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 text-center col-lg-4\">\r\n<div style=\"padding: 20px 10%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\r\n<p class=\"mod-reset\"><img src=\"https://www.vidanta.com/documents/34916/49574/vidanta-golf-nuevovallarta-gallery-1.jpg/7ad7e5b6-9a67-96fb-03df-82a5177c02ca?t=1506961150363\" alt=\"slide-003\"></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000; font-weight: 600;\" data-font-weight=\"600\">GOLF</p>\r\n<p class=\"boxcard__text\" style=\"color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">With two of the region’s premier courses—The Nayar Course and the Norman Signature Course—plus the 10-hole, par-3 The Lakes Course, the all-new Vidanta Golf Academy, a beautiful new restaurant, and the longest golf cart suspension bridge in the world, there really is no vacation getaway for golfers that compares.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 text-center col-lg-4\">\r\n<div style=\"padding: 20px 10%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\r\n<p class=\"mod-reset\"><img src=\"https://www.vidanta.com/documents/34916/610451/vidanta-nuevo-vallarta-spa-theestates-Intro.jpg/29d19560-4f42-8684-ddc3-fe5a66612cd2?t=1658276461566\" alt=\"Photo\"></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000; font-weight: 600;\" data-font-weight=\"600\">SPA &amp; GYM</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Situated in the lush landscape surrounding Vidanta\'s most luxurious accommodations, The Spa at The Estates showcases a modern experience in bespoke relaxation that seamlessly incorporates timeless elements of nature with techniques and traditions from a variety of cultures.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-12 col-xs-12 text-center col-lg-4\">\r\n<div style=\"padding: 20px 10%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\r\n<p class=\"mod-reset\"><img src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Grand-Luxxe-Infinitiy-Pool-300x225.jpg\" alt=\"Infinity pool\"></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000; font-weight: 600;\" data-font-weight=\"600\">POOLS &amp; POOLSIDE</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">There are private pools for Estates only as well as a number of other pool &amp; poolside activities such as water polo, water volleyball, aqua aerobics, Paddle Board stretching class, Salsa lessons, Spanish class, arts &amp; crafts, Guacamole making class.&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-team-2 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 text-center col-lg-4\">\r\n<div style=\"padding: 20px 15%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\r\n<p class=\"mod-reset\"><img class=\"shape circle bg-img alignnone wp-image-1886\" style=\"margin-top: -85px; margin-bottom: 20px; border: 2px solid #cecece;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/joysquad-300x233.jpg\" alt=\"Joy Squad\" width=\"270\" height=\"210\"></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000; font-weight: 600;\" data-font-weight=\"600\">JOY SQUAD</p>\r\n<p class=\"\" style=\"color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">It’s your vacation, so why not spend it doing the types of things you love to do? At Estates at Nuevo you’ll find a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, all run by our amazing activities team, the Joy Squad.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 text-center col-lg-4\">\r\n<div style=\"padding: 20px 15%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\r\n<p class=\"mod-reset\"><img class=\"shape circle bg-img alignnone wp-image-1888 size-medium\" style=\"margin-top: -85px; margin-bottom: 20px; border: 2px solid #cecece;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/vidanta-nuevovallarta-activities-tours-300x233.jpg\" alt=\"Walking paths\" width=\"300\" height=\"233\"></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000; font-weight: 600;\" data-font-weight=\"600\">tours</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Heart of Vidanta Tour</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Walks Wildlife Tour</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Iguana Tour</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Tequila Tour</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Explore Mexico</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-12 col-xs-12 text-center col-lg-4\">\r\n<div style=\"padding: 20px 15%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\r\n<p class=\"mod-reset\"><img class=\"shape circle bg-img alignnone wp-image-1390 size-medium\" style=\"margin-top: -85px; margin-bottom: 20px; border: 2px solid #cecece;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/CLUB-300x191.jpg\" alt=\"Kids\' Club pools\" width=\"300\" height=\"191\"></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000; font-weight: 600;\" data-font-weight=\"600\">kids club</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Kid’s Club is for the little ones! It offers an assortment of amazing activities, including water activities at the on-premise pool, for children ages 5 to 12. All of these activities are supervised by our expert staff. Kid’s Club also has weekly theme nights where, for an additional fee, you can drop off your children and enjoy an evening at the resort while they make new friends and try new things at events like Pirate Night or Pajama Party.&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-team-2 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 text-center col-lg-4\">\r\n<div style=\"padding: 20px 15%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\r\n<p class=\"mod-reset\"><img class=\"shape circle bg-img alignnone wp-image-1887 size-medium\" style=\"margin-top: -85px; margin-bottom: 20px; border: 2px solid #cecece;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/vidanta-nuevovallarta-activities-beach-300x233.jpg\" alt=\"Beach\" width=\"300\" height=\"233\"></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000; font-weight: 600;\" data-font-weight=\"600\">beach</p>\r\n<p class=\"\" style=\"color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Soccer</p>\r\n<p class=\"\" style=\"color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Volleyball</p>\r\n<p class=\"\" style=\"color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Horseshoe Tournament</p>\r\n<p class=\"\" style=\"color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Bocce Ball</p>\r\n<p class=\"\" style=\"color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Beach Exploration</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-12 col-xs-12 text-center col-lg-4\">\r\n<div style=\"padding: 20px 15%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\r\n<p class=\"mod-reset\"><img class=\"shape circle bg-img alignnone wp-image-1889 size-medium\" style=\"margin-top: -85px; margin-bottom: 20px; border: 2px solid #cecece;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/vidanta-nuevovallarta-activities-nighttime-300x233.jpg\" alt=\"Night time shows at Santuario\" width=\"300\" height=\"233\"></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000; font-weight: 600;\" data-font-weight=\"600\">night time</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Show</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Bingo Night</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Trivia Night</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Black Jack Night</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Karaoke Night</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-12 col-xs-12 text-center col-lg-4\">\r\n<div style=\"padding: 20px 15%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\r\n<p class=\"mod-reset\"><img class=\"shape circle bg-img alignnone wp-image-1889 size-medium\" style=\"margin-top: -85px; margin-bottom: 20px; border: 2px solid #cecece;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/vidanta-nuevovallarta-activities-nighttime-300x233.jpg\" alt=\"Night time shows at Santuario\" width=\"300\" height=\"233\"></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000; font-weight: 600;\" data-font-weight=\"600\">ENTERTAINMENT</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">As the evening settles in, that’s when Vidanta Nuevo Vallarta bursts to life. Intoxicating live music; vibrant displays of acrobatics, dance, clowning, and artistry; dazzling light shows utilizing the latest in digital effects; festive celebrations of food, culture, and fun—this is your vacation and this destination provides a myriad of ways to enrich and enliven every moment of it. It’s time to embrace the magic and marvels playing out all around you!</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-team-2 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Activities','','publish','closed','closed','','activities','','','2022-11-18 15:17:01','2022-11-18 15:17:01','',97,'https://estatesatnuevo.com/?page_id=247',0,'page','',0),(248,1,'2022-03-27 21:24:53','2022-03-27 21:24:53','<div class=\"tmpl-team-2 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 30px; text-align: center;\" data-font-weight=\"600\">ACTIVITIES</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"padding: 20px 15%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\r\n<p class=\"mod-reset\"><img class=\"shape circle bg-img alignnone wp-image-1886\" style=\"margin-top: -85px; margin-bottom: 20px; border: 2px solid #cecece;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/joysquad-300x233.jpg\" alt=\"Joy Squad\" width=\"270\" height=\"210\"></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000;\">JOY SQUAD</p>\r\n<p class=\"boxcard__text\" style=\"color: #000000; line-height: 1.5em;\">It’s your vacation, so why not spend it doing the types of things you love to do? At Estates at Nuevo you’ll find a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, all run by our amazing activities team, the Joy Squad.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"padding: 20px 15%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\r\n<p class=\"mod-reset\"><img class=\"shape circle bg-img alignnone wp-image-1038 size-medium\" style=\"margin-top: -85px; margin-bottom: 20px; border: 2px solid #cecece;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Grand-Luxxe-Infinitiy-Pool-300x225.jpg\" alt=\"Infinity pool\" width=\"300\" height=\"225\"></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000;\">pools &amp; poolside</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em;\">There are a number of pool &amp; poolside activities including water polo, water volleyball, aqua aerobics, Paddle Board stretching class, Salsa lessons, Spanish class, arts &amp; crafts, Guacamole making class.&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-12 col-xs-12 text-center\">\r\n<div style=\"padding: 20px 15%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\r\n<p class=\"mod-reset\"><img class=\"shape circle bg-img alignnone wp-image-1390 size-medium\" style=\"margin-top: -85px; margin-bottom: 20px; border: 2px solid #cecece;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/CLUB-300x191.jpg\" alt=\"Kids\' Club pools\" width=\"300\" height=\"191\"></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000;\">kids club</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em;\">Kid’s Club is for the little ones! It offers an assortment of amazing activities, including water activities at the on-premise pool, for children ages 5 to 12. All of these activities are supervised by our expert staff. Kid’s Club also has weekly theme nights where, for an additional fee, you can drop off your children and enjoy an evening at the resort while they make new friends and try new things at events like Pirate Night or Pajama Party.&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-team-2 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"padding: 20px 15%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\r\n<p class=\"mod-reset\"><img class=\"shape circle bg-img alignnone wp-image-1887 size-medium\" style=\"margin-top: -85px; margin-bottom: 20px; border: 2px solid #cecece;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/vidanta-nuevovallarta-activities-beach-300x233.jpg\" alt=\"Beach\" width=\"300\" height=\"233\"></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000;\">beach</p>\r\n<p class=\"\" style=\"color: #000000; line-height: 1.5em;\">Soccer</p>\r\n<p class=\"\" style=\"color: #000000; line-height: 1.5em;\">Volleyball</p>\r\n<p class=\"\" style=\"color: #000000; line-height: 1.5em;\">Horseshoe Tournament</p>\r\n<p class=\"\" style=\"color: #000000; line-height: 1.5em;\">Bocce Ball</p>\r\n<p class=\"\" style=\"color: #000000; line-height: 1.5em;\">Beach Exploration</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"padding: 20px 15%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\r\n<p class=\"mod-reset\"><img class=\"shape circle bg-img alignnone wp-image-1888 size-medium\" style=\"margin-top: -85px; margin-bottom: 20px; border: 2px solid #cecece;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/vidanta-nuevovallarta-activities-tours-300x233.jpg\" alt=\"Walking paths\" width=\"300\" height=\"233\"></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000;\">tours</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em;\">Heart of Vidanta Tour</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em;\">Walks Wildlife Tour</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em;\">Iguana Tour</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em;\">Tequila Tour</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em;\">Explore Mexico</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-12 col-xs-12 text-center\">\r\n<div style=\"padding: 20px 15%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\r\n<p class=\"mod-reset\"><img class=\"shape circle bg-img alignnone wp-image-1889 size-medium\" style=\"margin-top: -85px; margin-bottom: 20px; border: 2px solid #cecece;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/vidanta-nuevovallarta-activities-nighttime-300x233.jpg\" alt=\"Night time shows at Santuario\" width=\"300\" height=\"233\"></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000;\">night time</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em;\">Show</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em;\">Bingo Night</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em;\">Trivia Night</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em;\">Black Jack Night</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em;\">Karaoke Night</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-team-2 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Activities','','inherit','closed','closed','','247-revision-v1','','','2022-03-27 21:24:53','2022-03-27 21:24:53','',247,'https://estatesatnuevo.com/?p=248',0,'revision','',0),(249,1,'2022-04-08 21:12:12','2022-03-27 21:24:53',' ','','','publish','closed','closed','','249','','','2022-04-08 21:12:12','2022-04-08 21:12:12','',97,'https://estatesatnuevo.com/249/',4,'nav_menu_item','',0),(250,1,'2022-03-27 21:25:25','2022-03-27 21:25:25','<div class=\"tmpl-team-2 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 30px; text-align: center;\" data-font-weight=\"600\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"padding: 20px 15%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\r\n<p class=\"mod-reset\"><img class=\"shape circle bg-img alignnone wp-image-1886\" style=\"margin-top: -85px; margin-bottom: 20px; border: 2px solid #cecece;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/joysquad-300x233.jpg\" alt=\"Joy Squad\" width=\"270\" height=\"210\"></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000;\">JOY SQUAD</p>\r\n<p class=\"boxcard__text\" style=\"color: #000000; line-height: 1.5em;\">It’s your vacation, so why not spend it doing the types of things you love to do? At Estates at Nuevo you’ll find a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, all run by our amazing activities team, the Joy Squad.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"padding: 20px 15%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\r\n<p class=\"mod-reset\"><img class=\"shape circle bg-img alignnone wp-image-1038 size-medium\" style=\"margin-top: -85px; margin-bottom: 20px; border: 2px solid #cecece;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Grand-Luxxe-Infinitiy-Pool-300x225.jpg\" alt=\"Infinity pool\" width=\"300\" height=\"225\"></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000;\">pools &amp; poolside</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em;\">There are a number of pool &amp; poolside activities including water polo, water volleyball, aqua aerobics, Paddle Board stretching class, Salsa lessons, Spanish class, arts &amp; crafts, Guacamole making class.&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-12 col-xs-12 text-center\">\r\n<div style=\"padding: 20px 15%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\r\n<p class=\"mod-reset\"><img class=\"shape circle bg-img alignnone wp-image-1390 size-medium\" style=\"margin-top: -85px; margin-bottom: 20px; border: 2px solid #cecece;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/CLUB-300x191.jpg\" alt=\"Kids\' Club pools\" width=\"300\" height=\"191\"></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000;\">kids club</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em;\">Kid’s Club is for the little ones! It offers an assortment of amazing activities, including water activities at the on-premise pool, for children ages 5 to 12. All of these activities are supervised by our expert staff. Kid’s Club also has weekly theme nights where, for an additional fee, you can drop off your children and enjoy an evening at the resort while they make new friends and try new things at events like Pirate Night or Pajama Party.&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-team-2 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"padding: 20px 15%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\r\n<p class=\"mod-reset\"><img class=\"shape circle bg-img alignnone wp-image-1887 size-medium\" style=\"margin-top: -85px; margin-bottom: 20px; border: 2px solid #cecece;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/vidanta-nuevovallarta-activities-beach-300x233.jpg\" alt=\"Beach\" width=\"300\" height=\"233\"></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000;\">beach</p>\r\n<p class=\"\" style=\"color: #000000; line-height: 1.5em;\">Soccer</p>\r\n<p class=\"\" style=\"color: #000000; line-height: 1.5em;\">Volleyball</p>\r\n<p class=\"\" style=\"color: #000000; line-height: 1.5em;\">Horseshoe Tournament</p>\r\n<p class=\"\" style=\"color: #000000; line-height: 1.5em;\">Bocce Ball</p>\r\n<p class=\"\" style=\"color: #000000; line-height: 1.5em;\">Beach Exploration</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"padding: 20px 15%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\r\n<p class=\"mod-reset\"><img class=\"shape circle bg-img alignnone wp-image-1888 size-medium\" style=\"margin-top: -85px; margin-bottom: 20px; border: 2px solid #cecece;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/vidanta-nuevovallarta-activities-tours-300x233.jpg\" alt=\"Walking paths\" width=\"300\" height=\"233\"></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000;\">tours</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em;\">Heart of Vidanta Tour</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em;\">Walks Wildlife Tour</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em;\">Iguana Tour</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em;\">Tequila Tour</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em;\">Explore Mexico</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-12 col-xs-12 text-center\">\r\n<div style=\"padding: 20px 15%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\r\n<p class=\"mod-reset\"><img class=\"shape circle bg-img alignnone wp-image-1889 size-medium\" style=\"margin-top: -85px; margin-bottom: 20px; border: 2px solid #cecece;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/vidanta-nuevovallarta-activities-nighttime-300x233.jpg\" alt=\"Night time shows at Santuario\" width=\"300\" height=\"233\"></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000;\">night time</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em;\">Show</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em;\">Bingo Night</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em;\">Trivia Night</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em;\">Black Jack Night</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em;\">Karaoke Night</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-team-2 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Activities','','inherit','closed','closed','','247-revision-v1','','','2022-03-27 21:25:25','2022-03-27 21:25:25','',247,'https://estatesatnuevo.com/?p=250',0,'revision','',0),(251,1,'2022-11-18 15:16:27','2022-11-18 15:16:27','<div class=\"tmpl-team-2 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\n</div>\n<div class=\"row\">\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 30px; text-align: center;\" data-font-weight=\"600\">ACTIVITIES</p>\n\n</div>\n</div>\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\n<div class=\"col-md-4 col-sm-6 col-xs-12 text-center col-lg-4\">\n<div style=\"padding: 20px 10%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\n<p class=\"mod-reset\"><img src=\"https://www.vidanta.com/documents/34916/49574/vidanta-golf-nuevovallarta-gallery-1.jpg/7ad7e5b6-9a67-96fb-03df-82a5177c02ca?t=1506961150363\" alt=\"slide-003\"></p>\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000; font-weight: 600;\" data-font-weight=\"600\">GOLF</p>\n<p class=\"boxcard__text\" style=\"color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">With two of the region’s premier courses—The Nayar Course and the Norman Signature Course—plus the 10-hole, par-3 The Lakes Course, the all-new Vidanta Golf Academy, a beautiful new restaurant, and the longest golf cart suspension bridge in the world, there really is no vacation getaway for golfers that compares.</p>\n\n</div>\n</div>\n<div class=\"col-md-4 col-sm-6 col-xs-12 text-center col-lg-4\">\n<div style=\"padding: 20px 10%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\n<p class=\"mod-reset\"><img src=\"https://www.vidanta.com/documents/34916/610451/vidanta-nuevo-vallarta-spa-theestates-Intro.jpg/29d19560-4f42-8684-ddc3-fe5a66612cd2?t=1658276461566\" alt=\"Photo\"></p>\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000; font-weight: 600;\" data-font-weight=\"600\">SPA &amp; GYM</p>\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Situated in the lush landscape surrounding Vidanta\'s most luxurious accommodations, The Spa at The Estates showcases a modern experience in bespoke relaxation that seamlessly incorporates timeless elements of nature with techniques and traditions from a variety of cultures.</p>\n\n</div>\n</div>\n<div class=\"col-md-4 col-sm-12 col-xs-12 text-center col-lg-4\">\n<div style=\"padding: 20px 10%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\n<p class=\"mod-reset\"><img src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Grand-Luxxe-Infinitiy-Pool-300x225.jpg\" alt=\"Infinity pool\"></p>\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000; font-weight: 600;\" data-font-weight=\"600\">POOLS &amp; POOLSIDE</p>\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">There are private pools for Estates only as well as a number of other pool &amp; poolside activities such as water polo, water volleyball, aqua aerobics, Paddle Board stretching class, Salsa lessons, Spanish class, arts &amp; crafts, Guacamole making class.&nbsp;</p>\n\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"tmpl-team-2 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\n<div class=\"col-md-4 col-sm-6 col-xs-12 text-center col-lg-4\">\n<div style=\"padding: 20px 15%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\n<p class=\"mod-reset\"><img class=\"shape circle bg-img alignnone wp-image-1886\" style=\"margin-top: -85px; margin-bottom: 20px; border: 2px solid #cecece;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/joysquad-300x233.jpg\" alt=\"Joy Squad\" width=\"270\" height=\"210\"></p>\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000; font-weight: 600;\" data-font-weight=\"600\">JOY SQUAD</p>\n<p class=\"\" style=\"color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">It’s your vacation, so why not spend it doing the types of things you love to do? At Estates at Nuevo you’ll find a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, all run by our amazing activities team, the Joy Squad.</p>\n\n</div>\n</div>\n<div class=\"col-md-4 col-sm-6 col-xs-12 text-center col-lg-4\">\n<div style=\"padding: 20px 15%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\n<p class=\"mod-reset\"><img class=\"shape circle bg-img alignnone wp-image-1888 size-medium\" style=\"margin-top: -85px; margin-bottom: 20px; border: 2px solid #cecece;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/vidanta-nuevovallarta-activities-tours-300x233.jpg\" alt=\"Walking paths\" width=\"300\" height=\"233\"></p>\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000; font-weight: 600;\" data-font-weight=\"600\">tours</p>\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Heart of Vidanta Tour</p>\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Walks Wildlife Tour</p>\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Iguana Tour</p>\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Tequila Tour</p>\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Explore Mexico</p>\n\n</div>\n</div>\n<div class=\"col-md-4 col-sm-12 col-xs-12 text-center col-lg-4\">\n<div style=\"padding: 20px 15%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\n<p class=\"mod-reset\"><img class=\"shape circle bg-img alignnone wp-image-1390 size-medium\" style=\"margin-top: -85px; margin-bottom: 20px; border: 2px solid #cecece;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/CLUB-300x191.jpg\" alt=\"Kids\' Club pools\" width=\"300\" height=\"191\"></p>\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000; font-weight: 600;\" data-font-weight=\"600\">kids club</p>\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Kid’s Club is for the little ones! It offers an assortment of amazing activities, including water activities at the on-premise pool, for children ages 5 to 12. All of these activities are supervised by our expert staff. Kid’s Club also has weekly theme nights where, for an additional fee, you can drop off your children and enjoy an evening at the resort while they make new friends and try new things at events like Pirate Night or Pajama Party.&nbsp;</p>\n\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"tmpl-team-2 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\n<div class=\"col-md-4 col-sm-6 col-xs-12 text-center col-lg-4\">\n<div style=\"padding: 20px 15%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\n<p class=\"mod-reset\"><img class=\"shape circle bg-img alignnone wp-image-1887 size-medium\" style=\"margin-top: -85px; margin-bottom: 20px; border: 2px solid #cecece;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/vidanta-nuevovallarta-activities-beach-300x233.jpg\" alt=\"Beach\" width=\"300\" height=\"233\"></p>\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000; font-weight: 600;\" data-font-weight=\"600\">beach</p>\n<p class=\"\" style=\"color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Soccer</p>\n<p class=\"\" style=\"color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Volleyball</p>\n<p class=\"\" style=\"color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Horseshoe Tournament</p>\n<p class=\"\" style=\"color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Bocce Ball</p>\n<p class=\"\" style=\"color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Beach Exploration</p>\n\n</div>\n</div>\n<div class=\"col-md-4 col-sm-12 col-xs-12 text-center col-lg-4\">\n<div style=\"padding: 20px 15%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\n<p class=\"mod-reset\"><img class=\"shape circle bg-img alignnone wp-image-1889 size-medium\" style=\"margin-top: -85px; margin-bottom: 20px; border: 2px solid #cecece;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/vidanta-nuevovallarta-activities-nighttime-300x233.jpg\" alt=\"Night time shows at Santuario\" width=\"300\" height=\"233\"></p>\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000; font-weight: 600;\" data-font-weight=\"600\">night time</p>\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Show</p>\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Bingo Night</p>\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Trivia Night</p>\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Black Jack Night</p>\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Karaoke Night</p>\n\n</div>\n</div>\n<div class=\"col-md-4 col-sm-12 col-xs-12 text-center col-lg-4\">\n<div style=\"padding: 20px 15%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\n<p class=\"mod-reset\"><img class=\"shape circle bg-img alignnone wp-image-1889 size-medium\" style=\"margin-top: -85px; margin-bottom: 20px; border: 2px solid #cecece;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/vidanta-nuevovallarta-activities-nighttime-300x233.jpg\" alt=\"Night time shows at Santuario\" width=\"300\" height=\"233\"></p>\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000; font-weight: 600;\" data-font-weight=\"600\">ENTERTAINMENT</p>\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">As the evening settles in, that’s when Vidanta Nuevo Vallarta bursts to life. Intoxicating live music; vibrant displays of acrobatics, dance, clowning, and artistry; dazzling light shows utilizing the latest in digital effects; festive celebrations of food, culture, and fun—this is your vacation and this destination provides a myriad of ways to enrich and enliven every moment of it. It’s time to embrace the magic and marvels playing out all around you!</p>\n\n</div>\n</div>\n</div>\n<div class=\"tmpl-team-2 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\n</div>\n</div>\n</div>\n</div>\n</div>','Activities','','inherit','closed','closed','','247-autosave-v1','','','2022-11-18 15:16:27','2022-11-18 15:16:27','',247,'https://estatesatnuevo.com/?p=251',0,'revision','',0),(252,1,'2022-03-27 21:28:10','2022-03-27 21:28:10','<div class=\"tmpl-team-2 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 30px; text-align: center;\" data-font-weight=\"600\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"padding: 20px 10%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\r\n<p class=\"mod-reset\"><img class=\"shape circle bg-img alignnone wp-image-1886\" style=\"margin-top: -85px; margin-bottom: 20px; border: 2px solid #cecece;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/joysquad-300x233.jpg\" alt=\"Joy Squad\" width=\"270\" height=\"210\"></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000;\">JOY SQUAD</p>\r\n<p class=\"boxcard__text\" style=\"color: #000000; line-height: 1.5em;\">It’s your vacation, so why not spend it doing the types of things you love to do? At Estates at Nuevo you’ll find a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, all run by our amazing activities team, the Joy Squad.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"padding: 20px 10%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\r\n<p class=\"mod-reset\"><img class=\"shape circle bg-img alignnone wp-image-1038 size-medium\" style=\"margin-top: -85px; margin-bottom: 20px; border: 2px solid #cecece;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Grand-Luxxe-Infinitiy-Pool-300x225.jpg\" alt=\"Infinity pool\" width=\"300\" height=\"225\"></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000;\">pools &amp; poolside</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em;\">There are private pools for Estates only as well as a number of other pool &amp; poolside activities such as water polo, water volleyball, aqua aerobics, Paddle Board stretching class, Salsa lessons, Spanish class, arts &amp; crafts, Guacamole making class.&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-12 col-xs-12 text-center\">\r\n<div style=\"padding: 20px 10%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\r\n<p class=\"mod-reset\"><img class=\"shape circle bg-img alignnone wp-image-1390 size-medium\" style=\"margin-top: -85px; margin-bottom: 20px; border: 2px solid #cecece;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/CLUB-300x191.jpg\" alt=\"Kids\' Club pools\" width=\"300\" height=\"191\"></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000;\">kids club</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em;\">Kid’s Club is for the little ones! It offers an assortment of amazing activities, including water activities at the on-premise pool, for children ages 5 to 12. All of these activities are supervised by our expert staff. Kid’s Club also has weekly theme nights where, for an additional fee, you can drop off your children and enjoy an evening at the resort while they make new friends and try new things at events like Pirate Night or Pajama Party.&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-team-2 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"padding: 20px 15%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\r\n<p class=\"mod-reset\"><img class=\"shape circle bg-img alignnone wp-image-1887 size-medium\" style=\"margin-top: -85px; margin-bottom: 20px; border: 2px solid #cecece;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/vidanta-nuevovallarta-activities-beach-300x233.jpg\" alt=\"Beach\" width=\"300\" height=\"233\"></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000;\">beach</p>\r\n<p class=\"\" style=\"color: #000000; line-height: 1.5em;\">Soccer</p>\r\n<p class=\"\" style=\"color: #000000; line-height: 1.5em;\">Volleyball</p>\r\n<p class=\"\" style=\"color: #000000; line-height: 1.5em;\">Horseshoe Tournament</p>\r\n<p class=\"\" style=\"color: #000000; line-height: 1.5em;\">Bocce Ball</p>\r\n<p class=\"\" style=\"color: #000000; line-height: 1.5em;\">Beach Exploration</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"padding: 20px 15%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\r\n<p class=\"mod-reset\"><img class=\"shape circle bg-img alignnone wp-image-1888 size-medium\" style=\"margin-top: -85px; margin-bottom: 20px; border: 2px solid #cecece;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/vidanta-nuevovallarta-activities-tours-300x233.jpg\" alt=\"Walking paths\" width=\"300\" height=\"233\"></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000;\">tours</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em;\">Heart of Vidanta Tour</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em;\">Walks Wildlife Tour</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em;\">Iguana Tour</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em;\">Tequila Tour</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em;\">Explore Mexico</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-12 col-xs-12 text-center\">\r\n<div style=\"padding: 20px 15%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\r\n<p class=\"mod-reset\"><img class=\"shape circle bg-img alignnone wp-image-1889 size-medium\" style=\"margin-top: -85px; margin-bottom: 20px; border: 2px solid #cecece;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/vidanta-nuevovallarta-activities-nighttime-300x233.jpg\" alt=\"Night time shows at Santuario\" width=\"300\" height=\"233\"></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000;\">night time</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em;\">Show</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em;\">Bingo Night</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em;\">Trivia Night</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em;\">Black Jack Night</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em;\">Karaoke Night</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-team-2 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Activities','','inherit','closed','closed','','247-revision-v1','','','2022-03-27 21:28:10','2022-03-27 21:28:10','',247,'https://estatesatnuevo.com/?p=252',0,'revision','',0),(254,1,'2022-03-27 21:37:37','2022-03-27 21:37:37','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"color: #ffffff; background-image: linear-gradient(to left, rgba(26, 26, 26, 0.5), rgba(26, 26, 26, 0.5)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/pool.jpg\'); background-size: cover; background-position: 50% 75%;\" data-imhwpb-asset-id=\"1111019\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/pool.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-md-2 col-sm-2 col-xs-12\"></div>\r\n<div class=\"col-md-8 col-sm-10 col-xs-12 align-column-center\">\r\n<h2 class=\"intro__title\" style=\"font-weight: 600; font-size: 32px; color: #ffffff;\" data-font-weight=\"600\">Ultimate Luxury Meets Ultimate Nature</h2>\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-12\"></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 25px 4em 0px;\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"https://www.estatesatnuevo.com/estates-4-bedroom\"><b>4 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"https://www.estatesatnuevo.com/estates-3-bedroom\"><b>3 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"https://www.estatesatnuevo.com/estates-2-bedroom\"><b>2 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"https://www.estatesatnuevo.com/estates-1-bedroom\"><b>1 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 60px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">RESORT INFO</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>The Estates at Nuevo&nbsp; Luxury Vacation Condos are the pinnacle of luxury and service within our Vidanta resort group. Nestled between the Pacific Ocean and the Sierra Madre Mountains, Estates at Nuevo is a Mexican tropical beach paradise vacation that offers the ultimate Mexican resort vacation. As the biggest of the Vidanta destinations, it has been carefully cultivated to provide a high-end experience full of options:&nbsp; luxury vacation condos,&nbsp; restaurants and lounges&nbsp; golf courses, a shopping plaza, two indulgent spas, beautiful beaches, and countless pools.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">DINING</h3>\r\n<p class=\"\"><span>With over 40 restaurants and lounges to choose from, Estates at Nuevo gives guests the opportunity to dine however they like. Options range from high-end eateries to casual restaurants to authentic Mexican spots, and even a gourmet market filled with offerings from all over the world. One thing is for sure—an amazing culinary experience is always just a meal away.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">ACTIVITIES</h3>\r\n<p class=\"\"><span>The Estates Vacation offers a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, a number of pool &amp; poolside activities including water polo, water volleyball, aqua aerobics, Paddle Board stretching class, Salsa lessons, Spanish class, arts &amp; crafts, Guacamole making class. Kids Club, Beach, Tours, and Night time Shows.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"/activities\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding: 3em 4em 1em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">About Us</h2>\r\n<h3 class=\"\">WE CARE ABOUT YOUR VACATION</h3>\r\n<div><span class=\"\">We are owners at the Estates at Nuevo Luxury Condo Suites at the Vidanta Resorts.&nbsp; We also own at the Grand Luxxe Vacation resort.&nbsp; There are several of the Vidanta resorts in Mexico but we love the Nuevo Vallarta site because it has the most to offer.&nbsp; &nbsp;</span></div>\r\n<p class=\"\">We work with other owners so we have a larger selection of rentals available. Some have already been secured with the resort and are ready to book.&nbsp; If not, then we can check on availability for your specific time frame.</p>\r\n<p class=\"\">Always happy to answer any questions you may have about the resort and ourselves.&nbsp;&nbsp;</p>\r\n<p class=\"\">Thanks!&nbsp; Linda and Frank Helman</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 align-column-center\"><span class=\"\">From the moment you arrive, you will sense the difference with personalized attention 24/7 and the exclusivity in private beach and pool areas that are intimate and tranquil. At Vidanta’s Estates at Nuevo Vacation Mexican resort, we invite you to explore the gardens and landscaping, enjoy the ocean breeze, the unparalleled panoramic view of the Pacific Ocean in a magnificent sunset, and the natural biodiversity of the Bandera’s bay. It is the kind of extraordinary Mexican vacation experience you want, and the kind of service you deserve and expect.</span></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 0em 3em 90px;\">\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-110\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"k8m4Uj5JJAQ\" data-imhwpb-asset-id=\"1111013\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-111\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"r1tjlHBnHzY\" data-imhwpb-asset-id=\"1111014\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-112\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"l5gzNmXTzIg\" data-imhwpb-asset-id=\"1111015\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-113\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"\" data-imhwpb-asset-id=\"1111016\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-114\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"sBtqOe23bd0\" data-imhwpb-asset-id=\"1111017\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-115\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"B8He4PJkMLg\" data-imhwpb-asset-id=\"1111018\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\'); background-size: cover; background-position: 50% 58%;\" data-imhwpb-asset-id=\"1111020\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding: 75px 2em 4em;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-key\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Vacation GOLF</h3>\r\n<p class=\"H1\" data-font-weight=\"600\">Two Designer Courses, a Par 3 Lighted Course, and a State-of-the Art Instructional Academy.&nbsp; Estates at Nuevo boasts the most comprehensive golf offerings in the area. PGA tournament in 2023 here!</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-star-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Special NEEDS</h3>\r\n<p class=\"\">Do you have a special need? Wheelchairs are available for rent and special golf carts will take you around the property.&nbsp; Need a baby crib or child care? We can handle that too.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container-fluid\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding: 3em 4em 2em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">Our Location</h2>\r\n<p class=\"\">Because we put the customer first, we always have free transportation from the airport to the resort and to your living suite.&nbsp;</p>\r\n<p class=\"\">Review the room details and let us know how we can help you have the best vacation possible.</p>\r\n\r\n<h3 class=\"\" style=\"color: #000000; font-weight: 600; font-size: 25px;\" data-font-weight=\"600\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address&nbsp;</h3>\r\n<p class=\"\" style=\"font-weight: 600; color: #000000;\" data-font-weight=\"600\">Blvrd Riviera Nayarit #254, 63735 Nuevo Vallarta, Nay., Mexico</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 bg-box-flush\">\r\n<p class=\"\"><img class=\"bg-img alignnone wp-image-1806 size-medium\" style=\"background-color: var(--color-neutral); color: var(--color-neutral-text-contrast);\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico.jpg-2-300x210.jpg\" alt=\"Resort area showing proximity to airport and Puerto Vallarta\" width=\"300\" height=\"210\"><img class=\"bg-img alignnone wp-image-1810 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico-1.jpg-2-1-300x239.jpg\" alt=\"Close up of resort area\" width=\"300\" height=\"239\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','97-revision-v1','','','2022-03-27 21:37:37','2022-03-27 21:37:37','',97,'https://estatesatnuevo.com/?p=254',0,'revision','',0),(253,1,'2022-03-27 21:29:15','2022-03-27 21:29:15','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"color: #ffffff; background-image: linear-gradient(to left, rgba(26, 26, 26, 0.5), rgba(26, 26, 26, 0.5)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/pool.jpg\'); background-size: cover; background-position: 50% 75%;\" data-imhwpb-asset-id=\"1111019\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/pool.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-md-2 col-sm-2 col-xs-12\"></div>\r\n<div class=\"col-md-8 col-sm-10 col-xs-12 align-column-center\">\r\n<h2 class=\"intro__title\" style=\"font-weight: 600; font-size: 32px; color: #ffffff;\" data-font-weight=\"600\">Ultimate Luxury Meets Ultimate Nature</h2>\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-12\"></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 25px 4em 0px;\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"https://www.estatesatnuevo.com/estates-4-bedroom\"><b>4 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"https://www.estatesatnuevo.com/estates-3-bedroom\"><b>3 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"https://www.estatesatnuevo.com/estates-2-bedroom\"><b>2 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"https://www.estatesatnuevo.com/estates-1-bedroom\"><b>1 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 60px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">RESORT INFO</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>The Estates at Nuevo&nbsp; Luxury Vacation Condos are the pinnacle of luxury and service within our Vidanta resort group. Nestled between the Pacific Ocean and the Sierra Madre Mountains, Estates at Nuevo is a Mexican tropical beach paradise vacation that offers the ultimate Mexican resort vacation. As the biggest of the Vidanta destinations, it has been carefully cultivated to provide a high-end experience full of options:&nbsp; luxury vacation condos,&nbsp; restaurants and lounges&nbsp; golf courses, a shopping plaza, two indulgent spas, beautiful beaches, and countless pools.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">DINING</h3>\r\n<p class=\"\"><span>With over 40 restaurants and lounges to choose from, Estates at Nuevo gives guests the opportunity to dine however they like. Options range from high-end eateries to casual restaurants to authentic Mexican spots, and even a gourmet market filled with offerings from all over the world. One thing is for sure—an amazing culinary experience is always just a meal away.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">ACTIVITIES</h3>\r\n<p class=\"\"><span>The Estates Vacation offers a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, a number of pool &amp; poolside activities including water polo, water volleyball, aqua aerobics, Paddle Board stretching class, Salsa lessons, Spanish class, arts &amp; crafts, Guacamole making class. Kids Club, Beach, Tours, and Night time Shows.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"/activities\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding: 3em 4em 1em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">About Us</h2>\r\n<h3 class=\"\">WE CARE ABOUT YOUR VACATION</h3>\r\n<div><span class=\"\">We are owners at the Estates at Nuevo Luxury Condo Suites at the Vidanta Resorts.&nbsp; We also own at the Grand Luxxe Vacation resort.&nbsp; There are several of the Vidanta resorts in Mexico but we love the Nuevo Vallarta site because it has the most to offer.&nbsp; &nbsp;</span></div>\r\n<p class=\"\">We work with other owners so we have a larger selection of rentals available. Some have already been secured with the resort and are ready to book.&nbsp; If not, then we can check on availability for your specific time frame.</p>\r\n<p class=\"\">Always happy to answer any questions you may have about the resort and ourselves.&nbsp;&nbsp;</p>\r\n<p class=\"\">Thanks!&nbsp; Linda and Frank Helman</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 align-column-center\"><span class=\"\">From the moment you arrive, you will sense the difference with personalized attention 24/7 and the exclusivity in private beach and pool areas that are intimate and tranquil. At Vidanta’s Estates at Nuevo Vacation Mexican resort, we invite you to explore the gardens and landscaping, enjoy the ocean breeze, the unparalleled panoramic view of the Pacific Ocean in a magnificent sunset, and the natural biodiversity of the Bandera’s bay. It is the kind of extraordinary Mexican vacation experience you want, and the kind of service you deserve and expect.</span></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 0em 3em 90px;\">\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-110\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"k8m4Uj5JJAQ\" data-imhwpb-asset-id=\"1111013\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-111\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"r1tjlHBnHzY\" data-imhwpb-asset-id=\"1111014\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-112\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"l5gzNmXTzIg\" data-imhwpb-asset-id=\"1111015\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-113\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"\" data-imhwpb-asset-id=\"1111016\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-114\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"sBtqOe23bd0\" data-imhwpb-asset-id=\"1111017\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-115\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"B8He4PJkMLg\" data-imhwpb-asset-id=\"1111018\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\'); background-size: cover; background-position: 50% 58%;\" data-imhwpb-asset-id=\"1111020\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding: 75px 2em 4em;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-key\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Vacation GOLF</h3>\r\n<p class=\"H1\" data-font-weight=\"600\">Two Designer Courses, a Par 3 Lighted Course, and a State-of-the Art Instructional Academy.&nbsp; Estates at Nuevo boasts the most comprehensive golf offerings in the area. PGA tournament in 2023 here!</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-star-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Special NEEDS</h3>\r\n<p class=\"\">Do you have a special need? Wheelchairs are available for rent and special golf carts will take you around the property.&nbsp; Need a baby crib or child care? We can handle that too.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container-fluid\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding: 3em 4em 2em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">Our Location</h2>\r\n<p class=\"\">Because we put the customer first, we always have free transportation from the airport to the resort and to your living suite.&nbsp;</p>\r\n<p class=\"\">Review the room details and let us know how we can help you have the best vacation possible.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"#\">Learn More </a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 bg-box-flush\">\r\n\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','97-revision-v1','','','2022-03-27 21:29:15','2022-03-27 21:29:15','',97,'https://estatesatnuevo.com/?p=253',0,'revision','',0),(255,1,'2022-03-27 21:39:17','2022-03-27 21:39:17','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"color: #ffffff; background-image: linear-gradient(to left, rgba(26, 26, 26, 0.5), rgba(26, 26, 26, 0.5)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/pool.jpg\'); background-size: cover; background-position: 50% 75%;\" data-imhwpb-asset-id=\"1111019\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/pool.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-md-2 col-sm-2 col-xs-12\"></div>\r\n<div class=\"col-md-8 col-sm-10 col-xs-12 align-column-center\">\r\n<h2 class=\"intro__title\" style=\"font-weight: 600; font-size: 32px; color: #ffffff;\" data-font-weight=\"600\">Ultimate Luxury Meets Ultimate Nature</h2>\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-12\"></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 25px 4em 0px;\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"https://www.estatesatnuevo.com/estates-4-bedroom\"><b>4 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"https://www.estatesatnuevo.com/estates-3-bedroom\"><b>3 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"https://www.estatesatnuevo.com/estates-2-bedroom\"><b>2 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"https://www.estatesatnuevo.com/estates-1-bedroom\"><b>1 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 60px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">RESORT INFO</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>The Estates at Nuevo&nbsp; Luxury Vacation Condos are the pinnacle of luxury and service within our Vidanta resort group. Nestled between the Pacific Ocean and the Sierra Madre Mountains, Estates at Nuevo is a Mexican tropical beach paradise vacation that offers the ultimate Mexican resort vacation. As the biggest of the Vidanta destinations, it has been carefully cultivated to provide a high-end experience full of options:&nbsp; luxury vacation condos,&nbsp; restaurants and lounges&nbsp; golf courses, a shopping plaza, two indulgent spas, beautiful beaches, and countless pools.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"/info\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">DINING</h3>\r\n<p class=\"\"><span>With over 40 restaurants and lounges to choose from, Estates at Nuevo gives guests the opportunity to dine however they like. Options range from high-end eateries to casual restaurants to authentic Mexican spots, and even a gourmet market filled with offerings from all over the world. One thing is for sure—an amazing culinary experience is always just a meal away.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"/dining\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">ACTIVITIES</h3>\r\n<p class=\"\"><span>The Estates Vacation offers a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, a number of pool &amp; poolside activities including water polo, water volleyball, aqua aerobics, Paddle Board stretching class, Salsa lessons, Spanish class, arts &amp; crafts, Guacamole making class. Kids Club, Beach, Tours, and Night time Shows.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"/activities\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding: 3em 4em 1em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">About Us</h2>\r\n<h3 class=\"\">WE CARE ABOUT YOUR VACATION</h3>\r\n<div><span class=\"\">We are owners at the Estates at Nuevo Luxury Condo Suites at the Vidanta Resorts.&nbsp; We also own at the Grand Luxxe Vacation resort.&nbsp; There are several of the Vidanta resorts in Mexico but we love the Nuevo Vallarta site because it has the most to offer.&nbsp; &nbsp;</span></div>\r\n<p class=\"\">We work with other owners so we have a larger selection of rentals available. Some have already been secured with the resort and are ready to book.&nbsp; If not, then we can check on availability for your specific time frame.</p>\r\n<p class=\"\">Always happy to answer any questions you may have about the resort and ourselves.&nbsp;&nbsp;</p>\r\n<p class=\"\">Thanks!&nbsp; Linda and Frank Helman</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 align-column-center\"><span class=\"\">From the moment you arrive, you will sense the difference with personalized attention 24/7 and the exclusivity in private beach and pool areas that are intimate and tranquil. At Vidanta’s Estates at Nuevo Vacation Mexican resort, we invite you to explore the gardens and landscaping, enjoy the ocean breeze, the unparalleled panoramic view of the Pacific Ocean in a magnificent sunset, and the natural biodiversity of the Bandera’s bay. It is the kind of extraordinary Mexican vacation experience you want, and the kind of service you deserve and expect.</span></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 0em 3em 90px;\">\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-110\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"k8m4Uj5JJAQ\" data-imhwpb-asset-id=\"1111013\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-111\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"r1tjlHBnHzY\" data-imhwpb-asset-id=\"1111014\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-112\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"l5gzNmXTzIg\" data-imhwpb-asset-id=\"1111015\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-113\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"\" data-imhwpb-asset-id=\"1111016\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-114\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"sBtqOe23bd0\" data-imhwpb-asset-id=\"1111017\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-115\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"B8He4PJkMLg\" data-imhwpb-asset-id=\"1111018\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\'); background-size: cover; background-position: 50% 58%;\" data-imhwpb-asset-id=\"1111020\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding: 75px 2em 4em;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-key\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Vacation GOLF</h3>\r\n<p class=\"H1\" data-font-weight=\"600\">Two Designer Courses, a Par 3 Lighted Course, and a State-of-the Art Instructional Academy.&nbsp; Estates at Nuevo boasts the most comprehensive golf offerings in the area. PGA tournament in 2023 here!</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-star-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Special NEEDS</h3>\r\n<p class=\"\">Do you have a special need? Wheelchairs are available for rent and special golf carts will take you around the property.&nbsp; Need a baby crib or child care? We can handle that too.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container-fluid\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding: 3em 4em 2em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">Our Location</h2>\r\n<p class=\"\">Because we put the customer first, we always have free transportation from the airport to the resort and to your living suite.&nbsp;</p>\r\n<p class=\"\">Review the room details and let us know how we can help you have the best vacation possible.</p>\r\n\r\n<h3 class=\"\" style=\"color: #000000; font-weight: 600; font-size: 25px;\" data-font-weight=\"600\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address&nbsp;</h3>\r\n<p class=\"\" style=\"font-weight: 600; color: #000000;\" data-font-weight=\"600\">Blvrd Riviera Nayarit #254, 63735 Nuevo Vallarta, Nay., Mexico</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 bg-box-flush\">\r\n<p class=\"\"><img class=\"bg-img alignnone wp-image-1806 size-medium\" style=\"background-color: var(--color-neutral); color: var(--color-neutral-text-contrast);\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico.jpg-2-300x210.jpg\" alt=\"Resort area showing proximity to airport and Puerto Vallarta\" width=\"300\" height=\"210\"><img class=\"bg-img alignnone wp-image-1810 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico-1.jpg-2-1-300x239.jpg\" alt=\"Close up of resort area\" width=\"300\" height=\"239\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','97-revision-v1','','','2022-03-27 21:39:17','2022-03-27 21:39:17','',97,'https://estatesatnuevo.com/?p=255',0,'revision','',0),(256,1,'2022-03-27 21:41:21','2022-03-27 21:41:21','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"color: #ffffff; background-image: linear-gradient(to left, rgba(26, 26, 26, 0.5), rgba(26, 26, 26, 0.5)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/pool.jpg\'); background-size: cover; background-position: 50% 75%;\" data-imhwpb-asset-id=\"1111019\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/pool.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-md-2 col-sm-2 col-xs-12\"></div>\r\n<div class=\"col-md-8 col-sm-10 col-xs-12 align-column-center\">\r\n<h2 class=\"intro__title\" style=\"font-weight: 600; font-size: 32px; color: #ffffff;\" data-font-weight=\"600\">Ultimate Luxury Meets Ultimate Nature</h2>\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-12\"></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 25px 4em 0px;\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"https://www.estatesatnuevo.com/estates-4-bedroom\"><b>4 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"https://www.estatesatnuevo.com/estates-3-bedroom\"><b>3 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"https://www.estatesatnuevo.com/estates-2-bedroom\"><b>2 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"https://www.estatesatnuevo.com/estates-1-bedroom\"><b>1 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 60px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">RESORT INFO</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>The Estates at Nuevo&nbsp; Luxury Vacation Condos are the pinnacle of luxury and service within our Vidanta resort group. Nestled between the Pacific Ocean and the Sierra Madre Mountains, Estates at Nuevo is a Mexican tropical beach paradise vacation that offers the ultimate Mexican resort vacation. As the biggest of the Vidanta destinations, it has been carefully cultivated to provide a high-end experience full of options:&nbsp; luxury vacation condos,&nbsp; restaurants and lounges&nbsp; golf courses, a shopping plaza, two indulgent spas, beautiful beaches, and countless pools.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"/info\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">DINING</h3>\r\n<p class=\"\"><span>With over 40 restaurants and lounges to choose from, Estates at Nuevo gives guests the opportunity to dine however they like. Options range from high-end eateries to casual restaurants to authentic Mexican spots, and even a gourmet market filled with offerings from all over the world. One thing is for sure—an amazing culinary experience is always just a meal away.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"/dining\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">ACTIVITIES</h3>\r\n<p class=\"\"><span>The Estates Vacation offers a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, a number of pool &amp; poolside activities including water polo, water volleyball, aqua aerobics, Paddle Board stretching class, Salsa lessons, Spanish class, arts &amp; crafts, Guacamole making class. Kids Club, Beach, Tours, and Night time Shows.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"/activities\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding: 3em 4em 1em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">About Us</h2>\r\n<h3 class=\"\">WE CARE ABOUT YOUR VACATION</h3>\r\n<div><span class=\"\">We are owners at the Estates at Nuevo Luxury Condo Suites at the Vidanta Resorts.&nbsp; We also own at the Grand Luxxe Vacation resort.&nbsp; There are several of the Vidanta resorts in Mexico but we love the Nuevo Vallarta site because it has the most to offer.&nbsp; &nbsp;</span></div>\r\n<p class=\"\">We work with other owners so we have a larger selection of rentals available. Some have already been secured with the resort and are ready to book.&nbsp; If not, then we can check on availability for your specific time frame.</p>\r\n<p class=\"\">Always happy to answer any questions you may have about the resort and ourselves.&nbsp;&nbsp;</p>\r\n<p class=\"\">Thanks!&nbsp; Linda and Frank Helman</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 align-column-center\"><span class=\"\">From the moment you arrive, you will sense the difference with personalized attention 24/7 and the exclusivity in private beach and pool areas that are intimate and tranquil. At Vidanta’s Estates at Nuevo Vacation Mexican resort, we invite you to explore the gardens and landscaping, enjoy the ocean breeze, the unparalleled panoramic view of the Pacific Ocean in a magnificent sunset, and the natural biodiversity of the Bandera’s bay. It is the kind of extraordinary Mexican vacation experience you want, and the kind of service you deserve and expect.</span></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 0em 3em 90px;\">\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-110\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"k8m4Uj5JJAQ\" data-imhwpb-asset-id=\"1111013\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-111\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"r1tjlHBnHzY\" data-imhwpb-asset-id=\"1111014\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-112\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"l5gzNmXTzIg\" data-imhwpb-asset-id=\"1111015\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-113\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"\" data-imhwpb-asset-id=\"1111016\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-114\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"sBtqOe23bd0\" data-imhwpb-asset-id=\"1111017\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-115\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"B8He4PJkMLg\" data-imhwpb-asset-id=\"1111018\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\'); background-size: cover; background-position: 50% 58%;\" data-imhwpb-asset-id=\"1111020\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding: 75px 2em 4em;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-key\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Vacation GOLF</h3>\r\n<p class=\"H1\" data-font-weight=\"600\">Two Designer Courses, a Par 3 Lighted Course, and a State-of-the Art Instructional Academy.&nbsp; Estates at Nuevo boasts the most comprehensive golf offerings in the area. PGA tournament in 2023 here!</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-star-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Special NEEDS</h3>\r\n<p class=\"\">Do you have a special need? Wheelchairs are available for rent and special golf carts will take you around the property.&nbsp; Need a baby crib or child care? We can handle that too.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container-fluid\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding: 3em 4em 2em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">Our Location</h2>\r\n<p class=\"\">Because we put the customer first, we always have free transportation from the airport to the resort and to your living suite.&nbsp;</p>\r\n<p class=\"\">Review the room details and let us know how we can help you have the best vacation possible.</p>\r\n\r\n<h3 class=\"\" style=\"color: #000000; font-weight: 400; font-size: 25px;\" data-font-weight=\"400\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address&nbsp;</h3>\r\n<p class=\"\" style=\"font-weight: 400; color: #000000;\" data-font-weight=\"400\">Blvd Riviera Nayarit #254, 63735 Nuevo Vallarta, Nay., Mexico</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 bg-box-flush\">\r\n<p class=\"\"><img class=\"bg-img alignnone wp-image-1806 size-medium\" style=\"background-color: var(--color-neutral); color: var(--color-neutral-text-contrast);\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico.jpg-2-300x210.jpg\" alt=\"Resort area showing proximity to airport and Puerto Vallarta\" width=\"300\" height=\"210\"><img class=\"bg-img alignnone wp-image-1810 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico-1.jpg-2-1-300x239.jpg\" alt=\"Close up of resort area\" width=\"300\" height=\"239\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','97-revision-v1','','','2022-03-27 21:41:21','2022-03-27 21:41:21','',97,'https://estatesatnuevo.com/?p=256',0,'revision','',0),(257,1,'2022-03-27 21:47:54','2022-03-27 21:47:54','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"color: #ffffff; background-image: linear-gradient(to left, rgba(26, 26, 26, 0.5), rgba(26, 26, 26, 0.5)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/pool.jpg\'); background-size: cover; background-position: 50% 75%;\" data-imhwpb-asset-id=\"1111019\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/pool.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-md-2 col-sm-2 col-xs-12\"></div>\r\n<div class=\"col-md-8 col-sm-10 col-xs-12 align-column-center\">\r\n<h2 class=\"intro__title\" style=\"font-weight: 600; font-size: 32px; color: #ffffff;\" data-font-weight=\"600\">Ultimate Luxury Meets Ultimate Nature</h2>\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-12\"></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 25px 4em 0px;\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-10 text-center\">\r\n<div style=\"margin-top: 10px; background-color: rgba(0, 0, 0, 0.5); border: 1px solid #ffffff; padding: 1.0em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 10px;\"><a href=\"https://www.estatesatnuevo.com/estates-4-bedroom\"><b>4 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-10 text-center\">\r\n<div style=\"margin-top: 10px; background-color: rgba(0, 0, 0, 0.5); border: 1px solid #ffffff; padding: 1.0em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 10px;\"><a href=\"https://www.estatesatnuevo.com/estates-3-bedroom\"><b>3 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-10 text-center\">\r\n<div style=\"margin-top: 10px; background-color: rgba(0, 0, 0, 0.5); border: 1px solid #ffffff; padding: 1.0em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 10px;\"><a href=\"https://www.estatesatnuevo.com/estates-2-bedroom\"><b>2 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-10 text-center\">\r\n<div style=\"margin-top: 10px; background-color: rgba(0, 0, 0, 0.5); border: 1px solid #ffffff; padding: 1.0em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 10px;\"><a href=\"https://www.estatesatnuevo.com/estates-1-bedroom\"><b>1 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 60px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">RESORT INFO</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>The Estates at Nuevo&nbsp; Luxury Vacation Condos are the pinnacle of luxury and service within our Vidanta resort group. Nestled between the Pacific Ocean and the Sierra Madre Mountains, Estates at Nuevo is a Mexican tropical beach paradise vacation that offers the ultimate Mexican resort vacation. As the biggest of the Vidanta destinations, it has been carefully cultivated to provide a high-end experience full of options:&nbsp; luxury vacation condos,&nbsp; restaurants and lounges&nbsp; golf courses, a shopping plaza, two indulgent spas, beautiful beaches, and countless pools.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"/info\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">DINING</h3>\r\n<p class=\"\"><span>With over 40 restaurants and lounges to choose from, Estates at Nuevo gives guests the opportunity to dine however they like. Options range from high-end eateries to casual restaurants to authentic Mexican spots, and even a gourmet market filled with offerings from all over the world. One thing is for sure—an amazing culinary experience is always just a meal away.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"/dining\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">ACTIVITIES</h3>\r\n<p class=\"\"><span>The Estates Vacation offers a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, a number of pool &amp; poolside activities including water polo, water volleyball, aqua aerobics, Paddle Board stretching class, Salsa lessons, Spanish class, arts &amp; crafts, Guacamole making class. Kids Club, Beach, Tours, and Night time Shows.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"/activities\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding: 3em 4em 1em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">About Us</h2>\r\n<h3 class=\"\">WE CARE ABOUT YOUR VACATION</h3>\r\n<div><span class=\"\">We are owners at the Estates at Nuevo Luxury Condo Suites at the Vidanta Resorts.&nbsp; We also own at the Grand Luxxe Vacation resort.&nbsp; There are several of the Vidanta resorts in Mexico but we love the Nuevo Vallarta site because it has the most to offer.&nbsp; &nbsp;</span></div>\r\n<p class=\"\">We work with other owners so we have a larger selection of rentals available. Some have already been secured with the resort and are ready to book.&nbsp; If not, then we can check on availability for your specific time frame.</p>\r\n<p class=\"\">Always happy to answer any questions you may have about the resort and ourselves.&nbsp;&nbsp;</p>\r\n<p class=\"\">Thanks!&nbsp; Linda and Frank Helman</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 align-column-center\"><span class=\"\">From the moment you arrive, you will sense the difference with personalized attention 24/7 and the exclusivity in private beach and pool areas that are intimate and tranquil. At Vidanta’s Estates at Nuevo Vacation Mexican resort, we invite you to explore the gardens and landscaping, enjoy the ocean breeze, the unparalleled panoramic view of the Pacific Ocean in a magnificent sunset, and the natural biodiversity of the Bandera’s bay. It is the kind of extraordinary Mexican vacation experience you want, and the kind of service you deserve and expect.</span></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 0em 3em 90px;\">\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-110\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"k8m4Uj5JJAQ\" data-imhwpb-asset-id=\"1111013\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-111\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"r1tjlHBnHzY\" data-imhwpb-asset-id=\"1111014\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-112\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"l5gzNmXTzIg\" data-imhwpb-asset-id=\"1111015\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-113\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"\" data-imhwpb-asset-id=\"1111016\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-114\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"sBtqOe23bd0\" data-imhwpb-asset-id=\"1111017\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-115\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"B8He4PJkMLg\" data-imhwpb-asset-id=\"1111018\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\'); background-size: cover; background-position: 50% 58%;\" data-imhwpb-asset-id=\"1111020\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding: 75px 2em 4em;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-key\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Vacation GOLF</h3>\r\n<p class=\"H1\" data-font-weight=\"600\">Two Designer Courses, a Par 3 Lighted Course, and a State-of-the Art Instructional Academy.&nbsp; Estates at Nuevo boasts the most comprehensive golf offerings in the area. PGA tournament in 2023 here!</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-star-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Special NEEDS</h3>\r\n<p class=\"\">Do you have a special need? Wheelchairs are available for rent and special golf carts will take you around the property.&nbsp; Need a baby crib or child care? We can handle that too.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container-fluid\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding: 3em 4em 2em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">Our Location</h2>\r\n<p class=\"\">Because we put the customer first, we always have free transportation from the airport to the resort and to your living suite.&nbsp;</p>\r\n<p class=\"\">Review the room details and let us know how we can help you have the best vacation possible.</p>\r\n\r\n<h3 class=\"\" style=\"color: #000000; font-weight: 400; font-size: 25px;\" data-font-weight=\"400\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address&nbsp;</h3>\r\n<p class=\"\" style=\"font-weight: 400; color: #000000;\" data-font-weight=\"400\">Blvd Riviera Nayarit #254, 63735 Nuevo Vallarta, Nay., Mexico</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 bg-box-flush\">\r\n<p class=\"\"><img class=\"bg-img alignnone wp-image-1806 size-medium\" style=\"background-color: var(--color-neutral); color: var(--color-neutral-text-contrast);\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico.jpg-2-300x210.jpg\" alt=\"Resort area showing proximity to airport and Puerto Vallarta\" width=\"300\" height=\"210\"><img class=\"bg-img alignnone wp-image-1810 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico-1.jpg-2-1-300x239.jpg\" alt=\"Close up of resort area\" width=\"300\" height=\"239\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','97-revision-v1','','','2022-03-27 21:47:54','2022-03-27 21:47:54','',97,'https://estatesatnuevo.com/?p=257',0,'revision','',0),(274,1,'2022-04-08 19:25:34','2022-04-08 19:25:34','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"color: #ffffff; background-image: linear-gradient(to left, rgba(26, 26, 26, 0.5), rgba(26, 26, 26, 0.5)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/pool.jpg\'); background-size: cover; background-position: 50% 75%;\" data-imhwpb-asset-id=\"1111019\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/pool.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-md-2 col-sm-2 col-xs-12 col-lg-2\"></div>\r\n<div class=\"col-md-8 col-sm-10 col-xs-12 align-column-center col-lg-8\">\r\n<h2 class=\"intro__title\" style=\"font-weight: 600; font-size: 32px; color: #ffffff;\" align=\"center\" data-font-weight=\"600\">Ultimate Luxury Meets Ultimate Nature</h2>\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-12 col-lg-2\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">RESORT INFO</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>The Estates at Nuevo&nbsp; Luxury Vacation Condos are the pinnacle of luxury and service within our Vidanta resort group. Nestled between the Pacific Ocean and the Sierra Madre Mountains, Estates at Nuevo is a Mexican tropical beach paradise vacation that offers the ultimate Mexican resort vacation. As the biggest of the Vidanta destinations, it has been carefully cultivated to provide a high-end experience full of options:&nbsp; luxury vacation condos,&nbsp; restaurants and lounges&nbsp; golf courses, a shopping plaza, two indulgent spas, beautiful beaches, and countless pools.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/info\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">SUITES</h3>\r\n<p class=\"\"><span>Discover the best that luxury vacationing has to offer at The Estates, a haven of high-end comfort sequestered in the sublime jungle landscape at Vidanta Nuevo Vallarta.</span></p>\r\n<p class=\"\"><span>From the breathtaking One Bedroom to the jaw-dropping Four Bedroom, The Estates at Vidanta Nuevo Vallarta showcases exquisite spaces that are redefining modern luxury.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/dining\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">ACTIVITIES</h3>\r\n<p class=\"\"><span>The Estates Vacation offers a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, a number of pool &amp; poolside activities including water polo, water volleyball, aqua aerobics, Paddle Board stretching class, Salsa lessons, Spanish class, arts &amp; crafts, Guacamole making class. Kids Club, Beach, Tours, and Night time Shows.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/activities\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">property photos</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>The Estates at Nuevo&nbsp; Luxury Vacation Condos are the pinnacle of luxury and service within our Vidanta resort group. Nestled between the Pacific Ocean and the Sierra Madre Mountains, Estates at Nuevo is a Mexican tropical beach paradise vacation that offers the ultimate Mexican resort vacation. As the biggest of the Vidanta destinations, it has been carefully cultivated to provide a high-end experience full of options:&nbsp; luxury vacation condos,&nbsp; restaurants and lounges&nbsp; golf courses, a shopping plaza, two indulgent spas, beautiful beaches, and countless pools.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/info\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">DINING</h3>\r\n<p class=\"\"><span>With over 40 restaurants and lounges to choose from, Estates at Nuevo gives guests the opportunity to dine however they like. Options range from high-end eateries to casual restaurants to authentic Mexican spots, and even a gourmet market filled with offerings from all over the world. One thing is for sure—an amazing culinary experience is always just a meal away.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/dining\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">spa</h3>\r\n<header class=\"intro__header\"></header>\r\n<div class=\"intro__lead\">\r\n<p class=\"intro__text\">Vacation is about restful and renewing relaxation. It’s about indulging in peace and taking a moment to enjoy the clarity of being removed from your busy home life.&nbsp; At the Estates at Nuevo,&nbsp; we help you embrace that serenity and harness the revitalizing powers of paradise with two beautiful, well-appointed spas.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 1em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">About Us</h2>\r\n<h3 class=\"\">WE CARE ABOUT YOUR VACATION</h3>\r\n<div><span class=\"\">We are owners at the Estates at Nuevo Luxury Condo Suites at the Vidanta Resorts.&nbsp; We also own at the Grand Luxxe Vacation resort.&nbsp; There are several of the Vidanta resorts in Mexico but we love the Nuevo Vallarta site because it has the most to offer.&nbsp; &nbsp;</span></div>\r\n<p class=\"\">We work with other owners so we have a larger selection of rentals available. Some have already been secured with the resort and are ready to book.&nbsp; If not, then we can check on availability for your specific time frame.</p>\r\n<p class=\"\">Always happy to answer any questions you may have about the resort and ourselves.&nbsp;&nbsp;</p>\r\n<p class=\"\">Thanks!&nbsp; Linda and Frank Helman</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 align-column-center col-lg-6\"><span class=\"\">From the moment you arrive, you will sense the difference with personalized attention 24/7 and the exclusivity in private beach and pool areas that are intimate and tranquil. At Vidanta’s Estates at Nuevo Vacation Mexican resort, we invite you to explore the gardens and landscaping, enjoy the ocean breeze, the unparalleled panoramic view of the Pacific Ocean in a magnificent sunset, and the natural biodiversity of the Bandera’s bay. It is the kind of extraordinary Mexican vacation experience you want, and the kind of service you deserve and expect.</span></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 0em 3em 90px;\">\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-110\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"k8m4Uj5JJAQ\" data-imhwpb-asset-id=\"1111013\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-111\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"r1tjlHBnHzY\" data-imhwpb-asset-id=\"1111014\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-112\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"l5gzNmXTzIg\" data-imhwpb-asset-id=\"1111015\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-113\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"\" data-imhwpb-asset-id=\"1111016\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-114\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"sBtqOe23bd0\" data-imhwpb-asset-id=\"1111017\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-115\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"B8He4PJkMLg\" data-imhwpb-asset-id=\"1111018\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\'); background-size: cover; background-position: 50% 58%;\" data-imhwpb-asset-id=\"1111020\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding: 75px 2em 4em;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-key\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Vacation GOLF</h3>\r\n<p class=\"H1\" data-font-weight=\"600\">Two Designer Courses, a Par 3 Lighted Course, and a State-of-the Art Instructional Academy.&nbsp; Estates at Nuevo boasts the most comprehensive golf offerings in the area. PGA tournament in 2023 here!</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-star-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Special NEEDS</h3>\r\n<p class=\"\">Do you have a special need? Wheelchairs are available for rent and special golf carts will take you around the property.&nbsp; Need a baby crib or child care? We can handle that too.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container-fluid\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 2em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">Our Location</h2>\r\n<p class=\"\">Because we put the customer first, we always have free transportation from the airport to the resort and to your living suite.&nbsp;</p>\r\n<p class=\"\">Review the room details and let us know how we can help you have the best vacation possible.</p>\r\n\r\n<h3 class=\"\" style=\"color: #000000; font-weight: 400; font-size: 25px;\" data-font-weight=\"400\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address&nbsp;</h3>\r\n<p class=\"\" style=\"font-weight: 400; color: #000000;\" data-font-weight=\"400\">Blvd Riviera Nayarit #254, 63735 Nuevo Vallarta, Nay., Mexico</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 bg-box-flush col-lg-6\">\r\n<p class=\"\"><img class=\"bg-img alignnone wp-image-1806 size-medium\" style=\"background-color: var(--color-neutral); color: var(--color-neutral-text-contrast);\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico.jpg-2-300x210.jpg\" alt=\"Resort area showing proximity to airport and Puerto Vallarta\" width=\"300\" height=\"210\"><img class=\"bg-img alignnone wp-image-1810 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico-1.jpg-2-1-300x239.jpg\" alt=\"Close up of resort area\" width=\"300\" height=\"239\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','97-revision-v1','','','2022-04-08 19:25:34','2022-04-08 19:25:34','',97,'https://estatesatnuevo.com/?p=274',0,'revision','',0),(258,1,'2022-03-27 21:49:16','2022-03-27 21:49:16','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"color: #ffffff; background-image: linear-gradient(to left, rgba(26, 26, 26, 0.5), rgba(26, 26, 26, 0.5)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/pool.jpg\'); background-size: cover; background-position: 50% 75%;\" data-imhwpb-asset-id=\"1111019\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/pool.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-md-2 col-sm-2 col-xs-12\"></div>\r\n<div class=\"col-md-8 col-sm-10 col-xs-12 align-column-center\">\r\n<h2 class=\"intro__title\" style=\"font-weight: 600; font-size: 32px; color: #ffffff;\" data-font-weight=\"600\">Ultimate Luxury Meets Ultimate Nature</h2>\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-12\"></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 25px 4em 0px;\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-10 text-center\">\r\n<div style=\"margin-top: 10px; background-color: rgba(0, 0, 0, 0.5); border: 1px solid #ffffff; padding: 1.0em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 10px;\"><a href=\"https://www.estatesatnuevo.com/estates-4-bedroom\"><b>4 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-10 text-center\">\r\n<div style=\"margin-top: 10px; background-color: rgba(0, 0, 0, 0.5); border: 1px solid #ffffff; padding: 1.0em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 10px;\"><a href=\"https://www.estatesatnuevo.com/estates-3-bedroom\"><b>3 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-10 text-center\">\r\n<div style=\"margin-top: 10px; background-color: rgba(0, 0, 0, 0.5); border: 1px solid #ffffff; padding: 1.0em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 10px;\"><a href=\"https://www.estatesatnuevo.com/estates-2-bedroom\"><b>2 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-10 text-center\">\r\n<div style=\"margin-top: 10px; background-color: rgba(0, 0, 0, 0.5); border: 1px solid #ffffff; padding: 1.0em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\" style=\"margin-top: 10px;\"><a href=\"https://www.estatesatnuevo.com/estates-1-bedroom\"><b>1 Bedroom</b></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 60px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">RESORT INFO</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>The Estates at Nuevo&nbsp; Luxury Vacation Condos are the pinnacle of luxury and service within our Vidanta resort group. Nestled between the Pacific Ocean and the Sierra Madre Mountains, Estates at Nuevo is a Mexican tropical beach paradise vacation that offers the ultimate Mexican resort vacation. As the biggest of the Vidanta destinations, it has been carefully cultivated to provide a high-end experience full of options:&nbsp; luxury vacation condos,&nbsp; restaurants and lounges&nbsp; golf courses, a shopping plaza, two indulgent spas, beautiful beaches, and countless pools.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"/info\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">DINING</h3>\r\n<p class=\"\"><span>With over 40 restaurants and lounges to choose from, Estates at Nuevo gives guests the opportunity to dine however they like. Options range from high-end eateries to casual restaurants to authentic Mexican spots, and even a gourmet market filled with offerings from all over the world. One thing is for sure—an amazing culinary experience is always just a meal away.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"/dining\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">ACTIVITIES</h3>\r\n<p class=\"\"><span>The Estates Vacation offers a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, a number of pool &amp; poolside activities including water polo, water volleyball, aqua aerobics, Paddle Board stretching class, Salsa lessons, Spanish class, arts &amp; crafts, Guacamole making class. Kids Club, Beach, Tours, and Night time Shows.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1 btn btn-color-1 btn btn-border-color-1\" href=\"/activities\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding: 3em 4em 1em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">About Us</h2>\r\n<h3 class=\"\">WE CARE ABOUT YOUR VACATION</h3>\r\n<div><span class=\"\">We are owners at the Estates at Nuevo Luxury Condo Suites at the Vidanta Resorts.&nbsp; We also own at the Grand Luxxe Vacation resort.&nbsp; There are several of the Vidanta resorts in Mexico but we love the Nuevo Vallarta site because it has the most to offer.&nbsp; &nbsp;</span></div>\r\n<p class=\"\">We work with other owners so we have a larger selection of rentals available. Some have already been secured with the resort and are ready to book.&nbsp; If not, then we can check on availability for your specific time frame.</p>\r\n<p class=\"\">Always happy to answer any questions you may have about the resort and ourselves.&nbsp;&nbsp;</p>\r\n<p class=\"\">Thanks!&nbsp; Linda and Frank Helman</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 align-column-center\"><span class=\"\">From the moment you arrive, you will sense the difference with personalized attention 24/7 and the exclusivity in private beach and pool areas that are intimate and tranquil. At Vidanta’s Estates at Nuevo Vacation Mexican resort, we invite you to explore the gardens and landscaping, enjoy the ocean breeze, the unparalleled panoramic view of the Pacific Ocean in a magnificent sunset, and the natural biodiversity of the Bandera’s bay. It is the kind of extraordinary Mexican vacation experience you want, and the kind of service you deserve and expect.</span></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 0em 3em 90px;\">\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-110\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"k8m4Uj5JJAQ\" data-imhwpb-asset-id=\"1111013\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-111\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"r1tjlHBnHzY\" data-imhwpb-asset-id=\"1111014\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-112\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"l5gzNmXTzIg\" data-imhwpb-asset-id=\"1111015\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-113\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"\" data-imhwpb-asset-id=\"1111016\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-114\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"sBtqOe23bd0\" data-imhwpb-asset-id=\"1111017\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-115\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"B8He4PJkMLg\" data-imhwpb-asset-id=\"1111018\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\'); background-size: cover; background-position: 50% 58%;\" data-imhwpb-asset-id=\"1111020\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding: 75px 2em 4em;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-key\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Vacation GOLF</h3>\r\n<p class=\"H1\" data-font-weight=\"600\">Two Designer Courses, a Par 3 Lighted Course, and a State-of-the Art Instructional Academy.&nbsp; Estates at Nuevo boasts the most comprehensive golf offerings in the area. PGA tournament in 2023 here!</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-star-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Special NEEDS</h3>\r\n<p class=\"\">Do you have a special need? Wheelchairs are available for rent and special golf carts will take you around the property.&nbsp; Need a baby crib or child care? We can handle that too.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container-fluid\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding: 3em 4em 2em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">Our Location</h2>\r\n<p class=\"\">Because we put the customer first, we always have free transportation from the airport to the resort and to your living suite.&nbsp;</p>\r\n<p class=\"\">Review the room details and let us know how we can help you have the best vacation possible.</p>\r\n\r\n<h3 class=\"\" style=\"color: #000000; font-weight: 400; font-size: 25px;\" data-font-weight=\"400\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address&nbsp;</h3>\r\n<p class=\"\" style=\"font-weight: 400; color: #000000;\" data-font-weight=\"400\">Blvd Riviera Nayarit #254, 63735 Nuevo Vallarta, Nay., Mexico</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 bg-box-flush\">\r\n<p class=\"\"><img class=\"bg-img alignnone wp-image-1806 size-medium\" style=\"background-color: var(--color-neutral); color: var(--color-neutral-text-contrast);\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico.jpg-2-300x210.jpg\" alt=\"Resort area showing proximity to airport and Puerto Vallarta\" width=\"300\" height=\"210\"><img class=\"bg-img alignnone wp-image-1810 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico-1.jpg-2-1-300x239.jpg\" alt=\"Close up of resort area\" width=\"300\" height=\"239\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','97-revision-v1','','','2022-03-27 21:49:16','2022-03-27 21:49:16','',97,'https://estatesatnuevo.com/?p=258',0,'revision','',0),(262,1,'2022-03-29 16:55:02','2022-03-29 16:55:02','<!-- wp:heading -->\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2>Who we are</h2>\r\n<p class=\"\"><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: https://estatesatnuevo.com.</p>\r\n<h2>Comments</h2>\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.</p>\r\n<p class=\"\">An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p>\r\n<h2 class=\"\">Cookies</h2>\r\n<p class=\"\"><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p>\r\n<p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p>\r\n<p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select \"Remember Me\", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p>\r\n<h2>Embedded content from other websites</h2>\r\n<p class=\"\"><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p>\r\n<p class=\"\">These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p>\r\n<h2 class=\"\">Who we share your data with</h2>\r\n<p class=\"\"><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p>\r\n<h2 class=\"\">How long we retain your data</h2>\r\n<p class=\"\"><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p>\r\n<p class=\"\">For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p>\r\n<h2>What rights you have over your data</h2>\r\n<p class=\"\"><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading --><!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading --><!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading --><!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading --><!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading --><!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading --><!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading --><!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading --><!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->','Privacy Policy','','inherit','closed','closed','','3-revision-v1','','','2022-03-29 16:55:02','2022-03-29 16:55:02','',3,'https://estatesatnuevo.com/?p=262',0,'revision','',0),(259,1,'2022-03-27 21:51:18','2022-03-27 21:51:18','<!-- wp:heading -->\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<h2>Who we are</h2>\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: https://estatesatnuevo.com.</p>\r\n<h2>Comments</h2>\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.</p>\r\n<p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p>\r\n<h2>Media</h2>\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p>\r\n<h2>Cookies</h2>\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p>\r\n<p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p>\r\n<p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select \"Remember Me\", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p>\r\n<p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p>\r\n<h2>Embedded content from other websites</h2>\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p>\r\n<p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p>\r\n<h2>Who we share your data with</h2>\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p>\r\n<h2>How long we retain your data</h2>\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p>\r\n<p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p>\r\n<h2>What rights you have over your data</h2>\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p>\r\n<h2>Where we send your data</h2>\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading --><!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading --><!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading --><!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading --><!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading --><!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading --><!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading --><!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading --><!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->','Privacy Policy','','inherit','closed','closed','','3-revision-v1','','','2022-03-27 21:51:18','2022-03-27 21:51:18','',3,'https://estatesatnuevo.com/?p=259',0,'revision','',0),(261,1,'2022-03-29 16:53:58','2022-03-29 16:53:58','<!-- wp:heading -->\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\n<h2>Who we are</h2>\n<p class=\"\"><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: https://estatesatnuevo.com.</p>\n<h2>Comments</h2>\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.</p>\n<p class=\"\">An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p>\n<h2 class=\"\">Cookies</h2>\n<p class=\"\"><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p>\n<p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p>\n<p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select \"Remember Me\", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p>\n<h2>Embedded content from other websites</h2>\n<p class=\"\"><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p>\n<p class=\"\">These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p>\n<h2>Who we share your data with</h2>\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p>\n<h2>How long we retain your data</h2>\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p>\n<p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p>\n<h2>What rights you have over your data</h2>\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p>\n<h2>Where we send your data</h2>\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p>\n</div>\n</div>\n</div>\n</div>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph --><!-- /wp:paragraph -->\n\n<!-- wp:heading --><!-- /wp:heading -->\n\n<!-- wp:paragraph --><!-- /wp:paragraph -->\n\n<!-- wp:paragraph --><!-- /wp:paragraph -->\n\n<!-- wp:heading --><!-- /wp:heading -->\n\n<!-- wp:paragraph --><!-- /wp:paragraph -->\n\n<!-- wp:heading --><!-- /wp:heading -->\n\n<!-- wp:paragraph --><!-- /wp:paragraph -->\n\n<!-- wp:paragraph --><!-- /wp:paragraph -->\n\n<!-- wp:paragraph --><!-- /wp:paragraph -->\n\n<!-- wp:paragraph --><!-- /wp:paragraph -->\n\n<!-- wp:heading --><!-- /wp:heading -->\n\n<!-- wp:paragraph --><!-- /wp:paragraph -->\n\n<!-- wp:paragraph --><!-- /wp:paragraph -->\n\n<!-- wp:heading --><!-- /wp:heading -->\n\n<!-- wp:paragraph --><!-- /wp:paragraph -->\n\n<!-- wp:heading --><!-- /wp:heading -->\n\n<!-- wp:paragraph --><!-- /wp:paragraph -->\n\n<!-- wp:paragraph --><!-- /wp:paragraph -->\n\n<!-- wp:heading --><!-- /wp:heading -->\n\n<!-- wp:paragraph --><!-- /wp:paragraph -->\n\n<!-- wp:heading --><!-- /wp:heading -->\n\n<!-- wp:paragraph --><!-- /wp:paragraph -->','Privacy Policy','','inherit','closed','closed','','3-autosave-v1','','','2022-03-29 16:53:58','2022-03-29 16:53:58','',3,'https://estatesatnuevo.com/?p=261',0,'revision','',0),(263,1,'2022-03-29 17:15:19','2022-03-29 17:15:19','<div class=\"tmpl-team-2 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 30px; text-align: center;\" data-font-weight=\"600\">ACTIVITIES</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"padding: 20px 10%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\r\n<p class=\"mod-reset\"><img class=\"shape circle bg-img alignnone wp-image-1886\" style=\"margin-top: -85px; margin-bottom: 20px; border: 2px solid #cecece;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/joysquad-300x233.jpg\" alt=\"Joy Squad\" width=\"270\" height=\"210\"></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000; font-weight: 600;\" data-font-weight=\"600\">JOY SQUAD</p>\r\n<p class=\"boxcard__text\" style=\"color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">It’s your vacation, so why not spend it doing the types of things you love to do? At Estates at Nuevo you’ll find a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, all run by our amazing activities team, the Joy Squad.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"padding: 20px 10%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\r\n<p class=\"mod-reset\"><img class=\"shape circle bg-img alignnone wp-image-1038 size-medium\" style=\"margin-top: -85px; margin-bottom: 20px; border: 2px solid #cecece;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Grand-Luxxe-Infinitiy-Pool-300x225.jpg\" alt=\"Infinity pool\" width=\"300\" height=\"225\"></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000; font-weight: 600;\" data-font-weight=\"600\">pools &amp; poolside</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">There are private pools for Estates only as well as a number of other pool &amp; poolside activities such as water polo, water volleyball, aqua aerobics, Paddle Board stretching class, Salsa lessons, Spanish class, arts &amp; crafts, Guacamole making class.&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-12 col-xs-12 text-center\">\r\n<div style=\"padding: 20px 10%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\r\n<p class=\"mod-reset\"><img class=\"shape circle bg-img alignnone wp-image-1390 size-medium\" style=\"margin-top: -85px; margin-bottom: 20px; border: 2px solid #cecece;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/CLUB-300x191.jpg\" alt=\"Kids\' Club pools\" width=\"300\" height=\"191\"></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000; font-weight: 600;\" data-font-weight=\"600\">kids club</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Kid’s Club is for the little ones! It offers an assortment of amazing activities, including water activities at the on-premise pool, for children ages 5 to 12. All of these activities are supervised by our expert staff. Kid’s Club also has weekly theme nights where, for an additional fee, you can drop off your children and enjoy an evening at the resort while they make new friends and try new things at events like Pirate Night or Pajama Party.&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-team-2 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"padding: 20px 15%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\r\n<p class=\"mod-reset\"><img class=\"shape circle bg-img alignnone wp-image-1887 size-medium\" style=\"margin-top: -85px; margin-bottom: 20px; border: 2px solid #cecece;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/vidanta-nuevovallarta-activities-beach-300x233.jpg\" alt=\"Beach\" width=\"300\" height=\"233\"></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000; font-weight: 600;\" data-font-weight=\"600\">beach</p>\r\n<p class=\"\" style=\"color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Soccer</p>\r\n<p class=\"\" style=\"color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Volleyball</p>\r\n<p class=\"\" style=\"color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Horseshoe Tournament</p>\r\n<p class=\"\" style=\"color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Bocce Ball</p>\r\n<p class=\"\" style=\"color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Beach Exploration</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"padding: 20px 15%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\r\n<p class=\"mod-reset\"><img class=\"shape circle bg-img alignnone wp-image-1888 size-medium\" style=\"margin-top: -85px; margin-bottom: 20px; border: 2px solid #cecece;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/vidanta-nuevovallarta-activities-tours-300x233.jpg\" alt=\"Walking paths\" width=\"300\" height=\"233\"></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000; font-weight: 600;\" data-font-weight=\"600\">tours</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Heart of Vidanta Tour</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Walks Wildlife Tour</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Iguana Tour</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Tequila Tour</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Explore Mexico</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-12 col-xs-12 text-center\">\r\n<div style=\"padding: 20px 15%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\r\n<p class=\"mod-reset\"><img class=\"shape circle bg-img alignnone wp-image-1889 size-medium\" style=\"margin-top: -85px; margin-bottom: 20px; border: 2px solid #cecece;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/vidanta-nuevovallarta-activities-nighttime-300x233.jpg\" alt=\"Night time shows at Santuario\" width=\"300\" height=\"233\"></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000; font-weight: 600;\" data-font-weight=\"600\">night time</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Show</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Bingo Night</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Trivia Night</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Black Jack Night</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Karaoke Night</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-team-2 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Activities','','inherit','closed','closed','','247-revision-v1','','','2022-03-29 17:15:19','2022-03-29 17:15:19','',247,'https://estatesatnuevo.com/?p=263',0,'revision','',0),(266,1,'2022-04-01 20:44:57','2022-04-01 20:44:57','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 text-center col-xs-12 col-sm-12 text-center\" style=\"padding-left: 0.9em;\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"font-family: Arial, Helvetica, sans-serif; font-weight: 600; text-align: left; font-size: 18px; color: #000000; line-height: 2em;\" data-font-family=\"Arial\" data-font-weight=\"600\" data-font-style=\"\"><span style=\"color: #000000; font-family: Arial, Times New Roman, san-serif;\"><span style=\"color: #000000; font-family: Arial, Times New Roman, san-serif;\"><span style=\"font-size: medium;\">This Estates at Nuevo Expansive Luxurious 4 Bedroom, 4.5 Bathroom Condo breathtaking space has a two-storied layout with the first floor featuring a gourmet kitchen outfitted with granite counter tops, a breakfast bar and all the finest appliances, a stylish dining area seating ten, a gorgeous lounge area with a TV, a master bedroom with a king bed and a TV, another bedroom with two full size beds and a TV, three bathrooms including two with a Jacuzzi tub, and an expansive terrace with massive private pool. The second story features a bedroom with a king bed and a TV, another bedroom with two full size beds and a TV, one and a half bathrooms, washer/dryer unit, and two private upper terraces. This condo accommodates 12 adults and 2 children under the age of 12.</span></span></span></p>\r\n<p class=\"\" style=\"text-align: left; font-weight: 600; font-family: Arial, Helvetica, sans-serif; font-size: 17px; color: #000000; line-height: 2em;\" data-font-family=\"Arial\" data-font-weight=\"600\" data-font-style=\"\">The Estates at Nuevo Luxurious 4 Bedroom condo includes access to all pools, gym, golf, spa, and tennis courts. Some costs may be charged for golf and spa packages. Included is complimentary transportation from the airport.&nbsp; A butler will be assigned to assist your every need.&nbsp; Morning coffee and tea are complimentary.&nbsp; Each unit has an outdoor deck with dining area and 2 lounge chairs as well as a small pool.&nbsp; All rentals with us have access to Platinum benefits that include best seating at pools, preferred check-in, preferred tee times and spa times (if reserved 72 hours in advance), and preferred restaurant reservations.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"image-gallery\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\"><img class=\"alignnone wp-image-1992 size-full\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-4bed.jpg\" alt=\"\" width=\"630\" height=\"386\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"\"><img class=\"alignnone wp-image-2023 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/living-area-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"\"><img class=\"alignnone wp-image-2024 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/master-1-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"\"><img class=\"alignnone wp-image-2015 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/2nd-bed-tv-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\"><img class=\"alignnone wp-image-2028 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/overhead-shot-225x300.jpeg\" alt=\"\" width=\"225\" height=\"300\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2022 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/living-area-1-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2017 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/another-bath-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2014 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/58_0_300_225.29182879377_estates4second.jpg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_2029\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-2029 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/pool-deck-300x225.jpeg\" alt=\"deck pool\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"> 4 bed estates deck pool[/caption]\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2013 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/31_0_300_203.87323943662_estates4master.jpg\" alt=\"\" width=\"300\" height=\"203\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2031 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/third-beds-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2026 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/master-bath-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<p class=\"\" style=\"text-align: left; color: #000000;\">&nbsp;</p>\r\n\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<div>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Ask about a Play and Stay Golf Package that includes free or discounted golf. The details will be determined based on the date and unit available.</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">All units are a minimum of 7 nights with check-ins Friday-Monday.</p>\r\n<p class=\"\" style=\"font-weight: 600; color: #000000; font-size: 18px;\" data-font-weight=\"600\"><strong><a href=\" https://www.GrandLuxxe-Vacation.com/home/contact-us/\">E-mail </a></strong>for details and we will do our best to get you the unit you desire. Click the word e-mail for a link.</p>\r\n<p class=\"\"><iframe style=\"overflow: hidden; display: block; margin: 0 auto; width: 100%; max-width: 400px; min-height: 400px;\" src=\"https://www.houfy.com/embed/7148/pricing\" frameborder=\"“0&quot;\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Review - \"The Estates cannot be equaled!</p>\r\n<p class=\"\" style=\"font-weight: 600; line-height: 1.4em; color: #000000;\" data-font-weight=\"600\">Absolutely luxurious property with high-end everything. Had 4 couples in a 4 bedroom unit. Butler service was phenomenal. They answered all questions and even loaned us his personal Alexa to assist my wheelchair-bound husband.&nbsp; We highly recommend the iced coffee as well as coffee delivered to the room every morning.&nbsp; Attentive and courteous housekeeping.</p>\r\n<p class=\"\" style=\"font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">I really enjoyed the large pool on the deck. Private swimming.&nbsp; So nice to site outside with drinks by the pool area. Dining on the deck is a plus as well.</p>\r\n<p class=\"\" style=\"font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">Enjoyed the Joy Club activities and attention at the pool. Aqua aerobics and pool blackjack was lots of fun.</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Julia D, Chicago, IL</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Estates 4 Bedroom','','inherit','closed','closed','','99-revision-v1','','','2022-04-01 20:44:57','2022-04-01 20:44:57','',99,'https://estatesatnuevo.com/?p=266',0,'revision','',0),(267,1,'2022-04-01 20:54:59','2022-04-01 20:54:59','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px;\">\r\n<div class=\"col-md-12 text-center col-xs-12 col-sm-12 text-center align-column-center\" style=\"padding-left: 0.9em;\">\r\n<div class=\"\">\r\n<p class=\"\" style=\"font-family: Arial, Helvetica, sans-serif; font-weight: 600; text-align: left; font-size: 18px; color: #000000; line-height: 2em;\" data-font-family=\"Arial\" data-font-weight=\"600\" data-font-style=\"\"><span style=\"color: #000000; font-family: Arial, Times New Roman, san-serif;\"><span style=\"color: #000000; font-family: Arial, Times New Roman, san-serif;\"><span style=\"font-size: medium;\">This Estates Expansive Luxurious 4 Bedroom, 4.5 Bathroom Condo breathtaking space has a two-storied layout with the first floor featuring a gourmet kitchen outfitted with granite counter tops, a breakfast bar and all the finest appliances, a stylish dining area seating ten, a gorgeous lounge area with a TV, a master bedroom with a king bed and a TV, another bedroom with two full size beds and a TV, three bathrooms including two with a Jacuzzi tub, and an expansive terrace with massive private pool. The second story features a bedroom with a king bed and a TV, another bedroom with two full size beds and a TV, one and a half bathrooms, washer/dryer unit, and two private upper terraces. This condo accommodates 12 adults and 2 children under the age of 12.</span></span></span></p>\r\n<p class=\"\" style=\"text-align: left; font-weight: 600; font-family: Arial, Helvetica, sans-serif; font-size: 17px; color: #000000; line-height: 2em;\" data-font-family=\"Arial\" data-font-weight=\"600\" data-font-style=\"\">This condo includes access to all pools, gym, golf, spa, and tennis courts. Some costs may be charged for golf and spa packages. Included is complimentary transportation from the airport.&nbsp; A butler will be assigned to assist your every need at the Estates at Nuevo Luxurious 4 Bedroom condo.&nbsp; Morning coffee and tea are complimentary.&nbsp; Each unit has an outdoor deck with dining area and 2 lounge chairs as well as a small pool.&nbsp; All rentals with us have access to Platinum benefits that include best seating at pools, preferred check-in, preferred tee times and spa times (if reserved 72 hours in advance), and preferred restaurant reservations.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"image-gallery\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\"><img class=\"alignnone wp-image-1992 size-full\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-4bed.jpg\" alt=\"\" width=\"630\" height=\"386\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"\"><img class=\"alignnone wp-image-2023 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/living-area-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"\"><img class=\"alignnone wp-image-2024 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/master-1-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"\"><img class=\"alignnone wp-image-2015 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/2nd-bed-tv-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\"><img class=\"alignnone wp-image-2028 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/overhead-shot-225x300.jpeg\" alt=\"\" width=\"225\" height=\"300\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2022 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/living-area-1-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2017 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/another-bath-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2014 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/58_0_300_225.29182879377_estates4second.jpg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_2029\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-2029 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/pool-deck-300x225.jpeg\" alt=\"deck pool\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"> 4 bed estates deck pool[/caption]\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2013 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/31_0_300_203.87323943662_estates4master.jpg\" alt=\"\" width=\"300\" height=\"203\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2031 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/third-beds-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2026 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/master-bath-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<p class=\"\" style=\"text-align: left; color: #000000;\">&nbsp;</p>\r\n\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<div>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Ask about a Play and Stay Golf Package that includes free or discounted golf. The details will be determined based on the date and unit available.</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">All units are a minimum of 7 nights with check-ins Friday-Monday.</p>\r\n<p class=\"\" style=\"font-weight: 600; color: #000000; font-size: 18px;\" data-font-weight=\"600\"><strong><a href=\" https://www.GrandLuxxe-Vacation.com/home/contact-us/\">E-mail </a></strong>for details and we will do our best to get you the unit you desire. Click the word e-mail for a link.</p>\r\n<p class=\"\"><iframe style=\"overflow: hidden; display: block; margin: 0 auto; width: 100%; max-width: 400px; min-height: 400px;\" src=\"https://www.houfy.com/embed/7148/pricing\" frameborder=\"“0&quot;\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Review - \"The Estates cannot be equaled!</p>\r\n<p class=\"\" style=\"font-weight: 600; line-height: 1.4em; color: #000000;\" data-font-weight=\"600\">Absolutely luxurious property with high-end everything. Had 4 couples in a 4 bedroom unit. Butler service was phenomenal. They answered all questions and even loaned us his personal Alexa to assist my wheelchair-bound husband.&nbsp; We highly recommend the iced coffee as well as coffee delivered to the room every morning.&nbsp; Attentive and courteous housekeeping.</p>\r\n<p class=\"\" style=\"font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">I really enjoyed the large pool on the deck. Private swimming.&nbsp; So nice to site outside with drinks by the pool area. Dining on the deck is a plus as well.</p>\r\n<p class=\"\" style=\"font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">Enjoyed the Joy Club activities and attention at the pool. Aqua aerobics and pool blackjack was lots of fun.</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Julia D, Chicago, IL</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Estates 4 Bedroom','','inherit','closed','closed','','99-revision-v1','','','2022-04-01 20:54:59','2022-04-01 20:54:59','',99,'https://estatesatnuevo.com/?p=267',0,'revision','',0),(269,1,'2022-04-01 20:57:35','2022-04-01 20:57:35','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 27px;\">\r\n<div class=\"col-md-12 text-center col-xs-12 col-sm-12 text-center\">\r\n<p class=\"\" style=\"text-align: left; color: #000000; font-weight: 600;\" data-font-weight=\"600\"><span style=\"font-size: 17.5px; text-align: center;\"><span>This gorgeous space features a gourmet kitchen outfitted with all the finest appliances, a stylish dining area seating six, a separate lounge area with TV, a bedroom with a king bed and a TV, two bathrooms including one with a Jacuzzi tub, and a large terrace complete with beautiful outdoor furnishings. </span>The Estates 1 Bedroom Luxury Condo accommodates 4 adults.</span></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-10 col-xs-12 col-sm-12 align-column-center\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\" style=\"padding: 4em;\"><span class=\"\"></span><img class=\"align=aligncenter\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-1-300x184.jpg\" alt=\"\" width=\"630\" height=\"386\" data-imhwpb-built-photo-search=\"108|landscape\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\"><img class=\"alignnone wp-image-208 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3rooom-1-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n\r\n[caption id=\"attachment_1995\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1995 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-walkway-300x184.jpg\" alt=\"Walkway to Estates pools and shops\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Walkway to Estates pools and shops[/caption]\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\"><img class=\"alignnone wp-image-185 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-1bed-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n\r\n[caption id=\"attachment_1990\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1990 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-2pools-300x184.jpg\" alt=\"Estates pools\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Estates private pools[/caption]\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\"><img class=\"alignnone wp-image-184 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-1-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n\r\n[caption id=\"attachment_1993\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-1993 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-beachland-300x184.jpg\" alt=\"Estates only pool section\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Estates only pool section[/caption]\r\n<p class=\"mod-img\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\" style=\"padding-left: 2.6em;\">\r\n<p class=\"\" style=\"font-size: 18px; color: #000000; font-weight: 600; line-height: 1.5em;\" data-font-weight=\"600\">Reduced golf fees and 2 for 1 basic 50-minute massages plus use of all facilities of the gym and spa free of charge.&nbsp; This includes facilities only and does not include food and beverages, facial or other spa treatments, personal training or any other services available at the gym or spa.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Complimentary morning coffee/tea service. A safety deposit box in each bedroom. Daily maid service and chocolates on your pillow at night!</p>\r\n<p class=\"\" style=\"font-size: 18px; font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">All units are a minimum of 7 nights with check-ins Friday-Monday.</p>\r\n<p class=\"\" style=\"font-weight: 600; font-size: 18px; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\"><strong><a class=\"\" href=\" https://www.GrandLuxxe-Vacation.com/home/contact-us/\">E-mail </a></strong>for details and we will do our best to get you the unit you desire. Click the word e-mail for a link.</p>\r\n<p class=\"\"><iframe style=\"overflow: hidden; display: block; margin: 0 auto; width: 100%; max-width: 400px; min-height: 400px;\" src=\"https://www.houfy.com/embed/7151/pricing\" frameborder=\"“0&quot;\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n<p class=\"\" style=\"font-weight: 600;\" data-font-weight=\"600\">Please ask any questions prior to your reservation request.&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding-right: 2.4em;\">\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\"><span style=\"font-size: 17.5px;\">Free in-room Internet access.&nbsp;&nbsp;</span></p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Tennis Courts - Use of the courts free of charge includes se of facilities and use of towels only and not the cost of nighttime illumination, rental or purchase of equipment, food and beverages, or any other expenses associated with the use of tennis courts.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Butler Service - a butler is assigned to assist your every need. Making reservations, etc.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Restaurant Reservations - Advise concierge of where you would like to eat and at what time and how many in your party (Reservations must be made 24 hours in advance).</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Spa Services - Rest, Relax, and Rejuvenate. Take advantage of the many massage and body treatments offered at the BRIO Spa &amp; Fitness Center. (Reservations must be made 72 hours in advance).</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Tee Times/Golf Reservations - Enjoy advance booking for your rounds of golf. Call the Pro Shop 72 hours in advance to book your tee times.</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Check-in - Enjoy an exclusive check in experience, free of long lines and waiting time.</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred View - The most desirable views subject to space availability.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Estates 1 Bedroom','','inherit','closed','closed','','219-revision-v1','','','2022-04-01 20:57:35','2022-04-01 20:57:35','',219,'https://estatesatnuevo.com/?p=269',0,'revision','',0),(270,1,'2022-04-01 21:00:13','2022-04-01 21:00:13','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 27px;\">\r\n<div class=\"col-md-12 text-center col-xs-12 col-sm-12 text-center\">\r\n<h1 class=\"intro__title\" style=\"color: #000000; font-weight: 600; font-size: 32px;\" data-font-weight=\"600\">Estates 2 Bedroom Luxury Condo</h1>\r\n<p class=\"\" style=\"text-align: left; color: #000000; font-weight: 600;\" data-font-weight=\"600\"><span style=\"font-size: 17.5px; text-align: center;\"><span>This gorgeous space features a gourmet kitchen outfitted with all the finest appliances, a stylish dining area seating six, a separate lounge area with TV, a bedroom with a king bed and a TV, two bathrooms including one with a Jacuzzi tub, and a large terrace complete with beautiful outdoor furnishings. </span>The Estates 1 Bedroom Luxury Condo accommodates 4 adults.</span></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-10 col-xs-12 col-sm-12 align-column-center\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\" style=\"padding: 4em;\"><span class=\"\"></span><img class=\"align=aligncenter\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-1-300x184.jpg\" alt=\"\" width=\"630\" height=\"386\" data-imhwpb-built-photo-search=\"108|landscape\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\"><img class=\"alignnone wp-image-208 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3rooom-1-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n\r\n[caption id=\"attachment_1995\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1995 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-walkway-300x184.jpg\" alt=\"Walkway to Estates pools and shops\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Walkway to Estates pools and shops[/caption]\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\"><img class=\"alignnone wp-image-185 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-1bed-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n\r\n[caption id=\"attachment_1990\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1990 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-2pools-300x184.jpg\" alt=\"Estates pools\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Estates private pools[/caption]\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\"><img class=\"alignnone wp-image-184 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-1-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n\r\n[caption id=\"attachment_1993\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-1993 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-beachland-300x184.jpg\" alt=\"Estates only pool section\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Estates only pool section[/caption]\r\n<p class=\"mod-img\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\" style=\"padding-left: 2.6em;\">\r\n<p class=\"\" style=\"font-size: 18px; color: #000000; font-weight: 600; line-height: 1.5em;\" data-font-weight=\"600\">Reduced golf fees and 2 for 1 basic 50-minute massages plus use of all facilities of the gym and spa free of charge.&nbsp; This includes facilities only and does not include food and beverages, facial or other spa treatments, personal training or any other services available at the gym or spa.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Complimentary morning coffee/tea service. A safety deposit box in each bedroom. Daily maid service and chocolates on your pillow at night!</p>\r\n<p class=\"\" style=\"font-size: 18px; font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">All units are a minimum of 7 nights with check-ins Friday-Monday.</p>\r\n<p class=\"\" style=\"font-weight: 600; font-size: 18px; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\"><strong><a class=\"\" href=\" https://www.GrandLuxxe-Vacation.com/home/contact-us/\">E-mail </a></strong>for details and we will do our best to get you the unit you desire. Click the word e-mail for a link.</p>\r\n<p class=\"\"><iframe style=\"overflow: hidden; display: block; margin: 0 auto; width: 100%; max-width: 400px; min-height: 400px;\" src=\"https://www.houfy.com/embed/7151/pricing\" frameborder=\"“0&quot;\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n<p class=\"\" style=\"font-weight: 600;\" data-font-weight=\"600\">Please ask any questions prior to your reservation request.&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding-right: 2.4em;\">\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\"><span style=\"font-size: 17.5px;\">Free in-room Internet access.&nbsp;&nbsp;</span></p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Tennis Courts - Use of the courts free of charge includes se of facilities and use of towels only and not the cost of nighttime illumination, rental or purchase of equipment, food and beverages, or any other expenses associated with the use of tennis courts.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Butler Service - a butler is assigned to assist your every need. Making reservations, etc.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Restaurant Reservations - Advise concierge of where you would like to eat and at what time and how many in your party (Reservations must be made 24 hours in advance).</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Spa Services - Rest, Relax, and Rejuvenate. Take advantage of the many massage and body treatments offered at the BRIO Spa &amp; Fitness Center. (Reservations must be made 72 hours in advance).</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Tee Times/Golf Reservations - Enjoy advance booking for your rounds of golf. Call the Pro Shop 72 hours in advance to book your tee times.</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Check-in - Enjoy an exclusive check in experience, free of long lines and waiting time.</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred View - The most desirable views subject to space availability.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Estates 1 Bedroom','','inherit','closed','closed','','219-revision-v1','','','2022-04-01 21:00:13','2022-04-01 21:00:13','',219,'https://estatesatnuevo.com/?p=270',0,'revision','',0),(271,1,'2022-04-01 21:00:31','2022-04-01 21:00:31','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 27px;\">\r\n<div class=\"col-md-12 text-center col-xs-12 col-sm-12 text-center\">\r\n<h1 class=\"intro__title\" style=\"color: #000000; font-weight: 600; font-size: 32px;\" data-font-weight=\"600\">Estates 1 Bedroom Luxury Condo</h1>\r\n<p class=\"\" style=\"text-align: left; color: #000000; font-weight: 600;\" data-font-weight=\"600\"><span style=\"font-size: 17.5px; text-align: center;\"><span>This gorgeous space features a gourmet kitchen outfitted with all the finest appliances, a stylish dining area seating six, a separate lounge area with TV, a bedroom with a king bed and a TV, two bathrooms including one with a Jacuzzi tub, and a large terrace complete with beautiful outdoor furnishings. </span>The Estates 1 Bedroom Luxury Condo accommodates 4 adults.</span></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n<div class=\"col-md-10 col-xs-12 col-sm-12 align-column-center\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\" style=\"padding: 4em;\"><span class=\"\"></span><img class=\"align=aligncenter\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-1-300x184.jpg\" alt=\"\" width=\"630\" height=\"386\" data-imhwpb-built-photo-search=\"108|landscape\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\"><img class=\"alignnone wp-image-208 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3rooom-1-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n\r\n[caption id=\"attachment_1995\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1995 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-walkway-300x184.jpg\" alt=\"Walkway to Estates pools and shops\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Walkway to Estates pools and shops[/caption]\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\"><img class=\"alignnone wp-image-185 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-1bed-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n\r\n[caption id=\"attachment_1990\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1990 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-2pools-300x184.jpg\" alt=\"Estates pools\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Estates private pools[/caption]\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\"><img class=\"alignnone wp-image-184 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-1-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n\r\n[caption id=\"attachment_1993\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-1993 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-beachland-300x184.jpg\" alt=\"Estates only pool section\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Estates only pool section[/caption]\r\n<p class=\"mod-img\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\" style=\"padding-left: 2.6em;\">\r\n<p class=\"\" style=\"font-size: 18px; color: #000000; font-weight: 600; line-height: 1.5em;\" data-font-weight=\"600\">Reduced golf fees and 2 for 1 basic 50-minute massages plus use of all facilities of the gym and spa free of charge.&nbsp; This includes facilities only and does not include food and beverages, facial or other spa treatments, personal training or any other services available at the gym or spa.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Complimentary morning coffee/tea service. A safety deposit box in each bedroom. Daily maid service and chocolates on your pillow at night!</p>\r\n<p class=\"\" style=\"font-size: 18px; font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">All units are a minimum of 7 nights with check-ins Friday-Monday.</p>\r\n<p class=\"\" style=\"font-weight: 600; font-size: 18px; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\"><strong><a class=\"\" href=\" https://www.GrandLuxxe-Vacation.com/home/contact-us/\">E-mail </a></strong>for details and we will do our best to get you the unit you desire. Click the word e-mail for a link.</p>\r\n<p class=\"\"><iframe style=\"overflow: hidden; display: block; margin: 0 auto; width: 100%; max-width: 400px; min-height: 400px;\" src=\"https://www.houfy.com/embed/7151/pricing\" frameborder=\"“0&quot;\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n<p class=\"\" style=\"font-weight: 600;\" data-font-weight=\"600\">Please ask any questions prior to your reservation request.&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding-right: 2.4em;\">\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\"><span style=\"font-size: 17.5px;\">Free in-room Internet access.&nbsp;&nbsp;</span></p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Tennis Courts - Use of the courts free of charge includes se of facilities and use of towels only and not the cost of nighttime illumination, rental or purchase of equipment, food and beverages, or any other expenses associated with the use of tennis courts.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Butler Service - a butler is assigned to assist your every need. Making reservations, etc.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Restaurant Reservations - Advise concierge of where you would like to eat and at what time and how many in your party (Reservations must be made 24 hours in advance).</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Spa Services - Rest, Relax, and Rejuvenate. Take advantage of the many massage and body treatments offered at the BRIO Spa &amp; Fitness Center. (Reservations must be made 72 hours in advance).</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Tee Times/Golf Reservations - Enjoy advance booking for your rounds of golf. Call the Pro Shop 72 hours in advance to book your tee times.</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Check-in - Enjoy an exclusive check in experience, free of long lines and waiting time.</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred View - The most desirable views subject to space availability.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Estates 1 Bedroom','','inherit','closed','closed','','219-revision-v1','','','2022-04-01 21:00:31','2022-04-01 21:00:31','',219,'https://estatesatnuevo.com/?p=271',0,'revision','',0),(273,1,'2022-04-01 21:02:15','2022-04-01 21:02:15','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px;\">\r\n<div class=\"col-md-12 text-center col-xs-12 col-sm-12 text-center align-column-center\" style=\"padding-left: 0.9em;\">\r\n<h1 class=\"intro__title\" style=\"color: #000000; font-weight: 600; font-size: 32px;\" data-font-weight=\"600\">Estates 4 Bedroom Luxury Condo</h1>\r\n<p class=\"\" style=\"font-family: Arial, Helvetica, sans-serif; font-weight: 600; text-align: left; font-size: 18px; color: #000000; line-height: 2em;\" data-font-family=\"Arial\" data-font-weight=\"600\" data-font-style=\"\"><span style=\"color: #000000; font-family: Arial, Times New Roman, san-serif;\"><span style=\"color: #000000; font-family: Arial, Times New Roman, san-serif;\"><span style=\"font-size: medium;\">This Estates Expansive Luxurious 4 Bedroom, 4.5 Bathroom Condo breathtaking space has a two-storied layout with the first floor featuring a gourmet kitchen outfitted with granite counter tops, a breakfast bar and all the finest appliances, a stylish dining area seating ten, a gorgeous lounge area with a TV, a master bedroom with a king bed and a TV, another bedroom with two full size beds and a TV, three bathrooms including two with a Jacuzzi tub, and an expansive terrace with massive private pool. The second story features a bedroom with a king bed and a TV, another bedroom with two full size beds and a TV, one and a half bathrooms, washer/dryer unit, and two private upper terraces. This condo accommodates 12 adults and 2 children under the age of 12.</span></span></span></p>\r\n<p class=\"\" style=\"text-align: left; font-weight: 600; font-family: Arial, Helvetica, sans-serif; font-size: 17px; color: #000000; line-height: 2em;\" data-font-family=\"Arial\" data-font-weight=\"600\" data-font-style=\"\">This condo includes access to all pools, gym, golf, spa, and tennis courts. Some costs may be charged for golf and spa packages. Included is complimentary transportation from the airport.&nbsp; A butler will be assigned to assist your every need at the Estates at Nuevo Luxurious 4 Bedroom condo.&nbsp; Morning coffee and tea are complimentary.&nbsp; Each unit has an outdoor deck with dining area and 2 lounge chairs as well as a small pool.&nbsp; All rentals with us have access to Platinum benefits that include best seating at pools, preferred check-in, preferred tee times and spa times (if reserved 72 hours in advance), and preferred restaurant reservations.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"image-gallery\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\"><img class=\"alignnone wp-image-1992 size-full\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-4bed.jpg\" alt=\"\" width=\"630\" height=\"386\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"\"><img class=\"alignnone wp-image-2023 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/living-area-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"\"><img class=\"alignnone wp-image-2024 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/master-1-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"\"><img class=\"alignnone wp-image-2015 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/2nd-bed-tv-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\"><img class=\"alignnone wp-image-2028 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/overhead-shot-225x300.jpeg\" alt=\"\" width=\"225\" height=\"300\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2022 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/living-area-1-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2017 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/another-bath-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2014 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/58_0_300_225.29182879377_estates4second.jpg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_2029\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-2029 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/pool-deck-300x225.jpeg\" alt=\"deck pool\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"> 4 bed estates deck pool[/caption]\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2013 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/31_0_300_203.87323943662_estates4master.jpg\" alt=\"\" width=\"300\" height=\"203\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2031 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/third-beds-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2026 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/master-bath-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<p class=\"\" style=\"text-align: left; color: #000000;\">&nbsp;</p>\r\n\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<div>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Ask about a Play and Stay Golf Package that includes free or discounted golf. The details will be determined based on the date and unit available.</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">All units are a minimum of 7 nights with check-ins Friday-Monday.</p>\r\n<p class=\"\" style=\"font-weight: 600; color: #000000; font-size: 18px;\" data-font-weight=\"600\"><strong><a href=\" https://www.GrandLuxxe-Vacation.com/home/contact-us/\">E-mail </a></strong>for details and we will do our best to get you the unit you desire. Click the word e-mail for a link.</p>\r\n<p class=\"\"><iframe style=\"overflow: hidden; display: block; margin: 0 auto; width: 100%; max-width: 400px; min-height: 400px;\" src=\"https://www.houfy.com/embed/7148/pricing\" frameborder=\"“0&quot;\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Review - \"The Estates cannot be equaled!</p>\r\n<p class=\"\" style=\"font-weight: 600; line-height: 1.4em; color: #000000;\" data-font-weight=\"600\">Absolutely luxurious property with high-end everything. Had 4 couples in a 4 bedroom unit. Butler service was phenomenal. They answered all questions and even loaned us his personal Alexa to assist my wheelchair-bound husband.&nbsp; We highly recommend the iced coffee as well as coffee delivered to the room every morning.&nbsp; Attentive and courteous housekeeping.</p>\r\n<p class=\"\" style=\"font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">I really enjoyed the large pool on the deck. Private swimming.&nbsp; So nice to site outside with drinks by the pool area. Dining on the deck is a plus as well.</p>\r\n<p class=\"\" style=\"font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">Enjoyed the Joy Club activities and attention at the pool. Aqua aerobics and pool blackjack was lots of fun.</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Julia D, Chicago, IL</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Estates 4 Bedroom','','inherit','closed','closed','','99-revision-v1','','','2022-04-01 21:02:15','2022-04-01 21:02:15','',99,'https://estatesatnuevo.com/?p=273',0,'revision','',0),(272,1,'2022-04-01 21:01:43','2022-04-01 21:01:43','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px;\">\r\n<div class=\"col-md-12 text-center col-xs-12 col-sm-12 text-center align-column-center\" style=\"padding-left: 0.9em;\">\r\n12 text-center col-xs-12 col-sm-12 text-center\">\r\n<h1 class=\"intro__title\" style=\"color: #000000; font-weight: 600; font-size: 32px;\" data-font-weight=\"600\">Estates 4 Bedroom Luxury Condo</h1>\r\n<p class=\"\" style=\"font-family: Arial, Helvetica, sans-serif; font-weight: 600; text-align: left; font-size: 18px; color: #000000; line-height: 2em;\" data-font-family=\"Arial\" data-font-weight=\"600\" data-font-style=\"\"><span style=\"color: #000000; font-family: Arial, Times New Roman, san-serif;\"><span style=\"color: #000000; font-family: Arial, Times New Roman, san-serif;\"><span style=\"font-size: medium;\">This Estates Expansive Luxurious 4 Bedroom, 4.5 Bathroom Condo breathtaking space has a two-storied layout with the first floor featuring a gourmet kitchen outfitted with granite counter tops, a breakfast bar and all the finest appliances, a stylish dining area seating ten, a gorgeous lounge area with a TV, a master bedroom with a king bed and a TV, another bedroom with two full size beds and a TV, three bathrooms including two with a Jacuzzi tub, and an expansive terrace with massive private pool. The second story features a bedroom with a king bed and a TV, another bedroom with two full size beds and a TV, one and a half bathrooms, washer/dryer unit, and two private upper terraces. This condo accommodates 12 adults and 2 children under the age of 12.</span></span></span></p>\r\n<p class=\"\" style=\"text-align: left; font-weight: 600; font-family: Arial, Helvetica, sans-serif; font-size: 17px; color: #000000; line-height: 2em;\" data-font-family=\"Arial\" data-font-weight=\"600\" data-font-style=\"\">This condo includes access to all pools, gym, golf, spa, and tennis courts. Some costs may be charged for golf and spa packages. Included is complimentary transportation from the airport.&nbsp; A butler will be assigned to assist your every need at the Estates at Nuevo Luxurious 4 Bedroom condo.&nbsp; Morning coffee and tea are complimentary.&nbsp; Each unit has an outdoor deck with dining area and 2 lounge chairs as well as a small pool.&nbsp; All rentals with us have access to Platinum benefits that include best seating at pools, preferred check-in, preferred tee times and spa times (if reserved 72 hours in advance), and preferred restaurant reservations.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"image-gallery\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\"><img class=\"alignnone wp-image-1992 size-full\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-4bed.jpg\" alt=\"\" width=\"630\" height=\"386\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"\"><img class=\"alignnone wp-image-2023 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/living-area-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"\"><img class=\"alignnone wp-image-2024 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/master-1-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"\"><img class=\"alignnone wp-image-2015 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/2nd-bed-tv-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\"><img class=\"alignnone wp-image-2028 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/overhead-shot-225x300.jpeg\" alt=\"\" width=\"225\" height=\"300\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2022 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/living-area-1-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2017 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/another-bath-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2014 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/58_0_300_225.29182879377_estates4second.jpg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_2029\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-2029 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/pool-deck-300x225.jpeg\" alt=\"deck pool\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"> 4 bed estates deck pool[/caption]\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2013 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/31_0_300_203.87323943662_estates4master.jpg\" alt=\"\" width=\"300\" height=\"203\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2031 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/third-beds-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2026 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/master-bath-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<p class=\"\" style=\"text-align: left; color: #000000;\">&nbsp;</p>\r\n\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<div>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Ask about a Play and Stay Golf Package that includes free or discounted golf. The details will be determined based on the date and unit available.</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">All units are a minimum of 7 nights with check-ins Friday-Monday.</p>\r\n<p class=\"\" style=\"font-weight: 600; color: #000000; font-size: 18px;\" data-font-weight=\"600\"><strong><a href=\" https://www.GrandLuxxe-Vacation.com/home/contact-us/\">E-mail </a></strong>for details and we will do our best to get you the unit you desire. Click the word e-mail for a link.</p>\r\n<p class=\"\"><iframe style=\"overflow: hidden; display: block; margin: 0 auto; width: 100%; max-width: 400px; min-height: 400px;\" src=\"https://www.houfy.com/embed/7148/pricing\" frameborder=\"“0&quot;\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Review - \"The Estates cannot be equaled!</p>\r\n<p class=\"\" style=\"font-weight: 600; line-height: 1.4em; color: #000000;\" data-font-weight=\"600\">Absolutely luxurious property with high-end everything. Had 4 couples in a 4 bedroom unit. Butler service was phenomenal. They answered all questions and even loaned us his personal Alexa to assist my wheelchair-bound husband.&nbsp; We highly recommend the iced coffee as well as coffee delivered to the room every morning.&nbsp; Attentive and courteous housekeeping.</p>\r\n<p class=\"\" style=\"font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">I really enjoyed the large pool on the deck. Private swimming.&nbsp; So nice to site outside with drinks by the pool area. Dining on the deck is a plus as well.</p>\r\n<p class=\"\" style=\"font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">Enjoyed the Joy Club activities and attention at the pool. Aqua aerobics and pool blackjack was lots of fun.</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Julia D, Chicago, IL</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Estates 4 Bedroom','','inherit','closed','closed','','99-revision-v1','','','2022-04-01 21:01:43','2022-04-01 21:01:43','',99,'https://estatesatnuevo.com/?p=272',0,'revision','',0),(276,1,'2022-04-08 19:34:16','2022-04-08 19:34:16','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"color: #ffffff; background-image: linear-gradient(to left, rgba(26, 26, 26, 0.5), rgba(26, 26, 26, 0.5)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/pool.jpg\'); background-size: cover; background-position: 50% 75%;\" data-imhwpb-asset-id=\"1111019\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/pool.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-md-2 col-sm-2 col-xs-12 col-lg-2\"></div>\r\n<div class=\"col-md-8 col-sm-10 col-xs-12 align-column-center col-lg-8\">\r\n<h2 class=\"intro__title\" style=\"font-weight: 600; font-size: 32px; color: #ffffff;\" align=\"center\" data-font-weight=\"600\">Ultimate Luxury Meets Ultimate Nature</h2>\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-12 col-lg-2\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">RESORT INFO</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>The Estates at Nuevo&nbsp; Luxury Vacation Condos are the pinnacle of luxury and service within our Vidanta resort group. Nestled between the Pacific Ocean and the Sierra Madre Mountains, Estates at Nuevo is a Mexican tropical beach paradise vacation that offers the ultimate Mexican resort vacation. As the biggest of the Vidanta destinations, it has been carefully cultivated to provide a high-end experience full of options:&nbsp; luxury vacation condos,&nbsp; restaurants and lounges&nbsp; golf courses, a shopping plaza, two indulgent spas, beautiful beaches, and countless pools.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/info\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">SUITES</h3>\r\n<p class=\"\"><span>Discover the best that luxury vacationing has to offer at The Estates, a haven of high-end comfort sequestered in the sublime jungle landscape at Vidanta Nuevo Vallarta.</span></p>\r\n<p class=\"\"><span>From the breathtaking One Bedroom to the jaw-dropping Four Bedroom, The Estates at Vidanta Nuevo Vallarta showcases exquisite spaces that are redefining modern luxury.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/dining\">1 Bedroom</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/dining\">2 Bedrooms</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/dining\">3 Bedrooms</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/dining\">4 Bedrooms</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">ACTIVITIES</h3>\r\n<p class=\"\"><span>The Estates Vacation offers a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, a number of pool &amp; poolside activities including water polo, water volleyball, aqua aerobics, Paddle Board stretching class, Salsa lessons, Spanish class, arts &amp; crafts, Guacamole making class. Kids Club, Beach, Tours, and Night time Shows.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/activities\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">property photos</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>The Estates at Nuevo&nbsp; Luxury Vacation Condos are the pinnacle of luxury and service within our Vidanta resort group. Nestled between the Pacific Ocean and the Sierra Madre Mountains, Estates at Nuevo is a Mexican tropical beach paradise vacation that offers the ultimate Mexican resort vacation. As the biggest of the Vidanta destinations, it has been carefully cultivated to provide a high-end experience full of options:&nbsp; luxury vacation condos,&nbsp; restaurants and lounges&nbsp; golf courses, a shopping plaza, two indulgent spas, beautiful beaches, and countless pools.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/info\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">DINING</h3>\r\n<p class=\"\"><span>With over 40 restaurants and lounges to choose from, Estates at Nuevo gives guests the opportunity to dine however they like. Options range from high-end eateries to casual restaurants to authentic Mexican spots, and even a gourmet market filled with offerings from all over the world. One thing is for sure—an amazing culinary experience is always just a meal away.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/dining\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">spa</h3>\r\n<header class=\"intro__header\"></header>\r\n<div class=\"intro__lead\">\r\n<p class=\"intro__text\">Vacation is about restful and renewing relaxation. It’s about indulging in peace and taking a moment to enjoy the clarity of being removed from your busy home life.&nbsp; At the Estates at Nuevo,&nbsp; we help you embrace that serenity and harness the revitalizing powers of paradise with two beautiful, well-appointed spas.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 1em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">About Us</h2>\r\n<h3 class=\"\">WE CARE ABOUT YOUR VACATION</h3>\r\n<div><span class=\"\">We are owners at the Estates at Nuevo Luxury Condo Suites at the Vidanta Resorts.&nbsp; We also own at the Grand Luxxe Vacation resort.&nbsp; There are several of the Vidanta resorts in Mexico but we love the Nuevo Vallarta site because it has the most to offer.&nbsp; &nbsp;</span></div>\r\n<p class=\"\">We work with other owners so we have a larger selection of rentals available. Some have already been secured with the resort and are ready to book.&nbsp; If not, then we can check on availability for your specific time frame.</p>\r\n<p class=\"\">Always happy to answer any questions you may have about the resort and ourselves.&nbsp;&nbsp;</p>\r\n<p class=\"\">Thanks!&nbsp; Linda and Frank Helman</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 align-column-center col-lg-6\"><span class=\"\">From the moment you arrive, you will sense the difference with personalized attention 24/7 and the exclusivity in private beach and pool areas that are intimate and tranquil. At Vidanta’s Estates at Nuevo Vacation Mexican resort, we invite you to explore the gardens and landscaping, enjoy the ocean breeze, the unparalleled panoramic view of the Pacific Ocean in a magnificent sunset, and the natural biodiversity of the Bandera’s bay. It is the kind of extraordinary Mexican vacation experience you want, and the kind of service you deserve and expect.</span></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 0em 3em 90px;\">\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-110\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"k8m4Uj5JJAQ\" data-imhwpb-asset-id=\"1111013\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-111\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"r1tjlHBnHzY\" data-imhwpb-asset-id=\"1111014\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-112\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"l5gzNmXTzIg\" data-imhwpb-asset-id=\"1111015\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-113\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"\" data-imhwpb-asset-id=\"1111016\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-114\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"sBtqOe23bd0\" data-imhwpb-asset-id=\"1111017\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-115\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"B8He4PJkMLg\" data-imhwpb-asset-id=\"1111018\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\'); background-size: cover; background-position: 50% 58%;\" data-imhwpb-asset-id=\"1111020\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding: 75px 2em 4em;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-key\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Vacation GOLF</h3>\r\n<p class=\"H1\" data-font-weight=\"600\">Two Designer Courses, a Par 3 Lighted Course, and a State-of-the Art Instructional Academy.&nbsp; Estates at Nuevo boasts the most comprehensive golf offerings in the area. PGA tournament in 2023 here!</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-star-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Special NEEDS</h3>\r\n<p class=\"\">Do you have a special need? Wheelchairs are available for rent and special golf carts will take you around the property.&nbsp; Need a baby crib or child care? We can handle that too.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container-fluid\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 2em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">Our Location</h2>\r\n<p class=\"\">Because we put the customer first, we always have free transportation from the airport to the resort and to your living suite.&nbsp;</p>\r\n<p class=\"\">Review the room details and let us know how we can help you have the best vacation possible.</p>\r\n\r\n<h3 class=\"\" style=\"color: #000000; font-weight: 400; font-size: 25px;\" data-font-weight=\"400\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address&nbsp;</h3>\r\n<p class=\"\" style=\"font-weight: 400; color: #000000;\" data-font-weight=\"400\">Blvd Riviera Nayarit #254, 63735 Nuevo Vallarta, Nay., Mexico</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 bg-box-flush col-lg-6\">\r\n<p class=\"\"><img class=\"bg-img alignnone wp-image-1806 size-medium\" style=\"background-color: var(--color-neutral); color: var(--color-neutral-text-contrast);\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico.jpg-2-300x210.jpg\" alt=\"Resort area showing proximity to airport and Puerto Vallarta\" width=\"300\" height=\"210\"><img class=\"bg-img alignnone wp-image-1810 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico-1.jpg-2-1-300x239.jpg\" alt=\"Close up of resort area\" width=\"300\" height=\"239\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','97-revision-v1','','','2022-04-08 19:34:16','2022-04-08 19:34:16','',97,'https://estatesatnuevo.com/?p=276',0,'revision','',0),(312,1,'2022-04-08 20:55:53','2022-04-08 20:55:53','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"color: #ffffff; background-image: linear-gradient(to left, rgba(26, 26, 26, 0.5), rgba(26, 26, 26, 0.5)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/pool.jpg\'); background-size: cover; background-position: 50% 75%;\" data-imhwpb-asset-id=\"1111019\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/pool.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-md-2 col-sm-2 col-xs-12 col-lg-2\"></div>\r\n<div class=\"col-md-8 col-sm-10 col-xs-12 align-column-center col-lg-8\">\r\n<h2 class=\"intro__title\" style=\"font-weight: 600; font-size: 32px; color: #ffffff;\" align=\"center\" data-font-weight=\"600\">Ultimate Luxury Meets Ultimate Nature</h2>\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-12 col-lg-2\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">RESORT INFO</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>The Estates at Nuevo&nbsp; Luxury Vacation Condos are the pinnacle of luxury and service within our Vidanta resort group. Nestled between the Pacific Ocean and the Sierra Madre Mountains, Estates at Nuevo is a Mexican tropical beach paradise vacation that offers the ultimate Mexican resort vacation. As the biggest of the Vidanta destinations, it has been carefully cultivated to provide a high-end experience full of options:&nbsp; luxury vacation condos,&nbsp; restaurants and lounges&nbsp; golf courses, a shopping plaza, two indulgent spas, beautiful beaches, and countless pools.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/info\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">SUITES</h3>\r\n<p class=\"\"><span>Discover the best that luxury vacationing has to offer at The Estates, a haven of high-end comfort sequestered in the sublime jungle landscape at Vidanta Nuevo Vallarta.</span></p>\r\n<p class=\"\"><span>From the breathtaking One Bedroom to the jaw-dropping Four Bedroom, The Estates at Vidanta Nuevo Vallarta showcases exquisite spaces that are redefining modern luxury.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-1-bedroom\">1 Bedroom</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-2-bedroom\">2 Bedrooms</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-3-bedroom\">3 Bedrooms</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-4-bedroom\">4 Bedrooms</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">ACTIVITIES</h3>\r\n<p class=\"\"><span>The Estates Vacation offers a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, a number of pool &amp; poolside activities including water polo, water volleyball, aqua aerobics, Paddle Board stretching class, Salsa lessons, Spanish class, arts &amp; crafts, Guacamole making class. Kids Club, Beach, Tours, and Night time Shows.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/activities\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">property photos</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>The Estates at Nuevo&nbsp; Kick back in a remote jungle oasis by your accommodations or enjoy a gorgeous exclusive pool and lounge area in Beachland. Ride the exclusive gondola, play golf, luxuriate in a spa setting or relax by the pool in your private sanctuary. </span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/photos\">See More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">DINING</h3>\r\n<p class=\"\"><span>With over 40 restaurants and lounges to choose from, Estates at Nuevo gives guests the opportunity to dine however they like. Options range from high-end eateries to casual restaurants to authentic Mexican spots, and even a gourmet market filled with offerings from all over the world. One thing is for sure—an amazing culinary experience is always just a meal away.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/dining\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">spa</h3>\r\n<header class=\"intro__header\"></header>\r\n<div class=\"intro__lead\">\r\n<p class=\"intro__text\">Vacation is about restful and renewing relaxation. It’s about indulging in peace and taking a moment to enjoy the clarity of being removed from your busy home life.&nbsp; At the Estates at Nuevo,&nbsp; we help you embrace that serenity and harness the revitalizing powers of paradise with two beautiful, well-appointed spas.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 1em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">About Us</h2>\r\n<h3 class=\"\">WE CARE ABOUT YOUR VACATION</h3>\r\n<div><span class=\"\">We are owners at the Estates at Nuevo Luxury Condo Suites at the Vidanta Resorts.&nbsp; We also own at the Grand Luxxe Vacation resort.&nbsp; There are several of the Vidanta resorts in Mexico but we love the Nuevo Vallarta site because it has the most to offer.&nbsp; &nbsp;</span></div>\r\n<p class=\"\">We work with other owners so we have a larger selection of rentals available. Some have already been secured with the resort and are ready to book.&nbsp; If not, then we can check on availability for your specific time frame.</p>\r\n<p class=\"\">Always happy to answer any questions you may have about the resort and ourselves.&nbsp;&nbsp;</p>\r\n<p class=\"\">Thanks!&nbsp; Linda and Frank Helman</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 align-column-center col-lg-6\"><span class=\"\">From the moment you arrive, you will sense the difference with personalized attention 24/7 and the exclusivity in private beach and pool areas that are intimate and tranquil. At Vidanta’s Estates at Nuevo Vacation Mexican resort, we invite you to explore the gardens and landscaping, enjoy the ocean breeze, the unparalleled panoramic view of the Pacific Ocean in a magnificent sunset, and the natural biodiversity of the Bandera’s bay. It is the kind of extraordinary Mexican vacation experience you want, and the kind of service you deserve and expect.</span></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 0em 3em 90px;\">\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-110\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"k8m4Uj5JJAQ\" data-imhwpb-asset-id=\"1111013\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-111\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"r1tjlHBnHzY\" data-imhwpb-asset-id=\"1111014\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-112\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"l5gzNmXTzIg\" data-imhwpb-asset-id=\"1111015\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-113\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"\" data-imhwpb-asset-id=\"1111016\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-114\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"sBtqOe23bd0\" data-imhwpb-asset-id=\"1111017\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-115\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"B8He4PJkMLg\" data-imhwpb-asset-id=\"1111018\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\'); background-size: cover; background-position: 50% 58%;\" data-imhwpb-asset-id=\"1111020\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding: 75px 2em 4em;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-key\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Vacation GOLF</h3>\r\n<p class=\"H1\" data-font-weight=\"600\">Two Designer Courses, a Par 3 Lighted Course, and a State-of-the Art Instructional Academy.&nbsp; Estates at Nuevo boasts the most comprehensive golf offerings in the area. PGA tournament in 2023 here!</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-star-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Special NEEDS</h3>\r\n<p class=\"\">Do you have a special need? Wheelchairs are available for rent and special golf carts will take you around the property.&nbsp; Need a baby crib or child care? We can handle that too.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container-fluid\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 2em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">Our Location</h2>\r\n<p class=\"\">Because we put the customer first, we always have free transportation from the airport to the resort and to your living suite.&nbsp;</p>\r\n<p class=\"\">Review the room details and let us know how we can help you have the best vacation possible.</p>\r\n\r\n<h3 class=\"\" style=\"color: #000000; font-weight: 400; font-size: 25px;\" data-font-weight=\"400\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address&nbsp;</h3>\r\n<p class=\"\" style=\"font-weight: 400; color: #000000;\" data-font-weight=\"400\">Blvd Riviera Nayarit #254, 63735 Nuevo Vallarta, Nay., Mexico</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 bg-box-flush col-lg-6\">\r\n<p class=\"\"><img class=\"bg-img alignnone wp-image-1806 size-medium\" style=\"background-color: var(--color-neutral); color: var(--color-neutral-text-contrast);\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico.jpg-2-300x210.jpg\" alt=\"Resort area showing proximity to airport and Puerto Vallarta\" width=\"300\" height=\"210\"><img class=\"bg-img alignnone wp-image-1810 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico-1.jpg-2-1-300x239.jpg\" alt=\"Close up of resort area\" width=\"300\" height=\"239\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','97-revision-v1','','','2022-04-08 20:55:53','2022-04-08 20:55:53','',97,'https://estatesatnuevo.com/?p=312',0,'revision','',0),(277,1,'2022-04-08 19:38:54','2022-04-08 19:38:54','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"color: #ffffff; background-image: linear-gradient(to left, rgba(26, 26, 26, 0.5), rgba(26, 26, 26, 0.5)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/pool.jpg\'); background-size: cover; background-position: 50% 75%;\" data-imhwpb-asset-id=\"1111019\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/pool.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-md-2 col-sm-2 col-xs-12 col-lg-2\"></div>\r\n<div class=\"col-md-8 col-sm-10 col-xs-12 align-column-center col-lg-8\">\r\n<h2 class=\"intro__title\" style=\"font-weight: 600; font-size: 32px; color: #ffffff;\" align=\"center\" data-font-weight=\"600\">Ultimate Luxury Meets Ultimate Nature</h2>\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-12 col-lg-2\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">RESORT INFO</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>The Estates at Nuevo&nbsp; Luxury Vacation Condos are the pinnacle of luxury and service within our Vidanta resort group. Nestled between the Pacific Ocean and the Sierra Madre Mountains, Estates at Nuevo is a Mexican tropical beach paradise vacation that offers the ultimate Mexican resort vacation. As the biggest of the Vidanta destinations, it has been carefully cultivated to provide a high-end experience full of options:&nbsp; luxury vacation condos,&nbsp; restaurants and lounges&nbsp; golf courses, a shopping plaza, two indulgent spas, beautiful beaches, and countless pools.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/info\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">SUITES</h3>\r\n<p class=\"\"><span>Discover the best that luxury vacationing has to offer at The Estates, a haven of high-end comfort sequestered in the sublime jungle landscape at Vidanta Nuevo Vallarta.</span></p>\r\n<p class=\"\"><span>From the breathtaking One Bedroom to the jaw-dropping Four Bedroom, The Estates at Vidanta Nuevo Vallarta showcases exquisite spaces that are redefining modern luxury.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-1-bedroom\">1 Bedroom</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-2-bedroom\">2 Bedrooms</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-3-bedroom\">3 Bedrooms</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-4-bedroom\">4 Bedrooms</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">ACTIVITIES</h3>\r\n<p class=\"\"><span>The Estates Vacation offers a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, a number of pool &amp; poolside activities including water polo, water volleyball, aqua aerobics, Paddle Board stretching class, Salsa lessons, Spanish class, arts &amp; crafts, Guacamole making class. Kids Club, Beach, Tours, and Night time Shows.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/activities\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">property photos</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>The Estates at Nuevo&nbsp; Luxury Vacation Condos are the pinnacle of luxury and service within our Vidanta resort group. Nestled between the Pacific Ocean and the Sierra Madre Mountains, Estates at Nuevo is a Mexican tropical beach paradise vacation that offers the ultimate Mexican resort vacation. As the biggest of the Vidanta destinations, it has been carefully cultivated to provide a high-end experience full of options:&nbsp; luxury vacation condos,&nbsp; restaurants and lounges&nbsp; golf courses, a shopping plaza, two indulgent spas, beautiful beaches, and countless pools.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/info\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">DINING</h3>\r\n<p class=\"\"><span>With over 40 restaurants and lounges to choose from, Estates at Nuevo gives guests the opportunity to dine however they like. Options range from high-end eateries to casual restaurants to authentic Mexican spots, and even a gourmet market filled with offerings from all over the world. One thing is for sure—an amazing culinary experience is always just a meal away.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/dining\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">spa</h3>\r\n<header class=\"intro__header\"></header>\r\n<div class=\"intro__lead\">\r\n<p class=\"intro__text\">Vacation is about restful and renewing relaxation. It’s about indulging in peace and taking a moment to enjoy the clarity of being removed from your busy home life.&nbsp; At the Estates at Nuevo,&nbsp; we help you embrace that serenity and harness the revitalizing powers of paradise with two beautiful, well-appointed spas.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 1em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">About Us</h2>\r\n<h3 class=\"\">WE CARE ABOUT YOUR VACATION</h3>\r\n<div><span class=\"\">We are owners at the Estates at Nuevo Luxury Condo Suites at the Vidanta Resorts.&nbsp; We also own at the Grand Luxxe Vacation resort.&nbsp; There are several of the Vidanta resorts in Mexico but we love the Nuevo Vallarta site because it has the most to offer.&nbsp; &nbsp;</span></div>\r\n<p class=\"\">We work with other owners so we have a larger selection of rentals available. Some have already been secured with the resort and are ready to book.&nbsp; If not, then we can check on availability for your specific time frame.</p>\r\n<p class=\"\">Always happy to answer any questions you may have about the resort and ourselves.&nbsp;&nbsp;</p>\r\n<p class=\"\">Thanks!&nbsp; Linda and Frank Helman</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 align-column-center col-lg-6\"><span class=\"\">From the moment you arrive, you will sense the difference with personalized attention 24/7 and the exclusivity in private beach and pool areas that are intimate and tranquil. At Vidanta’s Estates at Nuevo Vacation Mexican resort, we invite you to explore the gardens and landscaping, enjoy the ocean breeze, the unparalleled panoramic view of the Pacific Ocean in a magnificent sunset, and the natural biodiversity of the Bandera’s bay. It is the kind of extraordinary Mexican vacation experience you want, and the kind of service you deserve and expect.</span></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 0em 3em 90px;\">\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-110\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"k8m4Uj5JJAQ\" data-imhwpb-asset-id=\"1111013\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-111\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"r1tjlHBnHzY\" data-imhwpb-asset-id=\"1111014\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-112\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"l5gzNmXTzIg\" data-imhwpb-asset-id=\"1111015\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-113\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"\" data-imhwpb-asset-id=\"1111016\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-114\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"sBtqOe23bd0\" data-imhwpb-asset-id=\"1111017\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-115\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"B8He4PJkMLg\" data-imhwpb-asset-id=\"1111018\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\'); background-size: cover; background-position: 50% 58%;\" data-imhwpb-asset-id=\"1111020\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding: 75px 2em 4em;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-key\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Vacation GOLF</h3>\r\n<p class=\"H1\" data-font-weight=\"600\">Two Designer Courses, a Par 3 Lighted Course, and a State-of-the Art Instructional Academy.&nbsp; Estates at Nuevo boasts the most comprehensive golf offerings in the area. PGA tournament in 2023 here!</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-star-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Special NEEDS</h3>\r\n<p class=\"\">Do you have a special need? Wheelchairs are available for rent and special golf carts will take you around the property.&nbsp; Need a baby crib or child care? We can handle that too.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container-fluid\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 2em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">Our Location</h2>\r\n<p class=\"\">Because we put the customer first, we always have free transportation from the airport to the resort and to your living suite.&nbsp;</p>\r\n<p class=\"\">Review the room details and let us know how we can help you have the best vacation possible.</p>\r\n\r\n<h3 class=\"\" style=\"color: #000000; font-weight: 400; font-size: 25px;\" data-font-weight=\"400\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address&nbsp;</h3>\r\n<p class=\"\" style=\"font-weight: 400; color: #000000;\" data-font-weight=\"400\">Blvd Riviera Nayarit #254, 63735 Nuevo Vallarta, Nay., Mexico</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 bg-box-flush col-lg-6\">\r\n<p class=\"\"><img class=\"bg-img alignnone wp-image-1806 size-medium\" style=\"background-color: var(--color-neutral); color: var(--color-neutral-text-contrast);\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico.jpg-2-300x210.jpg\" alt=\"Resort area showing proximity to airport and Puerto Vallarta\" width=\"300\" height=\"210\"><img class=\"bg-img alignnone wp-image-1810 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico-1.jpg-2-1-300x239.jpg\" alt=\"Close up of resort area\" width=\"300\" height=\"239\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','97-revision-v1','','','2022-04-08 19:38:54','2022-04-08 19:38:54','',97,'https://estatesatnuevo.com/?p=277',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (279,1,'2022-04-08 20:50:27','2022-04-08 20:50:27','<div class=\"color3-background-color color-3-text-contrast bg-background-color tmpl-portfolio-4 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 20px 0;\">\r\n<div class=\"col-md-8 col-xs-12 col-sm-6 align-column-bottom xs-text-center col-lg-8\">\r\n<h2 class=\"\" style=\"margin: 0px 0px 5px; font-size: 33px;\">estates at nuevo</h2>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6 align-column-bottom xs-text-center col-lg-4\">\r\n<p class=\"\" style=\"font-weight: 600;\" align=\"center\" data-font-weight=\"600\">Contact us to Book today</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 col-lg-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-309 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/41_0_400_300.43668122271_Vidanta-nuveo-vallarta-the-estates-pools.jpg\" alt=\"the-estates-pools\" width=\"400\" height=\"300\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 col-lg-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-307 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/58_0_400_300.38910505837_Vidanta-nuevo-vallarta-the-estates-rooms-gallery-4.jpg\" alt=\"the-estates-rooms-gallery\" width=\"400\" height=\"300\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 col-lg-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-306 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/58_0_400_300.38910505837_Vidanta-nuevo-vallarta-the-estates-rooms-gallery-3.jpg\" alt=\"the-estates-pool\" width=\"400\" height=\"300\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 col-lg-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-295 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/58_0_400_300.38910505837_vidanta-nuevovallarta-ataglance-gallery-11.jpg\" alt=\"estates-beachland\" width=\"400\" height=\"300\"></p>\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-303 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/58_0_400_300.38910505837_Vidanta-nuevo-vallarta-the-estates-rooms-gallery-1.jpg\" alt=\"the-estates-rooms\" width=\"400\" height=\"300\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 col-lg-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-289 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/58_0_400_300.38910505837_vidanta-nuevovallarta-ataglance-gallery-5.jpg\" alt=\"estates-beachland\" width=\"400\" height=\"300\"></p>\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-308 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/58_0_400_300.38910505837_Vidanta-nuevo-vallarta-the-estates-rooms-gallery-5.jpg\" alt=\"the-estates-pool\" width=\"400\" height=\"300\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 col-lg-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-294 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/58_0_400_300.38910505837_vidanta-nuevovallarta-ataglance-gallery-10.jpg\" alt=\"estates gondola\" width=\"400\" height=\"300\"></p>\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-293 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/58_0_400_300.38910505837_vidanta-nuevovallarta-ataglance-gallery-9.jpg\" alt=\"the-estates-rooms\" width=\"400\" height=\"300\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 20px 0;\">\r\n<div class=\"col-md-4 col-xs-6 col-sm-4 col-lg-4\"></div>\r\n<div class=\"col-md-4 col-xs-6 col-sm-4 col-lg-4\"></div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-4 col-lg-4\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\">\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Photos','','publish','closed','closed','','photos','','','2022-04-08 20:50:27','2022-04-08 20:50:27','',97,'https://estatesatnuevo.com/?page_id=279',0,'page','',0),(280,1,'2022-04-08 19:41:55','2022-04-08 19:41:55','<iframe title=\"City at Night\" width=\"780\" height=\"439\" src=\"https://www.youtube.com/embed/5LxGNTTxPis?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>','','','publish','closed','closed','','1f72b9b20df6dad278506c9cdf9fe828','','','2022-04-08 19:41:55','2022-04-08 19:41:55','',0,'https://estatesatnuevo.com/1f72b9b20df6dad278506c9cdf9fe828/',0,'oembed_cache','',0),(281,1,'2022-04-08 19:41:55','2022-04-08 19:41:55','<iframe title=\"City at Night\" width=\"391\" height=\"220\" src=\"https://www.youtube.com/embed/5LxGNTTxPis?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>','','','publish','closed','closed','','0c9cbe354d9dd68224aff14834faa928','','','2022-04-08 19:41:55','2022-04-08 19:41:55','',0,'https://estatesatnuevo.com/0c9cbe354d9dd68224aff14834faa928/',0,'oembed_cache','',0),(282,1,'2022-04-08 19:43:26','2022-04-08 19:43:26','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops8be761e31b1be7415d10f29d92705867','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw400h300fitcrops8be761e31b1be7415d10f29d92705867','','','2022-04-08 19:43:26','2022-04-08 19:43:26','',0,'https://estatesatnuevo.com/wp-content/uploads/2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops8be761e31b1be7415d10f29d92705867.jpg',0,'attachment','image/jpeg',0),(283,1,'2022-04-08 19:43:26','2022-04-08 19:43:26','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops0c8d5d7cde3dce627aebf57ce0964b18','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw400h300fitcrops0c8d5d7cde3dce627aebf57ce0964b18','','','2022-04-08 19:43:26','2022-04-08 19:43:26','',0,'https://estatesatnuevo.com/wp-content/uploads/2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops0c8d5d7cde3dce627aebf57ce0964b18.jpg',0,'attachment','image/jpeg',0),(284,1,'2022-04-08 19:43:27','2022-04-08 19:43:27','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropseae18dc38ce56770aaf6350d456ca424','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw400h300fitcropseae18dc38ce56770aaf6350d456ca424','','','2022-04-08 19:43:27','2022-04-08 19:43:27','',0,'https://estatesatnuevo.com/wp-content/uploads/2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropseae18dc38ce56770aaf6350d456ca424.jpg',0,'attachment','image/jpeg',0),(285,1,'2022-04-08 19:43:27','2022-04-08 19:43:27','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops58eef81affa92455386c8434135d8763','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw400h300fitcrops58eef81affa92455386c8434135d8763','','','2022-04-08 19:43:27','2022-04-08 19:43:27','',0,'https://estatesatnuevo.com/wp-content/uploads/2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops58eef81affa92455386c8434135d8763.jpg',0,'attachment','image/jpeg',0),(323,1,'2022-04-08 21:41:42','2022-04-08 21:41:42','','estatesatnuevo','','inherit','open','closed','','estatesatnuevo','','','2022-04-08 21:41:42','2022-04-08 21:41:42','',0,'https://estatesatnuevo.com/wp-content/uploads/2022/04/estatesatnuevo.jpg',0,'attachment','image/jpeg',0),(287,1,'2022-04-08 19:43:28','2022-04-08 19:43:28','','ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops36b84b4f6920a1b2036fbad18ff13d6c','','inherit','open','closed','','ixlibrb-0-3-5q80fmjpgcropentropycstinysrgbw400h300fitcrops36b84b4f6920a1b2036fbad18ff13d6c','','','2022-04-08 19:43:28','2022-04-08 19:43:28','',0,'https://estatesatnuevo.com/wp-content/uploads/2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops36b84b4f6920a1b2036fbad18ff13d6c.jpg',0,'attachment','image/jpeg',0),(288,1,'2022-04-08 19:49:05','2022-04-08 19:49:05','','vidanta-nuevovallarta-ataglance','','inherit','open','closed','','vidanta-nuevovallarta-ataglance-2','','','2022-04-08 19:49:05','2022-04-08 19:49:05','',279,'https://estatesatnuevo.com/wp-content/uploads/2022/04/vidanta-nuevovallarta-ataglance.jpg',0,'attachment','image/jpeg',0),(289,1,'2022-04-08 19:49:07','2022-04-08 19:49:07','','estates-beachland','','inherit','open','closed','','vidanta-nuevovallarta-ataglance-gallery-5','','','2022-04-08 20:39:25','2022-04-08 20:39:25','',279,'https://estatesatnuevo.com/wp-content/uploads/2022/04/vidanta-nuevovallarta-ataglance-gallery-5.jpg',0,'attachment','image/jpeg',0),(290,1,'2022-04-08 19:49:09','2022-04-08 19:49:09','','vidanta-nuevovallarta-ataglance-gallery-6','','inherit','open','closed','','vidanta-nuevovallarta-ataglance-gallery-6','','','2022-04-08 19:49:09','2022-04-08 19:49:09','',279,'https://estatesatnuevo.com/wp-content/uploads/2022/04/vidanta-nuevovallarta-ataglance-gallery-6.jpg',0,'attachment','image/jpeg',0),(291,1,'2022-04-08 19:49:11','2022-04-08 19:49:11','','vidanta-nuevovallarta-ataglance-gallery-7','','inherit','open','closed','','vidanta-nuevovallarta-ataglance-gallery-7','','','2022-04-08 19:49:11','2022-04-08 19:49:11','',279,'https://estatesatnuevo.com/wp-content/uploads/2022/04/vidanta-nuevovallarta-ataglance-gallery-7.jpg',0,'attachment','image/jpeg',0),(292,1,'2022-04-08 19:49:12','2022-04-08 19:49:12','','vidanta-nuevovallarta-ataglance-gallery-8','','inherit','open','closed','','vidanta-nuevovallarta-ataglance-gallery-8','','','2022-04-08 19:49:12','2022-04-08 19:49:12','',279,'https://estatesatnuevo.com/wp-content/uploads/2022/04/vidanta-nuevovallarta-ataglance-gallery-8.jpg',0,'attachment','image/jpeg',0),(293,1,'2022-04-08 19:49:14','2022-04-08 19:49:14','','the-estates-rooms','','inherit','open','closed','','vidanta-nuevovallarta-ataglance-gallery-9','','','2022-04-08 20:49:16','2022-04-08 20:49:16','',279,'https://estatesatnuevo.com/wp-content/uploads/2022/04/vidanta-nuevovallarta-ataglance-gallery-9.jpg',0,'attachment','image/jpeg',0),(294,1,'2022-04-08 19:49:15','2022-04-08 19:49:15','','estates gondola','','inherit','open','closed','','vidanta-nuevovallarta-ataglance-gallery-10','','','2022-04-08 20:40:07','2022-04-08 20:40:07','',279,'https://estatesatnuevo.com/wp-content/uploads/2022/04/vidanta-nuevovallarta-ataglance-gallery-10.jpg',0,'attachment','image/jpeg',0),(295,1,'2022-04-08 19:49:17','2022-04-08 19:49:17','','estates-beachland','','inherit','open','closed','','vidanta-nuevovallarta-ataglance-gallery-11','','','2022-04-08 20:38:19','2022-04-08 20:38:19','',279,'https://estatesatnuevo.com/wp-content/uploads/2022/04/vidanta-nuevovallarta-ataglance-gallery-11.jpg',0,'attachment','image/jpeg',0),(296,1,'2022-04-08 19:49:19','2022-04-08 19:49:19','','vidanta-nuevovallarta-ataglance-gallery-12','','inherit','open','closed','','vidanta-nuevovallarta-ataglance-gallery-12','','','2022-04-08 19:49:19','2022-04-08 19:49:19','',279,'https://estatesatnuevo.com/wp-content/uploads/2022/04/vidanta-nuevovallarta-ataglance-gallery-12.jpg',0,'attachment','image/jpeg',0),(297,1,'2022-04-08 19:49:20','2022-04-08 19:49:20','','vidanta-nuevovallarta-ataglance-gallery-13','','inherit','open','closed','','vidanta-nuevovallarta-ataglance-gallery-13','','','2022-04-08 19:49:20','2022-04-08 19:49:20','',279,'https://estatesatnuevo.com/wp-content/uploads/2022/04/vidanta-nuevovallarta-ataglance-gallery-13.jpg',0,'attachment','image/jpeg',0),(298,1,'2022-04-08 19:49:22','2022-04-08 19:49:22','','vidanta-nuevovallarta-ataglance-gallery-14','','inherit','open','closed','','vidanta-nuevovallarta-ataglance-gallery-14','','','2022-04-08 19:49:22','2022-04-08 19:49:22','',279,'https://estatesatnuevo.com/wp-content/uploads/2022/04/vidanta-nuevovallarta-ataglance-gallery-14.jpg',0,'attachment','image/jpeg',0),(299,1,'2022-04-08 19:49:24','2022-04-08 19:49:24','','estates at nuevo','','inherit','open','closed','','vidanta-nuevovallarta-ataglance-gallery-15','','','2022-04-10 19:27:41','2022-04-10 19:27:41','',279,'https://estatesatnuevo.com/wp-content/uploads/2022/04/vidanta-nuevovallarta-ataglance-gallery-15.jpg',0,'attachment','image/jpeg',0),(300,1,'2022-04-08 19:49:25','2022-04-08 19:49:25','','vidanta-nuevovallarta-ataglance-gallery-16','','inherit','open','closed','','vidanta-nuevovallarta-ataglance-gallery-16','','','2022-04-08 19:49:25','2022-04-08 19:49:25','',279,'https://estatesatnuevo.com/wp-content/uploads/2022/04/vidanta-nuevovallarta-ataglance-gallery-16.jpg',0,'attachment','image/jpeg',0),(301,1,'2022-04-08 19:49:27','2022-04-08 19:49:27','','vidanta-nuevovallarta-ataglance-gallery-17','','inherit','open','closed','','vidanta-nuevovallarta-ataglance-gallery-17','','','2022-04-08 19:49:27','2022-04-08 19:49:27','',279,'https://estatesatnuevo.com/wp-content/uploads/2022/04/vidanta-nuevovallarta-ataglance-gallery-17.jpg',0,'attachment','image/jpeg',0),(302,1,'2022-04-08 19:49:28','2022-04-08 19:49:28','','vidanta-nuevo-vallarta-grand-luxxe-accommodations-two-bedroom-suite-1','','inherit','open','closed','','vidanta-nuevo-vallarta-grand-luxxe-accommodations-two-bedroom-suite-1','','','2022-04-08 19:49:28','2022-04-08 19:49:28','',279,'https://estatesatnuevo.com/wp-content/uploads/2022/04/vidanta-nuevo-vallarta-grand-luxxe-accommodations-two-bedroom-suite-1.jpg',0,'attachment','image/jpeg',0),(303,1,'2022-04-08 19:49:30','2022-04-08 19:49:30','','the-estates-rooms','','inherit','open','closed','','vidanta-nuevo-vallarta-the-estates-rooms-gallery-1','','','2022-04-08 20:47:54','2022-04-08 20:47:54','',279,'https://estatesatnuevo.com/wp-content/uploads/2022/04/Vidanta-nuevo-vallarta-the-estates-rooms-gallery-1.jpg',0,'attachment','image/jpeg',0),(304,1,'2022-04-08 19:49:31','2022-04-08 19:49:31','','Vidanta-nuevo-vallarta-the-estates-rooms-gallery-2 (1)','','inherit','open','closed','','vidanta-nuevo-vallarta-the-estates-rooms-gallery-2-1','','','2022-04-08 19:49:31','2022-04-08 19:49:31','',279,'https://estatesatnuevo.com/wp-content/uploads/2022/04/Vidanta-nuevo-vallarta-the-estates-rooms-gallery-2-1.jpg',0,'attachment','image/jpeg',0),(305,1,'2022-04-08 19:49:33','2022-04-08 19:49:33','','Vidanta-nuevo-vallarta-the-estates-rooms-gallery-2','','inherit','open','closed','','vidanta-nuevo-vallarta-the-estates-rooms-gallery-2','','','2022-04-08 19:49:33','2022-04-08 19:49:33','',279,'https://estatesatnuevo.com/wp-content/uploads/2022/04/Vidanta-nuevo-vallarta-the-estates-rooms-gallery-2.jpg',0,'attachment','image/jpeg',0),(306,1,'2022-04-08 19:49:34','2022-04-08 19:49:34','','the-estates-pool','','inherit','open','closed','','vidanta-nuevo-vallarta-the-estates-rooms-gallery-3','','','2022-04-08 20:37:16','2022-04-08 20:37:16','',279,'https://estatesatnuevo.com/wp-content/uploads/2022/04/Vidanta-nuevo-vallarta-the-estates-rooms-gallery-3.jpg',0,'attachment','image/jpeg',0),(307,1,'2022-04-08 19:49:36','2022-04-08 19:49:36','','the-estates-rooms-gallery-4','','inherit','open','closed','','vidanta-nuevo-vallarta-the-estates-rooms-gallery-4','','','2022-04-08 20:36:18','2022-04-08 20:36:18','',279,'https://estatesatnuevo.com/wp-content/uploads/2022/04/Vidanta-nuevo-vallarta-the-estates-rooms-gallery-4.jpg',0,'attachment','image/jpeg',0),(308,1,'2022-04-08 19:49:37','2022-04-08 19:49:37','','the-estates-pool','','inherit','open','closed','','vidanta-nuevo-vallarta-the-estates-rooms-gallery-5','','','2022-04-08 20:48:40','2022-04-08 20:48:40','',279,'https://estatesatnuevo.com/wp-content/uploads/2022/04/Vidanta-nuevo-vallarta-the-estates-rooms-gallery-5.jpg',0,'attachment','image/jpeg',0),(309,1,'2022-04-08 19:49:38','2022-04-08 19:49:38','','the-estates-pools','','inherit','open','closed','','vidanta-nuveo-vallarta-the-estates-pools','','','2022-04-08 20:35:17','2022-04-08 20:35:17','',279,'https://estatesatnuevo.com/wp-content/uploads/2022/04/Vidanta-nuveo-vallarta-the-estates-pools.jpg',0,'attachment','image/jpeg',0),(310,1,'2022-04-08 20:50:27','2022-04-08 20:50:27','<div class=\"color3-background-color color-3-text-contrast bg-background-color tmpl-portfolio-4 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 20px 0;\">\r\n<div class=\"col-md-8 col-xs-12 col-sm-6 align-column-bottom xs-text-center col-lg-8\">\r\n<h2 class=\"\" style=\"margin: 0px 0px 5px; font-size: 33px;\">estates at nuevo</h2>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6 align-column-bottom xs-text-center col-lg-4\">\r\n<p class=\"\" style=\"font-weight: 600;\" align=\"center\" data-font-weight=\"600\">Contact us to Book today</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 col-lg-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-309 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/41_0_400_300.43668122271_Vidanta-nuveo-vallarta-the-estates-pools.jpg\" alt=\"the-estates-pools\" width=\"400\" height=\"300\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 col-lg-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-307 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/58_0_400_300.38910505837_Vidanta-nuevo-vallarta-the-estates-rooms-gallery-4.jpg\" alt=\"the-estates-rooms-gallery\" width=\"400\" height=\"300\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 col-lg-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-306 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/58_0_400_300.38910505837_Vidanta-nuevo-vallarta-the-estates-rooms-gallery-3.jpg\" alt=\"the-estates-pool\" width=\"400\" height=\"300\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 col-lg-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-295 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/58_0_400_300.38910505837_vidanta-nuevovallarta-ataglance-gallery-11.jpg\" alt=\"estates-beachland\" width=\"400\" height=\"300\"></p>\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-303 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/58_0_400_300.38910505837_Vidanta-nuevo-vallarta-the-estates-rooms-gallery-1.jpg\" alt=\"the-estates-rooms\" width=\"400\" height=\"300\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 col-lg-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-289 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/58_0_400_300.38910505837_vidanta-nuevovallarta-ataglance-gallery-5.jpg\" alt=\"estates-beachland\" width=\"400\" height=\"300\"></p>\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-308 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/58_0_400_300.38910505837_Vidanta-nuevo-vallarta-the-estates-rooms-gallery-5.jpg\" alt=\"the-estates-pool\" width=\"400\" height=\"300\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-4 col-sm-4 col-lg-4\">\r\n<div class=\"bg-box-cover bg-box-flush bg-box\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-294 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/58_0_400_300.38910505837_vidanta-nuevovallarta-ataglance-gallery-10.jpg\" alt=\"estates gondola\" width=\"400\" height=\"300\"></p>\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-293 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/58_0_400_300.38910505837_vidanta-nuevovallarta-ataglance-gallery-9.jpg\" alt=\"the-estates-rooms\" width=\"400\" height=\"300\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 20px 0;\">\r\n<div class=\"col-md-4 col-xs-6 col-sm-4 col-lg-4\"></div>\r\n<div class=\"col-md-4 col-xs-6 col-sm-4 col-lg-4\"></div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-4 col-lg-4\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\">\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Photos','','inherit','closed','closed','','279-revision-v1','','','2022-04-08 20:50:27','2022-04-08 20:50:27','',279,'https://estatesatnuevo.com/?p=310',0,'revision','',0),(311,1,'2022-04-08 21:12:12','2022-04-08 20:50:27',' ','','','publish','closed','closed','','311','','','2022-04-08 21:12:12','2022-04-08 21:12:12','',97,'https://estatesatnuevo.com/311/',5,'nav_menu_item','',0),(324,1,'2022-04-08 21:45:14','2022-04-08 21:45:14','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"color: #ffffff; background-image: url(\'https://estatesatnuevo.com/wp-content/uploads/2022/04/estatesatnuevo.jpg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1111019\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/estatesatnuevo.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 80px; background-image: url(\'\\\'https://estatesatnuevo.jpg\'); background-size: cover; background-position: 50% 50%;\" data-image-url=\"https://source.unsplash.com/V63oM8OPJSo/1920x1080\">\r\n<div class=\"col-md-2 col-sm-2 col-xs-12 col-lg-2\"></div>\r\n<div class=\"col-md-8 col-sm-10 col-xs-12 align-column-center col-lg-8\">\r\n<h2 class=\"intro__title\" style=\"font-weight: 600; font-size: 36px; color: #ffffff;\" align=\"center\" data-font-weight=\"600\">Ultimate Luxury Meets Ultimate Nature</h2>\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-12 col-lg-2\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">property photos</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>The Estates at Nuevo&nbsp; Kick back in a remote jungle oasis by your accommodations or enjoy a gorgeous exclusive pool and lounge area in Beachland. Ride the exclusive gondola, play golf, luxuriate in a spa setting or relax by the pool in your private sanctuary. </span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/photos\">See More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">DINING</h3>\r\n<p class=\"\"><span>With over 40 restaurants and lounges to choose from, Estates at Nuevo gives guests the opportunity to dine however they like. Options range from high-end eateries to casual restaurants to authentic Mexican spots, and even a gourmet market filled with offerings from all over the world. One thing is for sure—an amazing culinary experience is always just a meal away.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/dining\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">spa</h3>\r\n<header class=\"intro__header\"></header>\r\n<div class=\"intro__lead\">\r\n<p class=\"intro__text\">Vacation is about restful and renewing relaxation. It’s about indulging in peace and taking a moment to enjoy the clarity of being removed from your busy home life.&nbsp; At the Estates at Nuevo,&nbsp; we help you embrace that serenity and harness the revitalizing powers of paradise with two beautiful, well-appointed spas.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 1em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">About Us</h2>\r\n<h3 class=\"\">WE CARE ABOUT YOUR VACATION</h3>\r\n<div><span class=\"\">We are owners at the Estates at Nuevo Luxury Condo Suites at the Vidanta Resorts.&nbsp; We also own at the Grand Luxxe Vacation resort.&nbsp; There are several of the Vidanta resorts in Mexico but we love the Nuevo Vallarta site because it has the most to offer.&nbsp; &nbsp;</span></div>\r\n<p class=\"\">We work with other owners so we have a larger selection of rentals available. Some have already been secured with the resort and are ready to book.&nbsp; If not, then we can check on availability for your specific time frame.</p>\r\n<p class=\"\">Always happy to answer any questions you may have about the resort and ourselves.&nbsp;&nbsp;</p>\r\n<p class=\"\">Thanks!&nbsp; Linda and Frank Helman</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 align-column-center col-lg-6\"><span class=\"\">From the moment you arrive, you will sense the difference with personalized attention 24/7 and the exclusivity in private beach and pool areas that are intimate and tranquil. At Vidanta’s Estates at Nuevo Vacation Mexican resort, we invite you to explore the gardens and landscaping, enjoy the ocean breeze, the unparalleled panoramic view of the Pacific Ocean in a magnificent sunset, and the natural biodiversity of the Bandera’s bay. It is the kind of extraordinary Mexican vacation experience you want, and the kind of service you deserve and expect.</span></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 0em 3em 90px;\">\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-110\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"k8m4Uj5JJAQ\" data-imhwpb-asset-id=\"1111013\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-111\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"r1tjlHBnHzY\" data-imhwpb-asset-id=\"1111014\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-112\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"l5gzNmXTzIg\" data-imhwpb-asset-id=\"1111015\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-113\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"\" data-imhwpb-asset-id=\"1111016\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-114\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"sBtqOe23bd0\" data-imhwpb-asset-id=\"1111017\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-115\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"B8He4PJkMLg\" data-imhwpb-asset-id=\"1111018\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\'); background-size: cover; background-position: 50% 58%;\" data-imhwpb-asset-id=\"1111020\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding: 75px 2em 4em;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-key\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Vacation GOLF</h3>\r\n<p class=\"H1\" data-font-weight=\"600\">Two Designer Courses, a Par 3 Lighted Course, and a State-of-the Art Instructional Academy.&nbsp; Estates at Nuevo boasts the most comprehensive golf offerings in the area. PGA tournament in 2023 here!</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-star-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Special NEEDS</h3>\r\n<p class=\"\">Do you have a special need? Wheelchairs are available for rent and special golf carts will take you around the property.&nbsp; Need a baby crib or child care? We can handle that too.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container-fluid\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 2em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">Our Location</h2>\r\n<p class=\"\">Because we put the customer first, we always have free transportation from the airport to the resort and to your living suite.&nbsp;</p>\r\n<p class=\"\">Review the room details and let us know how we can help you have the best vacation possible.</p>\r\n\r\n<h3 class=\"\" style=\"color: #000000; font-weight: 400; font-size: 25px;\" data-font-weight=\"400\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address&nbsp;</h3>\r\n<p class=\"\" style=\"font-weight: 400; color: #000000;\" data-font-weight=\"400\">Blvd Riviera Nayarit #254, 63735 Nuevo Vallarta, Nay., Mexico</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 bg-box-flush col-lg-6\">\r\n<p class=\"\"><img class=\"bg-img alignnone wp-image-1806 size-medium\" style=\"background-color: var(--color-neutral); color: var(--color-neutral-text-contrast);\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico.jpg-2-300x210.jpg\" alt=\"Resort area showing proximity to airport and Puerto Vallarta\" width=\"300\" height=\"210\"><img class=\"bg-img alignnone wp-image-1810 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico-1.jpg-2-1-300x239.jpg\" alt=\"Close up of resort area\" width=\"300\" height=\"239\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','97-revision-v1','','','2022-04-08 21:45:14','2022-04-08 21:45:14','',97,'https://estatesatnuevo.com/?p=324',0,'revision','',0),(322,1,'2022-04-08 21:33:11','2022-04-08 21:33:11','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"color: #ffffff; background-image: url(\'https://estatesatnuevo.com/wp-content/uploads/2022/04/the-estates-3-e1649452665999.jpg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1111019\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/the-estates-3-e1649452665999.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 80px; background-image: url(\'https://source.unsplash.com/V63oM8OPJSo/1920x1080\'); background-size: cover; background-position: 50% 50%;\" data-image-url=\"https://source.unsplash.com/V63oM8OPJSo/1920x1080\">\r\n<div class=\"col-md-2 col-sm-2 col-xs-12 col-lg-2\"></div>\r\n<div class=\"col-md-8 col-sm-10 col-xs-12 align-column-center col-lg-8\">\r\n<h2 class=\"intro__title\" style=\"font-weight: 600; font-size: 36px; color: #ffffff;\" align=\"center\" data-font-weight=\"600\">Ultimate Luxury Meets Ultimate Nature</h2>\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-12 col-lg-2\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">RESORT INFO</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>The Estates at Nuevo&nbsp; Luxury Vacation Condos are the pinnacle of luxury and service within our Vidanta resort group. Nestled between the Pacific Ocean and the Sierra Madre Mountains, Estates at Nuevo is a Mexican tropical beach paradise vacation that offers the ultimate Mexican resort vacation. As the biggest of the Vidanta destinations, it has been carefully cultivated to provide a high-end experience full of options:&nbsp; luxury vacation condos,&nbsp; restaurants and lounges&nbsp; golf courses, a shopping plaza, two indulgent spas, beautiful beaches, and countless pools.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/info\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">SUITES</h3>\r\n<p class=\"\"><span>Discover the best that luxury vacationing has to offer at The Estates, a haven of high-end comfort sequestered in the sublime jungle landscape at Vidanta Nuevo Vallarta.</span></p>\r\n<p class=\"\"><span>From the breathtaking One Bedroom to the jaw-dropping Four Bedroom, The Estates at Vidanta Nuevo Vallarta showcases exquisite spaces that are redefining modern luxury.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-1-bedroom\">1 Bedroom</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-2-bedroom\">2 Bedrooms</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-3-bedroom\">3 Bedrooms</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-4-bedroom\">4 Bedrooms</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">ACTIVITIES</h3>\r\n<p class=\"\"><span>The Estates Vacation offers a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, a number of pool &amp; poolside activities including water polo, water volleyball, aqua aerobics, Paddle Board stretching class, Salsa lessons, Spanish class, arts &amp; crafts, Guacamole making class. Kids Club, Beach, Tours, and Night time Shows.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/activities\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">property photos</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>The Estates at Nuevo&nbsp; Kick back in a remote jungle oasis by your accommodations or enjoy a gorgeous exclusive pool and lounge area in Beachland. Ride the exclusive gondola, play golf, luxuriate in a spa setting or relax by the pool in your private sanctuary. </span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/photos\">See More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">DINING</h3>\r\n<p class=\"\"><span>With over 40 restaurants and lounges to choose from, Estates at Nuevo gives guests the opportunity to dine however they like. Options range from high-end eateries to casual restaurants to authentic Mexican spots, and even a gourmet market filled with offerings from all over the world. One thing is for sure—an amazing culinary experience is always just a meal away.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/dining\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">spa</h3>\r\n<header class=\"intro__header\"></header>\r\n<div class=\"intro__lead\">\r\n<p class=\"intro__text\">Vacation is about restful and renewing relaxation. It’s about indulging in peace and taking a moment to enjoy the clarity of being removed from your busy home life.&nbsp; At the Estates at Nuevo,&nbsp; we help you embrace that serenity and harness the revitalizing powers of paradise with two beautiful, well-appointed spas.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 1em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">About Us</h2>\r\n<h3 class=\"\">WE CARE ABOUT YOUR VACATION</h3>\r\n<div><span class=\"\">We are owners at the Estates at Nuevo Luxury Condo Suites at the Vidanta Resorts.&nbsp; We also own at the Grand Luxxe Vacation resort.&nbsp; There are several of the Vidanta resorts in Mexico but we love the Nuevo Vallarta site because it has the most to offer.&nbsp; &nbsp;</span></div>\r\n<p class=\"\">We work with other owners so we have a larger selection of rentals available. Some have already been secured with the resort and are ready to book.&nbsp; If not, then we can check on availability for your specific time frame.</p>\r\n<p class=\"\">Always happy to answer any questions you may have about the resort and ourselves.&nbsp;&nbsp;</p>\r\n<p class=\"\">Thanks!&nbsp; Linda and Frank Helman</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 align-column-center col-lg-6\"><span class=\"\">From the moment you arrive, you will sense the difference with personalized attention 24/7 and the exclusivity in private beach and pool areas that are intimate and tranquil. At Vidanta’s Estates at Nuevo Vacation Mexican resort, we invite you to explore the gardens and landscaping, enjoy the ocean breeze, the unparalleled panoramic view of the Pacific Ocean in a magnificent sunset, and the natural biodiversity of the Bandera’s bay. It is the kind of extraordinary Mexican vacation experience you want, and the kind of service you deserve and expect.</span></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 0em 3em 90px;\">\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-110\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"k8m4Uj5JJAQ\" data-imhwpb-asset-id=\"1111013\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-111\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"r1tjlHBnHzY\" data-imhwpb-asset-id=\"1111014\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-112\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"l5gzNmXTzIg\" data-imhwpb-asset-id=\"1111015\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-113\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"\" data-imhwpb-asset-id=\"1111016\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-114\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"sBtqOe23bd0\" data-imhwpb-asset-id=\"1111017\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-115\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"B8He4PJkMLg\" data-imhwpb-asset-id=\"1111018\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\'); background-size: cover; background-position: 50% 58%;\" data-imhwpb-asset-id=\"1111020\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding: 75px 2em 4em;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-key\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Vacation GOLF</h3>\r\n<p class=\"H1\" data-font-weight=\"600\">Two Designer Courses, a Par 3 Lighted Course, and a State-of-the Art Instructional Academy.&nbsp; Estates at Nuevo boasts the most comprehensive golf offerings in the area. PGA tournament in 2023 here!</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-star-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Special NEEDS</h3>\r\n<p class=\"\">Do you have a special need? Wheelchairs are available for rent and special golf carts will take you around the property.&nbsp; Need a baby crib or child care? We can handle that too.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container-fluid\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 2em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">Our Location</h2>\r\n<p class=\"\">Because we put the customer first, we always have free transportation from the airport to the resort and to your living suite.&nbsp;</p>\r\n<p class=\"\">Review the room details and let us know how we can help you have the best vacation possible.</p>\r\n\r\n<h3 class=\"\" style=\"color: #000000; font-weight: 400; font-size: 25px;\" data-font-weight=\"400\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address&nbsp;</h3>\r\n<p class=\"\" style=\"font-weight: 400; color: #000000;\" data-font-weight=\"400\">Blvd Riviera Nayarit #254, 63735 Nuevo Vallarta, Nay., Mexico</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 bg-box-flush col-lg-6\">\r\n<p class=\"\"><img class=\"bg-img alignnone wp-image-1806 size-medium\" style=\"background-color: var(--color-neutral); color: var(--color-neutral-text-contrast);\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico.jpg-2-300x210.jpg\" alt=\"Resort area showing proximity to airport and Puerto Vallarta\" width=\"300\" height=\"210\"><img class=\"bg-img alignnone wp-image-1810 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico-1.jpg-2-1-300x239.jpg\" alt=\"Close up of resort area\" width=\"300\" height=\"239\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','97-revision-v1','','','2022-04-08 21:33:11','2022-04-08 21:33:11','',97,'https://estatesatnuevo.com/?p=322',0,'revision','',0),(313,1,'2022-04-08 21:12:12','2022-04-08 21:12:12','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-7 col-xs-12 col-sm-12 col-lg-7\">\r\n<h3 class=\"color3-color\" style=\"font-family: Roboto; font-weight: 600; font-style: normal; font-size: 25px; text-align: center;\" data-font-family=\"Roboto\" data-font-weight=\"600\" data-font-style=\"normal\">The Estates One Bedroom</h3>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">This stunning space features a gourmet kitchen with dining space, a bedroom, two bathrooms, and a large private terrace.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-1-bedroom\">Room Details</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-5 col-xs-12 col-sm-12 col-lg-5\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-380 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/Suites1-4-1-300x184.jpg\" alt=\"Suites1 Bedroom\" width=\"300\" height=\"184\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 12px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-5 text-center col-xs-12 col-lg-6\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-371 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/11_0_300_199.2277992278_estates-2bedsuite.jpg\" alt=\"\" width=\"300\" height=\"199\"></p>\r\n<p class=\"mod-img\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-7 col-xs-12 col-lg-6\">\r\n<h2 class=\"color3-color\" style=\"font-family: Roboto; font-weight: 600; font-size: 25px; text-align: center;\" data-font-family=\"Roboto\" data-font-weight=\"600\" data-font-style=\"\">Estates Two Bedroom</h2>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">This amazing space features a gourmet kitchen with dining space, two bedrooms, three bathrooms, a private terrace, and large private plunge pool.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-2-bedroom\">Room Details</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 10px;\">\r\n<div class=\"col-lg-12 col-md-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-7 col-xs-12 col-sm-12 col-lg-7\">\r\n<h3 class=\"color3-color\" style=\"font-family: Roboto; font-weight: 600; font-style: normal; font-size: 25px; text-align: center;\" data-font-family=\"Roboto\" data-font-weight=\"600\" data-font-style=\"normal\">The Estates three Bedroom</h3>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\"><span>This luxurious space features a gourmet kitchen with dining space, three bedrooms, five bathrooms, a private terrace, and large private plunge pool.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-3-bedroom\">Room Details</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-5 col-xs-12 col-sm-12 col-lg-5\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-207 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3dining-1-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 10px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-5 text-center col-xs-12 col-lg-6\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-304 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/Vidanta-nuevo-vallarta-the-estates-rooms-gallery-2-1-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-7 col-xs-12 col-lg-6\">\r\n<h2 class=\"color3-color\" style=\"font-family: Roboto; font-weight: 600; font-size: 25px; text-align: center;\" data-font-family=\"Roboto\" data-font-weight=\"600\" data-font-style=\"\">Estates four Bedroom</h2>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\"><span>This jaw-dropping lofted, double-level space features a spectacular kitchen and dining area, three bedrooms, five bathrooms, a private terrace that runs the perimeter of the unit and a large outdoor plunge pool.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-4-bedroom\">Room Details</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Suites','','publish','closed','closed','','suites','','','2022-04-13 22:47:47','2022-04-13 22:47:47','',97,'https://estatesatnuevo.com/?page_id=313',0,'page','',0),(316,1,'2022-04-08 21:12:12','2022-04-08 21:12:12','','Suites','','inherit','closed','closed','','313-revision-v1','','','2022-04-08 21:12:12','2022-04-08 21:12:12','',313,'https://estatesatnuevo.com/?p=316',0,'revision','',0),(318,1,'2022-04-08 21:12:12','2022-04-08 21:12:12',' ','','','publish','closed','closed','','318','','','2022-04-08 21:12:12','2022-04-08 21:12:12','',0,'https://estatesatnuevo.com/318/',3,'nav_menu_item','',0),(320,1,'2022-04-08 21:17:03','2022-04-08 21:17:03','','the-estates-3','','inherit','open','closed','','the-estates-3','','','2022-04-08 21:17:03','2022-04-08 21:17:03','',0,'https://estatesatnuevo.com/wp-content/uploads/2022/04/the-estates-3.jpg',0,'attachment','image/jpeg',0),(326,1,'2022-04-09 20:07:55','2022-04-09 20:07:55','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"color: #ffffff; background-image: url(\'https://estatesatnuevo.com/wp-content/uploads/2022/04/estatesatnuevo.jpg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1111019\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/estatesatnuevo.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 80px; background-image: url(\'\\\'https://estatesatnuevo.jpg\'); background-size: cover; background-position: 50% 50%;\" data-image-url=\"https://source.unsplash.com/V63oM8OPJSo/1920x1080\">\r\n<div class=\"col-md-2 col-sm-2 col-xs-12 col-lg-2\"></div>\r\n<div class=\"col-md-8 col-sm-10 col-xs-12 align-column-center col-lg-8\">\r\n<h2 class=\"intro__title\" style=\"font-weight: 600; font-size: 36px; color: #ffffff;\" align=\"center\" data-font-weight=\"600\">Ultimate Luxury Meets Ultimate Nature</h2>\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-12 col-lg-2\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">INFORMATION</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>Named as one of the Top Hotels in Mexico and Top Hotels in the World by Travel + Leisure\'s World\'s Best Awards, Vidanta Nuevo Vallarta offers the ultimate resort vacation. This expansive destination has been carefully curated to provide a high-end experience full of options, including endless restaurants and lounges, three golf courses and a golf academy, a shopping plaza, and entertainment plaza, two indulgent spas, countless pools, and the all-new Beachland.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/info\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">SUITES</h3>\r\n<p class=\"\"><span>With over 40 restaurants and lounges to choose from, Estates at Nuevo gives guests the opportunity to dine however they like. Options range from high-end eateries to casual restaurants to authentic Mexican spots, and even a gourmet market filled with offerings from all over the world. One thing is for sure—an amazing culinary experience is always just a meal away.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/\">1 Bedroom</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/dining\">2 Bedrooms</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/dining\">3 Bedrooms</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/dining\">4 Bedrooms</a></p>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">ACTIVITIES</h3>\r\n<header class=\"intro__header\"></header>\r\n<div class=\"intro__lead\">\r\n<p class=\"boxcard__text\">It’s your vacation, so why not spend it doing the types of things you love to do? At Vidanta Nuevo Vallarta, you’ll find a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, all run by our amazing activities team, the Joy Squad.</p>\r\n<p class=\"boxcard__text\">Don’t forget to download the activities calendar and check out your resort hotel to see what activities are happening when!</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">property photos</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>The Estates at Nuevo&nbsp; Kick back in a remote jungle oasis by your accommodations or enjoy a gorgeous exclusive pool and lounge area in Beachland. Ride the exclusive gondola, play golf, luxuriate in a spa setting or relax by the pool in your private sanctuary. </span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/photos\">See More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">DINING</h3>\r\n<p class=\"\"><span>With over 40 restaurants and lounges to choose from, Estates at Nuevo gives guests the opportunity to dine however they like. Options range from high-end eateries to casual restaurants to authentic Mexican spots, and even a gourmet market filled with offerings from all over the world. One thing is for sure—an amazing culinary experience is always just a meal away.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/dining\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">spa</h3>\r\n<header class=\"intro__header\"></header>\r\n<div class=\"intro__lead\">\r\n<p class=\"intro__text\">Vacation is about restful and renewing relaxation. It’s about indulging in peace and taking a moment to enjoy the clarity of being removed from your busy home life.&nbsp; At the Estates at Nuevo,&nbsp; we help you embrace that serenity and harness the revitalizing powers of paradise with two beautiful, well-appointed spas.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 1em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">About Us</h2>\r\n<h3 class=\"\">WE CARE ABOUT YOUR VACATION</h3>\r\n<div><span class=\"\">We are owners at the Estates at Nuevo Luxury Condo Suites at the Vidanta Resorts.&nbsp; We also own at the Grand Luxxe Vacation resort.&nbsp; There are several of the Vidanta resorts in Mexico but we love the Nuevo Vallarta site because it has the most to offer.&nbsp; &nbsp;</span></div>\r\n<p class=\"\">We work with other owners so we have a larger selection of rentals available. Some have already been secured with the resort and are ready to book.&nbsp; If not, then we can check on availability for your specific time frame.</p>\r\n<p class=\"\">Always happy to answer any questions you may have about the resort and ourselves.&nbsp;&nbsp;</p>\r\n<p class=\"\">Thanks!&nbsp; Linda and Frank Helman</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 align-column-center col-lg-6\"><span class=\"\">From the moment you arrive, you will sense the difference with personalized attention 24/7 and the exclusivity in private beach and pool areas that are intimate and tranquil. At Vidanta’s Estates at Nuevo Vacation Mexican resort, we invite you to explore the gardens and landscaping, enjoy the ocean breeze, the unparalleled panoramic view of the Pacific Ocean in a magnificent sunset, and the natural biodiversity of the Bandera’s bay. It is the kind of extraordinary Mexican vacation experience you want, and the kind of service you deserve and expect.</span></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 0em 3em 90px;\">\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-110\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"k8m4Uj5JJAQ\" data-imhwpb-asset-id=\"1111013\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-111\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"r1tjlHBnHzY\" data-imhwpb-asset-id=\"1111014\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-112\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"l5gzNmXTzIg\" data-imhwpb-asset-id=\"1111015\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-113\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"\" data-imhwpb-asset-id=\"1111016\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-114\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"sBtqOe23bd0\" data-imhwpb-asset-id=\"1111017\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-115\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"B8He4PJkMLg\" data-imhwpb-asset-id=\"1111018\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\'); background-size: cover; background-position: 50% 58%;\" data-imhwpb-asset-id=\"1111020\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding: 75px 2em 4em;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-key\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Vacation GOLF</h3>\r\n<p class=\"H1\" data-font-weight=\"600\">Two Designer Courses, a Par 3 Lighted Course, and a State-of-the Art Instructional Academy.&nbsp; Estates at Nuevo boasts the most comprehensive golf offerings in the area. PGA tournament in 2023 here!</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-star-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Special NEEDS</h3>\r\n<p class=\"\">Do you have a special need? Wheelchairs are available for rent and special golf carts will take you around the property.&nbsp; Need a baby crib or child care? We can handle that too.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container-fluid\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 2em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">Our Location</h2>\r\n<p class=\"\">Because we put the customer first, we always have free transportation from the airport to the resort and to your living suite.&nbsp;</p>\r\n<p class=\"\">Review the room details and let us know how we can help you have the best vacation possible.</p>\r\n\r\n<h3 class=\"\" style=\"color: #000000; font-weight: 400; font-size: 25px;\" data-font-weight=\"400\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address&nbsp;</h3>\r\n<p class=\"\" style=\"font-weight: 400; color: #000000;\" data-font-weight=\"400\">Blvd Riviera Nayarit #254, 63735 Nuevo Vallarta, Nay., Mexico</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 bg-box-flush col-lg-6\">\r\n<p class=\"\"><img class=\"bg-img alignnone wp-image-1806 size-medium\" style=\"background-color: var(--color-neutral); color: var(--color-neutral-text-contrast);\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico.jpg-2-300x210.jpg\" alt=\"Resort area showing proximity to airport and Puerto Vallarta\" width=\"300\" height=\"210\"><img class=\"bg-img alignnone wp-image-1810 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico-1.jpg-2-1-300x239.jpg\" alt=\"Close up of resort area\" width=\"300\" height=\"239\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','97-revision-v1','','','2022-04-09 20:07:55','2022-04-09 20:07:55','',97,'https://estatesatnuevo.com/?p=326',0,'revision','',0),(336,1,'2022-04-09 20:40:34','2022-04-09 20:40:34','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"color: #ffffff; background-image: url(\'https://estatesatnuevo.com/wp-content/uploads/2022/04/estatesatnuevo.jpg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1111019\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/estatesatnuevo.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 80px; background-image: url(\'\\\'https://estatesatnuevo.jpg\'); background-size: cover; background-position: 50% 50%; padding-bottom: 0px;\" data-image-url=\"https://source.unsplash.com/V63oM8OPJSo/1920x1080\">\r\n<div class=\"col-md-2 col-sm-2 col-xs-12 col-lg-2\"></div>\r\n<div class=\"col-md-8 col-sm-10 col-xs-12 align-column-center col-lg-8\"></div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-12 col-lg-2\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<h2 class=\"intro__title\" style=\"font-weight: 600; font-size: 36px; color: #ffffff;\" align=\"center\" data-font-weight=\"600\">Ultimate Luxury Meets Ultimate Nature</h2>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">INFORMATION</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>Named as one of the Top Hotels in Mexico and Top Hotels in the World by Travel + Leisure\'s World\'s Best Awards, Vidanta Nuevo Vallarta offers the ultimate resort vacation. This expansive destination has been carefully curated to provide a high-end experience full of options, including endless restaurants and lounges, three golf courses and a golf academy, a shopping plaza, and entertainment plaza, two indulgent spas, countless pools, and the all-new Beachland.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/info\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">SUITES</h3>\r\n<p class=\"\"><span>Discover the best that luxury vacationing has to offer at The Estates at Nuevo, a haven of high-end comfort sequestered in the sublime jungle landscape at Vidanta Nuevo Vallarta\'s 5-star resort.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-1-bedroom\">1 Bedroom</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-2-bedroom\">2 Bedrooms</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-3-bedroom\">3 Bedrooms</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-4-bedroom\">4 Bedrooms</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">ACTIVITIES</h3>\r\n<header class=\"intro__header\"></header>\r\n<div class=\"intro__lead\">\r\n<p class=\"boxcard__text\">It’s your vacation, so why not spend it doing the types of things you love to do? At Estates at Nuevo, you’ll find a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, all run by our amazing activities team, the Joy Squad.</p>\r\n<p class=\"boxcard__text\">Don’t forget to download the activities calendar and check out your resort hotel to see what activities are happening when!</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/activities\">Learn more</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">property photos</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>At the Estates at Nuevo you can kick back in a remote jungle oasis by your accommodations or enjoy a gorgeous exclusive pool and lounge area in Beachland. Ride the exclusive gondola, play golf, luxuriate in a spa setting or relax by the pool in your private sanctuary. </span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/photos\">See More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">DINING</h3>\r\n<p class=\"\"><span>With over 40 restaurants and lounges to choose from, Estates at Nuevo gives guests the opportunity to dine however they like. Options range from high-end eateries to casual restaurants to authentic Mexican spots, and even a gourmet market filled with offerings from all over the world. One thing is for sure—an amazing culinary experience is always just a meal away.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/dining\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">GOLF AND spa</h3>\r\n<header class=\"intro__header\"></header>\r\n<div class=\"intro__lead\">\r\n<p class=\"intro__text\"><span>With two of the region’s premier courses—The Nayar Course and the Norman Signature Course—plus a 10-hole, par-3 The Lakes Course, a Golf Academy, a beautiful new restaurant, and the longest golf cart suspension bridge in the world, there really is no vacation getaway for golfers that compares to Estates at Nuevo.</span></p>\r\n<p class=\"intro__text\"><span>Vacation is about restful and renewing relaxation. It’s about indulging in peace and taking a moment to enjoy the clarity of being removed from your busy home life. At Estates at Nuevo we help you embrace that serenity and harness the revitalizing powers of paradise with two beautiful, well-appointed spas.</span></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 1em;\">\r\n<div class=\"\">\r\n<div><span class=\"\">We are owners at the Estates at Nuevo Luxury Condo Suites at the Vidanta Resorts.&nbsp; We also own at the Grand Luxxe Vacation resort.&nbsp; There are several of the Vidanta resorts in Mexico but we love the Nuevo Vallarta site because it has the most to offer.&nbsp; &nbsp;</span></div>\r\n<p class=\"\">We work with other owners so we have a larger selection of rentals available. Some have already been secured with the resort and are ready to book.&nbsp; If not, then we can check on availability for your specific time frame.</p>\r\n<p class=\"\">Always happy to answer any questions you may have about the resort and ourselves.&nbsp;&nbsp;</p>\r\n<p class=\"\">Thanks!&nbsp; Linda and Frank Helman</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 align-column-center col-lg-6\"><span class=\"\">From the moment you arrive, you will sense the difference with personalized attention 24/7 and the exclusivity in private beach and pool areas that are intimate and tranquil. At Vidanta’s Estates at Nuevo Vacation Mexican resort, we invite you to explore the gardens and landscaping, enjoy the ocean breeze, the unparalleled panoramic view of the Pacific Ocean in a magnificent sunset, and the natural biodiversity of the Bandera’s bay. It is the kind of extraordinary Mexican vacation experience you want, and the kind of service you deserve and expect.</span></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 0em 3em 90px;\">\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-110\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"k8m4Uj5JJAQ\" data-imhwpb-asset-id=\"1111013\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-111\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"r1tjlHBnHzY\" data-imhwpb-asset-id=\"1111014\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-112\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"l5gzNmXTzIg\" data-imhwpb-asset-id=\"1111015\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-113\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"\" data-imhwpb-asset-id=\"1111016\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-114\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"sBtqOe23bd0\" data-imhwpb-asset-id=\"1111017\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-115\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"B8He4PJkMLg\" data-imhwpb-asset-id=\"1111018\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\'); background-size: cover; background-position: 50% 58%;\" data-imhwpb-asset-id=\"1111020\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\">\r\n<div class=\"container-fluid\"></div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container-fluid\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 2em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">Our Location</h2>\r\n<p class=\"\">Because we put the customer first, we always have free transportation from the airport to the resort and to your living suite.&nbsp;</p>\r\n<p class=\"\">Review the room details and let us know how we can help you have the best vacation possible.</p>\r\n\r\n<h3 class=\"\" style=\"color: #000000; font-weight: 400; font-size: 25px;\" data-font-weight=\"400\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address&nbsp;</h3>\r\n<p class=\"\" style=\"font-weight: 400; color: #000000;\" data-font-weight=\"400\">Blvd Riviera Nayarit #254, 63735 Nuevo Vallarta, Nay., Mexico</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 bg-box-flush col-lg-6\">\r\n<p class=\"\"><img class=\"bg-img alignnone wp-image-1806 size-medium\" style=\"background-color: var(--color-neutral); color: var(--color-neutral-text-contrast);\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico.jpg-2-300x210.jpg\" alt=\"Resort area showing proximity to airport and Puerto Vallarta\" width=\"300\" height=\"210\"><img class=\"bg-img alignnone wp-image-1810 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico-1.jpg-2-1-300x239.jpg\" alt=\"Close up of resort area\" width=\"300\" height=\"239\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','97-revision-v1','','','2022-04-09 20:40:34','2022-04-09 20:40:34','',97,'https://estatesatnuevo.com/?p=336',0,'revision','',0),(328,1,'2022-04-09 20:14:43','2022-04-09 20:14:43','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"color: #ffffff; background-image: url(\'https://estatesatnuevo.com/wp-content/uploads/2022/04/estatesatnuevo.jpg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1111019\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/estatesatnuevo.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 80px; background-image: url(\'\\\'https://estatesatnuevo.jpg\'); background-size: cover; background-position: 50% 50%;\" data-image-url=\"https://source.unsplash.com/V63oM8OPJSo/1920x1080\">\r\n<div class=\"col-md-2 col-sm-2 col-xs-12 col-lg-2\"></div>\r\n<div class=\"col-md-8 col-sm-10 col-xs-12 align-column-center col-lg-8\">\r\n<h2 class=\"intro__title\" style=\"font-weight: 600; font-size: 36px; color: #ffffff;\" align=\"center\" data-font-weight=\"600\">Ultimate Luxury Meets Ultimate Nature</h2>\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-12 col-lg-2\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">INFORMATION</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>Named as one of the Top Hotels in Mexico and Top Hotels in the World by Travel + Leisure\'s World\'s Best Awards, Vidanta Nuevo Vallarta offers the ultimate resort vacation. This expansive destination has been carefully curated to provide a high-end experience full of options, including endless restaurants and lounges, three golf courses and a golf academy, a shopping plaza, and entertainment plaza, two indulgent spas, countless pools, and the all-new Beachland.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/info\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">SUITES</h3>\r\n<p class=\"\"><span>Discover the best that luxury vacationing has to offer at The Estates at Nuevo, a haven of high-end comfort sequestered in the sublime jungle landscape at Vidanta Nuevo Vallarta\'s 5-star resort.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-1-bedroom\">1 Bedroom</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-2-bedroom\">2 Bedrooms</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-3-bedroom\">3 Bedrooms</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-4-bedroom\">4 Bedrooms</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">ACTIVITIES</h3>\r\n<header class=\"intro__header\"></header>\r\n<div class=\"intro__lead\">\r\n<p class=\"boxcard__text\">It’s your vacation, so why not spend it doing the types of things you love to do? At Estates at Nuevo, you’ll find a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, all run by our amazing activities team, the Joy Squad.</p>\r\n<p class=\"boxcard__text\">Don’t forget to download the activities calendar and check out your resort hotel to see what activities are happening when!</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/activities\">Learn more</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">property photos</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>At the Estates at Nuevo you can kick back in a remote jungle oasis by your accommodations or enjoy a gorgeous exclusive pool and lounge area in Beachland. Ride the exclusive gondola, play golf, luxuriate in a spa setting or relax by the pool in your private sanctuary. </span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/photos\">See More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">DINING</h3>\r\n<p class=\"\"><span>With over 40 restaurants and lounges to choose from, Estates at Nuevo gives guests the opportunity to dine however they like. Options range from high-end eateries to casual restaurants to authentic Mexican spots, and even a gourmet market filled with offerings from all over the world. One thing is for sure—an amazing culinary experience is always just a meal away.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/dining\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">spa</h3>\r\n<header class=\"intro__header\"></header>\r\n<div class=\"intro__lead\">\r\n<p class=\"intro__text\">Vacation is about restful and renewing relaxation. It’s about indulging in peace and taking a moment to enjoy the clarity of being removed from your busy home life.&nbsp; At the Estates at Nuevo,&nbsp; we help you embrace that serenity and harness the revitalizing powers of paradise with two beautiful, well-appointed spas.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 1em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">About Us</h2>\r\n<h3 class=\"\">WE CARE ABOUT YOUR VACATION</h3>\r\n<div><span class=\"\">We are owners at the Estates at Nuevo Luxury Condo Suites at the Vidanta Resorts.&nbsp; We also own at the Grand Luxxe Vacation resort.&nbsp; There are several of the Vidanta resorts in Mexico but we love the Nuevo Vallarta site because it has the most to offer.&nbsp; &nbsp;</span></div>\r\n<p class=\"\">We work with other owners so we have a larger selection of rentals available. Some have already been secured with the resort and are ready to book.&nbsp; If not, then we can check on availability for your specific time frame.</p>\r\n<p class=\"\">Always happy to answer any questions you may have about the resort and ourselves.&nbsp;&nbsp;</p>\r\n<p class=\"\">Thanks!&nbsp; Linda and Frank Helman</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 align-column-center col-lg-6\"><span class=\"\">From the moment you arrive, you will sense the difference with personalized attention 24/7 and the exclusivity in private beach and pool areas that are intimate and tranquil. At Vidanta’s Estates at Nuevo Vacation Mexican resort, we invite you to explore the gardens and landscaping, enjoy the ocean breeze, the unparalleled panoramic view of the Pacific Ocean in a magnificent sunset, and the natural biodiversity of the Bandera’s bay. It is the kind of extraordinary Mexican vacation experience you want, and the kind of service you deserve and expect.</span></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 0em 3em 90px;\">\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-110\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"k8m4Uj5JJAQ\" data-imhwpb-asset-id=\"1111013\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-111\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"r1tjlHBnHzY\" data-imhwpb-asset-id=\"1111014\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-112\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"l5gzNmXTzIg\" data-imhwpb-asset-id=\"1111015\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-113\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"\" data-imhwpb-asset-id=\"1111016\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-114\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"sBtqOe23bd0\" data-imhwpb-asset-id=\"1111017\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-115\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"B8He4PJkMLg\" data-imhwpb-asset-id=\"1111018\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\'); background-size: cover; background-position: 50% 58%;\" data-imhwpb-asset-id=\"1111020\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding: 75px 2em 4em;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-key\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Vacation GOLF</h3>\r\n<p class=\"H1\" data-font-weight=\"600\">Two Designer Courses, a Par 3 Lighted Course, and a State-of-the Art Instructional Academy.&nbsp; Estates at Nuevo boasts the most comprehensive golf offerings in the area. PGA tournament in 2023 here!</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-star-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Special NEEDS</h3>\r\n<p class=\"\">Do you have a special need? Wheelchairs are available for rent and special golf carts will take you around the property.&nbsp; Need a baby crib or child care? We can handle that too.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container-fluid\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 2em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">Our Location</h2>\r\n<p class=\"\">Because we put the customer first, we always have free transportation from the airport to the resort and to your living suite.&nbsp;</p>\r\n<p class=\"\">Review the room details and let us know how we can help you have the best vacation possible.</p>\r\n\r\n<h3 class=\"\" style=\"color: #000000; font-weight: 400; font-size: 25px;\" data-font-weight=\"400\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address&nbsp;</h3>\r\n<p class=\"\" style=\"font-weight: 400; color: #000000;\" data-font-weight=\"400\">Blvd Riviera Nayarit #254, 63735 Nuevo Vallarta, Nay., Mexico</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 bg-box-flush col-lg-6\">\r\n<p class=\"\"><img class=\"bg-img alignnone wp-image-1806 size-medium\" style=\"background-color: var(--color-neutral); color: var(--color-neutral-text-contrast);\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico.jpg-2-300x210.jpg\" alt=\"Resort area showing proximity to airport and Puerto Vallarta\" width=\"300\" height=\"210\"><img class=\"bg-img alignnone wp-image-1810 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico-1.jpg-2-1-300x239.jpg\" alt=\"Close up of resort area\" width=\"300\" height=\"239\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','97-revision-v1','','','2022-04-09 20:14:43','2022-04-09 20:14:43','',97,'https://estatesatnuevo.com/?p=328',0,'revision','',0),(327,1,'2022-04-09 20:11:03','2022-04-09 20:11:03','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"color: #ffffff; background-image: url(\'https://estatesatnuevo.com/wp-content/uploads/2022/04/estatesatnuevo.jpg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1111019\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/estatesatnuevo.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 80px; background-image: url(\'\\\'https://estatesatnuevo.jpg\'); background-size: cover; background-position: 50% 50%;\" data-image-url=\"https://source.unsplash.com/V63oM8OPJSo/1920x1080\">\r\n<div class=\"col-md-2 col-sm-2 col-xs-12 col-lg-2\"></div>\r\n<div class=\"col-md-8 col-sm-10 col-xs-12 align-column-center col-lg-8\">\r\n<h2 class=\"intro__title\" style=\"font-weight: 600; font-size: 36px; color: #ffffff;\" align=\"center\" data-font-weight=\"600\">Ultimate Luxury Meets Ultimate Nature</h2>\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-12 col-lg-2\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">INFORMATION</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>Named as one of the Top Hotels in Mexico and Top Hotels in the World by Travel + Leisure\'s World\'s Best Awards, Vidanta Nuevo Vallarta offers the ultimate resort vacation. This expansive destination has been carefully curated to provide a high-end experience full of options, including endless restaurants and lounges, three golf courses and a golf academy, a shopping plaza, and entertainment plaza, two indulgent spas, countless pools, and the all-new Beachland.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/info\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">SUITES</h3>\r\n<p class=\"\"><span>With over 40 restaurants and lounges to choose from, Estates at Nuevo gives guests the opportunity to dine however they like. Options range from high-end eateries to casual restaurants to authentic Mexican spots, and even a gourmet market filled with offerings from all over the world. One thing is for sure—an amazing culinary experience is always just a meal away.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-1-bedroom\">1 Bedroom</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-2-bedroom\">2 Bedrooms</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-3-bedroom\">3 Bedrooms</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-4-bedroom\">4 Bedrooms</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">ACTIVITIES</h3>\r\n<header class=\"intro__header\"></header>\r\n<div class=\"intro__lead\">\r\n<p class=\"boxcard__text\">It’s your vacation, so why not spend it doing the types of things you love to do? At Vidanta Nuevo Vallarta, you’ll find a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, all run by our amazing activities team, the Joy Squad.</p>\r\n<p class=\"boxcard__text\">Don’t forget to download the activities calendar and check out your resort hotel to see what activities are happening when!</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/activities\">Learn more</a></p>\r\n\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">property photos</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>The Estates at Nuevo&nbsp; Kick back in a remote jungle oasis by your accommodations or enjoy a gorgeous exclusive pool and lounge area in Beachland. Ride the exclusive gondola, play golf, luxuriate in a spa setting or relax by the pool in your private sanctuary. </span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/photos\">See More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">DINING</h3>\r\n<p class=\"\"><span>With over 40 restaurants and lounges to choose from, Estates at Nuevo gives guests the opportunity to dine however they like. Options range from high-end eateries to casual restaurants to authentic Mexican spots, and even a gourmet market filled with offerings from all over the world. One thing is for sure—an amazing culinary experience is always just a meal away.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/dining\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">spa</h3>\r\n<header class=\"intro__header\"></header>\r\n<div class=\"intro__lead\">\r\n<p class=\"intro__text\">Vacation is about restful and renewing relaxation. It’s about indulging in peace and taking a moment to enjoy the clarity of being removed from your busy home life.&nbsp; At the Estates at Nuevo,&nbsp; we help you embrace that serenity and harness the revitalizing powers of paradise with two beautiful, well-appointed spas.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 1em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">About Us</h2>\r\n<h3 class=\"\">WE CARE ABOUT YOUR VACATION</h3>\r\n<div><span class=\"\">We are owners at the Estates at Nuevo Luxury Condo Suites at the Vidanta Resorts.&nbsp; We also own at the Grand Luxxe Vacation resort.&nbsp; There are several of the Vidanta resorts in Mexico but we love the Nuevo Vallarta site because it has the most to offer.&nbsp; &nbsp;</span></div>\r\n<p class=\"\">We work with other owners so we have a larger selection of rentals available. Some have already been secured with the resort and are ready to book.&nbsp; If not, then we can check on availability for your specific time frame.</p>\r\n<p class=\"\">Always happy to answer any questions you may have about the resort and ourselves.&nbsp;&nbsp;</p>\r\n<p class=\"\">Thanks!&nbsp; Linda and Frank Helman</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 align-column-center col-lg-6\"><span class=\"\">From the moment you arrive, you will sense the difference with personalized attention 24/7 and the exclusivity in private beach and pool areas that are intimate and tranquil. At Vidanta’s Estates at Nuevo Vacation Mexican resort, we invite you to explore the gardens and landscaping, enjoy the ocean breeze, the unparalleled panoramic view of the Pacific Ocean in a magnificent sunset, and the natural biodiversity of the Bandera’s bay. It is the kind of extraordinary Mexican vacation experience you want, and the kind of service you deserve and expect.</span></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 0em 3em 90px;\">\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-110\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"k8m4Uj5JJAQ\" data-imhwpb-asset-id=\"1111013\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-111\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"r1tjlHBnHzY\" data-imhwpb-asset-id=\"1111014\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-112\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"l5gzNmXTzIg\" data-imhwpb-asset-id=\"1111015\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-113\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"\" data-imhwpb-asset-id=\"1111016\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-114\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"sBtqOe23bd0\" data-imhwpb-asset-id=\"1111017\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-115\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"B8He4PJkMLg\" data-imhwpb-asset-id=\"1111018\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\'); background-size: cover; background-position: 50% 58%;\" data-imhwpb-asset-id=\"1111020\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding: 75px 2em 4em;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-key\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Vacation GOLF</h3>\r\n<p class=\"H1\" data-font-weight=\"600\">Two Designer Courses, a Par 3 Lighted Course, and a State-of-the Art Instructional Academy.&nbsp; Estates at Nuevo boasts the most comprehensive golf offerings in the area. PGA tournament in 2023 here!</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-star-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Special NEEDS</h3>\r\n<p class=\"\">Do you have a special need? Wheelchairs are available for rent and special golf carts will take you around the property.&nbsp; Need a baby crib or child care? We can handle that too.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container-fluid\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 2em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">Our Location</h2>\r\n<p class=\"\">Because we put the customer first, we always have free transportation from the airport to the resort and to your living suite.&nbsp;</p>\r\n<p class=\"\">Review the room details and let us know how we can help you have the best vacation possible.</p>\r\n\r\n<h3 class=\"\" style=\"color: #000000; font-weight: 400; font-size: 25px;\" data-font-weight=\"400\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address&nbsp;</h3>\r\n<p class=\"\" style=\"font-weight: 400; color: #000000;\" data-font-weight=\"400\">Blvd Riviera Nayarit #254, 63735 Nuevo Vallarta, Nay., Mexico</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 bg-box-flush col-lg-6\">\r\n<p class=\"\"><img class=\"bg-img alignnone wp-image-1806 size-medium\" style=\"background-color: var(--color-neutral); color: var(--color-neutral-text-contrast);\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico.jpg-2-300x210.jpg\" alt=\"Resort area showing proximity to airport and Puerto Vallarta\" width=\"300\" height=\"210\"><img class=\"bg-img alignnone wp-image-1810 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico-1.jpg-2-1-300x239.jpg\" alt=\"Close up of resort area\" width=\"300\" height=\"239\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','97-revision-v1','','','2022-04-09 20:11:03','2022-04-09 20:11:03','',97,'https://estatesatnuevo.com/?p=327',0,'revision','',0),(335,1,'2022-04-09 20:29:30','2022-04-09 20:29:30','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"color: #ffffff; background-image: url(\'https://estatesatnuevo.com/wp-content/uploads/2022/04/estatesatnuevo.jpg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1111019\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/estatesatnuevo.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 80px; background-image: url(\'\\\'https://estatesatnuevo.jpg\'); background-size: cover; background-position: 50% 50%; padding-bottom: 0px;\" data-image-url=\"https://source.unsplash.com/V63oM8OPJSo/1920x1080\">\r\n<div class=\"col-md-2 col-sm-2 col-xs-12 col-lg-2\"></div>\r\n<div class=\"col-md-8 col-sm-10 col-xs-12 align-column-center col-lg-8\"></div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-12 col-lg-2\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<h2 class=\"intro__title\" style=\"font-weight: 600; font-size: 36px; color: #ffffff;\" align=\"center\" data-font-weight=\"600\">Ultimate Luxury Meets Ultimate Nature</h2>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">INFORMATION</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>Named as one of the Top Hotels in Mexico and Top Hotels in the World by Travel + Leisure\'s World\'s Best Awards, Vidanta Nuevo Vallarta offers the ultimate resort vacation. This expansive destination has been carefully curated to provide a high-end experience full of options, including endless restaurants and lounges, three golf courses and a golf academy, a shopping plaza, and entertainment plaza, two indulgent spas, countless pools, and the all-new Beachland.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/info\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">SUITES</h3>\r\n<p class=\"\"><span>Discover the best that luxury vacationing has to offer at The Estates at Nuevo, a haven of high-end comfort sequestered in the sublime jungle landscape at Vidanta Nuevo Vallarta\'s 5-star resort.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-1-bedroom\">1 Bedroom</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-2-bedroom\">2 Bedrooms</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-3-bedroom\">3 Bedrooms</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-4-bedroom\">4 Bedrooms</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">ACTIVITIES</h3>\r\n<header class=\"intro__header\"></header>\r\n<div class=\"intro__lead\">\r\n<p class=\"boxcard__text\">It’s your vacation, so why not spend it doing the types of things you love to do? At Estates at Nuevo, you’ll find a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, all run by our amazing activities team, the Joy Squad.</p>\r\n<p class=\"boxcard__text\">Don’t forget to download the activities calendar and check out your resort hotel to see what activities are happening when!</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/activities\">Learn more</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">property photos</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>At the Estates at Nuevo you can kick back in a remote jungle oasis by your accommodations or enjoy a gorgeous exclusive pool and lounge area in Beachland. Ride the exclusive gondola, play golf, luxuriate in a spa setting or relax by the pool in your private sanctuary. </span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/photos\">See More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">DINING</h3>\r\n<p class=\"\"><span>With over 40 restaurants and lounges to choose from, Estates at Nuevo gives guests the opportunity to dine however they like. Options range from high-end eateries to casual restaurants to authentic Mexican spots, and even a gourmet market filled with offerings from all over the world. One thing is for sure—an amazing culinary experience is always just a meal away.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/dining\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">spa</h3>\r\n<header class=\"intro__header\"></header>\r\n<div class=\"intro__lead\">\r\n<p class=\"intro__text\">Vacation is about restful and renewing relaxation. It’s about indulging in peace and taking a moment to enjoy the clarity of being removed from your busy home life.&nbsp; At the Estates at Nuevo,&nbsp; we help you embrace that serenity and harness the revitalizing powers of paradise with two beautiful, well-appointed spas.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 1em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">About Us</h2>\r\n<h3 class=\"\">WE CARE ABOUT YOUR VACATION</h3>\r\n<div><span class=\"\">We are owners at the Estates at Nuevo Luxury Condo Suites at the Vidanta Resorts.&nbsp; We also own at the Grand Luxxe Vacation resort.&nbsp; There are several of the Vidanta resorts in Mexico but we love the Nuevo Vallarta site because it has the most to offer.&nbsp; &nbsp;</span></div>\r\n<p class=\"\">We work with other owners so we have a larger selection of rentals available. Some have already been secured with the resort and are ready to book.&nbsp; If not, then we can check on availability for your specific time frame.</p>\r\n<p class=\"\">Always happy to answer any questions you may have about the resort and ourselves.&nbsp;&nbsp;</p>\r\n<p class=\"\">Thanks!&nbsp; Linda and Frank Helman</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 align-column-center col-lg-6\"><span class=\"\">From the moment you arrive, you will sense the difference with personalized attention 24/7 and the exclusivity in private beach and pool areas that are intimate and tranquil. At Vidanta’s Estates at Nuevo Vacation Mexican resort, we invite you to explore the gardens and landscaping, enjoy the ocean breeze, the unparalleled panoramic view of the Pacific Ocean in a magnificent sunset, and the natural biodiversity of the Bandera’s bay. It is the kind of extraordinary Mexican vacation experience you want, and the kind of service you deserve and expect.</span></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 0em 3em 90px;\">\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-110\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"k8m4Uj5JJAQ\" data-imhwpb-asset-id=\"1111013\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-111\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"r1tjlHBnHzY\" data-imhwpb-asset-id=\"1111014\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-112\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"l5gzNmXTzIg\" data-imhwpb-asset-id=\"1111015\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-113\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"\" data-imhwpb-asset-id=\"1111016\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-114\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"sBtqOe23bd0\" data-imhwpb-asset-id=\"1111017\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-115\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"B8He4PJkMLg\" data-imhwpb-asset-id=\"1111018\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\'); background-size: cover; background-position: 50% 58%;\" data-imhwpb-asset-id=\"1111020\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding: 75px 2em 4em;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-key\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Vacation GOLF</h3>\r\n<p class=\"H1\" data-font-weight=\"600\">Two Designer Courses, a Par 3 Lighted Course, and a State-of-the Art Instructional Academy.&nbsp; Estates at Nuevo boasts the most comprehensive golf offerings in the area. PGA tournament in 2023 here!</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-star-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Special NEEDS</h3>\r\n<p class=\"\">Do you have a special need? Wheelchairs are available for rent and special golf carts will take you around the property.&nbsp; Need a baby crib or child care? We can handle that too.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container-fluid\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 2em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">Our Location</h2>\r\n<p class=\"\">Because we put the customer first, we always have free transportation from the airport to the resort and to your living suite.&nbsp;</p>\r\n<p class=\"\">Review the room details and let us know how we can help you have the best vacation possible.</p>\r\n\r\n<h3 class=\"\" style=\"color: #000000; font-weight: 400; font-size: 25px;\" data-font-weight=\"400\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address&nbsp;</h3>\r\n<p class=\"\" style=\"font-weight: 400; color: #000000;\" data-font-weight=\"400\">Blvd Riviera Nayarit #254, 63735 Nuevo Vallarta, Nay., Mexico</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 bg-box-flush col-lg-6\">\r\n<p class=\"\"><img class=\"bg-img alignnone wp-image-1806 size-medium\" style=\"background-color: var(--color-neutral); color: var(--color-neutral-text-contrast);\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico.jpg-2-300x210.jpg\" alt=\"Resort area showing proximity to airport and Puerto Vallarta\" width=\"300\" height=\"210\"><img class=\"bg-img alignnone wp-image-1810 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico-1.jpg-2-1-300x239.jpg\" alt=\"Close up of resort area\" width=\"300\" height=\"239\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','97-revision-v1','','','2022-04-09 20:29:30','2022-04-09 20:29:30','',97,'https://estatesatnuevo.com/?p=335',0,'revision','',0),(329,1,'2022-04-09 20:17:44','2022-04-09 20:17:44','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"color: #ffffff; background-image: url(\'https://estatesatnuevo.com/wp-content/uploads/2022/04/estatesatnuevo.jpg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1111019\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/estatesatnuevo.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 80px; background-image: url(\'\\\'https://estatesatnuevo.jpg\'); background-size: cover; background-position: 50% 50%; padding-bottom: 0px;\" data-image-url=\"https://source.unsplash.com/V63oM8OPJSo/1920x1080\">\r\n<div class=\"col-md-2 col-sm-2 col-xs-12 col-lg-2\"></div>\r\n<div class=\"col-md-8 col-sm-10 col-xs-12 align-column-center col-lg-8\">\r\n<h2 class=\"intro__title\" style=\"font-weight: 600; font-size: 36px; color: #ffffff;\" align=\"center\" data-font-weight=\"600\">Ultimate Luxury Meets Ultimate Nature</h2>\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-12 col-lg-2\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">INFORMATION</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>Named as one of the Top Hotels in Mexico and Top Hotels in the World by Travel + Leisure\'s World\'s Best Awards, Vidanta Nuevo Vallarta offers the ultimate resort vacation. This expansive destination has been carefully curated to provide a high-end experience full of options, including endless restaurants and lounges, three golf courses and a golf academy, a shopping plaza, and entertainment plaza, two indulgent spas, countless pools, and the all-new Beachland.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/info\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">SUITES</h3>\r\n<p class=\"\"><span>Discover the best that luxury vacationing has to offer at The Estates at Nuevo, a haven of high-end comfort sequestered in the sublime jungle landscape at Vidanta Nuevo Vallarta\'s 5-star resort.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-1-bedroom\">1 Bedroom</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-2-bedroom\">2 Bedrooms</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-3-bedroom\">3 Bedrooms</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-4-bedroom\">4 Bedrooms</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">ACTIVITIES</h3>\r\n<header class=\"intro__header\"></header>\r\n<div class=\"intro__lead\">\r\n<p class=\"boxcard__text\">It’s your vacation, so why not spend it doing the types of things you love to do? At Estates at Nuevo, you’ll find a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, all run by our amazing activities team, the Joy Squad.</p>\r\n<p class=\"boxcard__text\">Don’t forget to download the activities calendar and check out your resort hotel to see what activities are happening when!</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/activities\">Learn more</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">property photos</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>At the Estates at Nuevo you can kick back in a remote jungle oasis by your accommodations or enjoy a gorgeous exclusive pool and lounge area in Beachland. Ride the exclusive gondola, play golf, luxuriate in a spa setting or relax by the pool in your private sanctuary. </span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/photos\">See More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">DINING</h3>\r\n<p class=\"\"><span>With over 40 restaurants and lounges to choose from, Estates at Nuevo gives guests the opportunity to dine however they like. Options range from high-end eateries to casual restaurants to authentic Mexican spots, and even a gourmet market filled with offerings from all over the world. One thing is for sure—an amazing culinary experience is always just a meal away.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/dining\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">spa</h3>\r\n<header class=\"intro__header\"></header>\r\n<div class=\"intro__lead\">\r\n<p class=\"intro__text\">Vacation is about restful and renewing relaxation. It’s about indulging in peace and taking a moment to enjoy the clarity of being removed from your busy home life.&nbsp; At the Estates at Nuevo,&nbsp; we help you embrace that serenity and harness the revitalizing powers of paradise with two beautiful, well-appointed spas.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 1em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">About Us</h2>\r\n<h3 class=\"\">WE CARE ABOUT YOUR VACATION</h3>\r\n<div><span class=\"\">We are owners at the Estates at Nuevo Luxury Condo Suites at the Vidanta Resorts.&nbsp; We also own at the Grand Luxxe Vacation resort.&nbsp; There are several of the Vidanta resorts in Mexico but we love the Nuevo Vallarta site because it has the most to offer.&nbsp; &nbsp;</span></div>\r\n<p class=\"\">We work with other owners so we have a larger selection of rentals available. Some have already been secured with the resort and are ready to book.&nbsp; If not, then we can check on availability for your specific time frame.</p>\r\n<p class=\"\">Always happy to answer any questions you may have about the resort and ourselves.&nbsp;&nbsp;</p>\r\n<p class=\"\">Thanks!&nbsp; Linda and Frank Helman</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 align-column-center col-lg-6\"><span class=\"\">From the moment you arrive, you will sense the difference with personalized attention 24/7 and the exclusivity in private beach and pool areas that are intimate and tranquil. At Vidanta’s Estates at Nuevo Vacation Mexican resort, we invite you to explore the gardens and landscaping, enjoy the ocean breeze, the unparalleled panoramic view of the Pacific Ocean in a magnificent sunset, and the natural biodiversity of the Bandera’s bay. It is the kind of extraordinary Mexican vacation experience you want, and the kind of service you deserve and expect.</span></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 0em 3em 90px;\">\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-110\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"k8m4Uj5JJAQ\" data-imhwpb-asset-id=\"1111013\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-111\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"r1tjlHBnHzY\" data-imhwpb-asset-id=\"1111014\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-112\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"l5gzNmXTzIg\" data-imhwpb-asset-id=\"1111015\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-113\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"\" data-imhwpb-asset-id=\"1111016\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-114\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"sBtqOe23bd0\" data-imhwpb-asset-id=\"1111017\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-115\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"B8He4PJkMLg\" data-imhwpb-asset-id=\"1111018\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\'); background-size: cover; background-position: 50% 58%;\" data-imhwpb-asset-id=\"1111020\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding: 75px 2em 4em;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-key\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Vacation GOLF</h3>\r\n<p class=\"H1\" data-font-weight=\"600\">Two Designer Courses, a Par 3 Lighted Course, and a State-of-the Art Instructional Academy.&nbsp; Estates at Nuevo boasts the most comprehensive golf offerings in the area. PGA tournament in 2023 here!</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-star-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Special NEEDS</h3>\r\n<p class=\"\">Do you have a special need? Wheelchairs are available for rent and special golf carts will take you around the property.&nbsp; Need a baby crib or child care? We can handle that too.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container-fluid\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 2em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">Our Location</h2>\r\n<p class=\"\">Because we put the customer first, we always have free transportation from the airport to the resort and to your living suite.&nbsp;</p>\r\n<p class=\"\">Review the room details and let us know how we can help you have the best vacation possible.</p>\r\n\r\n<h3 class=\"\" style=\"color: #000000; font-weight: 400; font-size: 25px;\" data-font-weight=\"400\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address&nbsp;</h3>\r\n<p class=\"\" style=\"font-weight: 400; color: #000000;\" data-font-weight=\"400\">Blvd Riviera Nayarit #254, 63735 Nuevo Vallarta, Nay., Mexico</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 bg-box-flush col-lg-6\">\r\n<p class=\"\"><img class=\"bg-img alignnone wp-image-1806 size-medium\" style=\"background-color: var(--color-neutral); color: var(--color-neutral-text-contrast);\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico.jpg-2-300x210.jpg\" alt=\"Resort area showing proximity to airport and Puerto Vallarta\" width=\"300\" height=\"210\"><img class=\"bg-img alignnone wp-image-1810 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico-1.jpg-2-1-300x239.jpg\" alt=\"Close up of resort area\" width=\"300\" height=\"239\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','97-revision-v1','','','2022-04-09 20:17:44','2022-04-09 20:17:44','',97,'https://estatesatnuevo.com/?p=329',0,'revision','',0),(330,1,'2022-04-09 20:21:04','2022-04-09 20:21:04','<div class=\"color1-background-color color-1-text-contrast bg-background-color tmpl-portfolio-6 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 20px 0px 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 text-center col-lg-12\"><footer>&nbsp;\r\n<h1 class=\"\" style=\"margin: 5px 0px; letter-spacing: 4.9px; font-weight: 600; font-size: 23px;\" data-font-weight=\"600\">&nbsp; &nbsp; FINE DINING</h1>\r\n</footer></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-4 boldgrid-section dynamic-gridblock color1-background-color color-1-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 34px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1058 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Azur-300x184.jpg\" alt=\"Azur French Restaurant\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Bistro Bleu – French Flair with a twist</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1059 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Costa-300x184.jpg\" alt=\"Costa Arena seafood restaurant\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Puerto Manjar – California – inspired Seafood</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1060 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Epazote-300x184.jpg\" alt=\"Epazote Mexican restaurant\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Brezza at The Estates – A Mediterranean flavor</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-4 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(#203356, #446cb3);\" data-bg-color-1=\"#203356\" data-bg-color-2=\"#446cb3\" data-bg-direction=\"to bottom\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 24px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1061 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/gong-300x184.jpg\" alt=\"Gong Asian Restaurant\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Gong Restaurant – Far East Favorites</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1062 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/quinto-300x184.jpg\" alt=\"Quinto Charcoal Grill\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Quinto Charcoal Grill- The Best of Land and Sea</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1063 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/burger-300x184.jpg\" alt=\"Burger Custom Made\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Burger Custom Made –&nbsp;Reimagining the Burger</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-4 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(#203356, #446cb3);\" data-bg-color-1=\"#203356\" data-bg-color-2=\"#446cb3\" data-bg-direction=\"to bottom\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1064 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/tramonto-300x184.jpg\" alt=\"Tramonto Italian\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Tramonto – Tratoria in Paradise</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1811 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/ameca-300x184.jpg\" alt=\"Ameca Grill\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Ameca Social House – Le Petit Chef presentation</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1366 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Cafe-300x184.jpg\" alt=\"Cafe del Lago Buffet\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Cafe Del Lago – Morning Lake Views</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color1-background-color color-1-text-contrast bg-background-color\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section color1-background-color color-1-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\r\n<p class=\"\" style=\"text-align: center; font-size: 25px;\">Casual Dining, Bars and Lounges, Great in-room Dining</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\">\r\n<p class=\"\" style=\"font-weight: 600; font-size: 23px;\" data-font-family=\"\" data-font-weight=\"600\" data-font-style=\"\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</p>\r\n\r\n<div class=\"row gridblock\" style=\"padding-bottom: 0px; padding-top: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12 col-lg-6\">\r\n<p class=\"\">Balance - Healthy&nbsp; food and drinks</p>\r\n<p class=\"\">Chiringuito - Authentic Spanish food</p>\r\n<p class=\"\">Beachland -Street foods &amp; vendors</p>\r\n<p class=\"\">La Cantina - Mexican Bar and comfort food</p>\r\n<p class=\"\">Ola Mulata - Lunch and early dinner</p>\r\nEstates Lounge Deck - Snacks &amp; drinks\r\n\r\nSi Snack - Poolside dining&nbsp;\r\n<p class=\"\">Sky Garden - Residence rooftop dining</p>\r\nPar Break - Breakfast/lunch/snacks\r\n<p class=\"\">Pool Bars - Swim up service</p>\r\n<p class=\"\">Salum - Snacks/cocktails/music</p>\r\nPool bar at the Estates - Snacks &amp; drinks\r\n<p class=\"\">Grand Lobby Bar - Lobby of Grand Mayan</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\">\r\n<p class=\"\">Balche - Sandwiches and snacks</p>\r\n<p class=\"\">Green Table - Organic light fare</p>\r\nPizza To Go - Room service only\r\n<p class=\"\">Limon y Sal - Ceviche and other seafoods</p>\r\n<p class=\"\">Samba - Breakfast buffet, international lunch and dinner</p>\r\n<p class=\"\">Sweet Paris - Sweet and savory crepes</p>\r\n<p class=\"\">Tacos Break - Traditional Mexican</p>\r\nRoom Service - 24 hour service\r\n\r\nGrill at the Estates - Breakfast &amp; lunch\r\n<p class=\"\">Grand Vista Bar - Lobby of Grand Bliss</p>\r\n<p class=\"\">Luxxe Bar - Near Epazote Restaurant</p>\r\n<p class=\"\">Santuario - Nightly theme Entertainment&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>','Dining','','publish','closed','closed','','dining','','','2022-04-10 19:43:59','2022-04-10 19:43:59','',0,'https://estatesatnuevo.com/?page_id=330',0,'page','',0),(391,1,'2022-11-18 15:17:01','2022-11-18 15:17:01','<div class=\"tmpl-team-2 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 30px; text-align: center;\" data-font-weight=\"600\">ACTIVITIES</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 text-center col-lg-4\">\r\n<div style=\"padding: 20px 10%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\r\n<p class=\"mod-reset\"><img src=\"https://www.vidanta.com/documents/34916/49574/vidanta-golf-nuevovallarta-gallery-1.jpg/7ad7e5b6-9a67-96fb-03df-82a5177c02ca?t=1506961150363\" alt=\"slide-003\"></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000; font-weight: 600;\" data-font-weight=\"600\">GOLF</p>\r\n<p class=\"boxcard__text\" style=\"color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">With two of the region’s premier courses—The Nayar Course and the Norman Signature Course—plus the 10-hole, par-3 The Lakes Course, the all-new Vidanta Golf Academy, a beautiful new restaurant, and the longest golf cart suspension bridge in the world, there really is no vacation getaway for golfers that compares.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 text-center col-lg-4\">\r\n<div style=\"padding: 20px 10%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\r\n<p class=\"mod-reset\"><img src=\"https://www.vidanta.com/documents/34916/610451/vidanta-nuevo-vallarta-spa-theestates-Intro.jpg/29d19560-4f42-8684-ddc3-fe5a66612cd2?t=1658276461566\" alt=\"Photo\"></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000; font-weight: 600;\" data-font-weight=\"600\">SPA &amp; GYM</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Situated in the lush landscape surrounding Vidanta\'s most luxurious accommodations, The Spa at The Estates showcases a modern experience in bespoke relaxation that seamlessly incorporates timeless elements of nature with techniques and traditions from a variety of cultures.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-12 col-xs-12 text-center col-lg-4\">\r\n<div style=\"padding: 20px 10%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\r\n<p class=\"mod-reset\"><img src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Grand-Luxxe-Infinitiy-Pool-300x225.jpg\" alt=\"Infinity pool\"></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000; font-weight: 600;\" data-font-weight=\"600\">POOLS &amp; POOLSIDE</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">There are private pools for Estates only as well as a number of other pool &amp; poolside activities such as water polo, water volleyball, aqua aerobics, Paddle Board stretching class, Salsa lessons, Spanish class, arts &amp; crafts, Guacamole making class.&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-team-2 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 text-center col-lg-4\">\r\n<div style=\"padding: 20px 15%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\r\n<p class=\"mod-reset\"><img class=\"shape circle bg-img alignnone wp-image-1886\" style=\"margin-top: -85px; margin-bottom: 20px; border: 2px solid #cecece;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/joysquad-300x233.jpg\" alt=\"Joy Squad\" width=\"270\" height=\"210\"></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000; font-weight: 600;\" data-font-weight=\"600\">JOY SQUAD</p>\r\n<p class=\"\" style=\"color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">It’s your vacation, so why not spend it doing the types of things you love to do? At Estates at Nuevo you’ll find a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, all run by our amazing activities team, the Joy Squad.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 text-center col-lg-4\">\r\n<div style=\"padding: 20px 15%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\r\n<p class=\"mod-reset\"><img class=\"shape circle bg-img alignnone wp-image-1888 size-medium\" style=\"margin-top: -85px; margin-bottom: 20px; border: 2px solid #cecece;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/vidanta-nuevovallarta-activities-tours-300x233.jpg\" alt=\"Walking paths\" width=\"300\" height=\"233\"></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000; font-weight: 600;\" data-font-weight=\"600\">tours</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Heart of Vidanta Tour</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Walks Wildlife Tour</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Iguana Tour</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Tequila Tour</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Explore Mexico</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-12 col-xs-12 text-center col-lg-4\">\r\n<div style=\"padding: 20px 15%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\r\n<p class=\"mod-reset\"><img class=\"shape circle bg-img alignnone wp-image-1390 size-medium\" style=\"margin-top: -85px; margin-bottom: 20px; border: 2px solid #cecece;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/CLUB-300x191.jpg\" alt=\"Kids\' Club pools\" width=\"300\" height=\"191\"></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000; font-weight: 600;\" data-font-weight=\"600\">kids club</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Kid’s Club is for the little ones! It offers an assortment of amazing activities, including water activities at the on-premise pool, for children ages 5 to 12. All of these activities are supervised by our expert staff. Kid’s Club also has weekly theme nights where, for an additional fee, you can drop off your children and enjoy an evening at the resort while they make new friends and try new things at events like Pirate Night or Pajama Party.&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-team-2 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 text-center col-lg-4\">\r\n<div style=\"padding: 20px 15%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\r\n<p class=\"mod-reset\"><img class=\"shape circle bg-img alignnone wp-image-1887 size-medium\" style=\"margin-top: -85px; margin-bottom: 20px; border: 2px solid #cecece;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/vidanta-nuevovallarta-activities-beach-300x233.jpg\" alt=\"Beach\" width=\"300\" height=\"233\"></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000; font-weight: 600;\" data-font-weight=\"600\">beach</p>\r\n<p class=\"\" style=\"color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Soccer</p>\r\n<p class=\"\" style=\"color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Volleyball</p>\r\n<p class=\"\" style=\"color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Horseshoe Tournament</p>\r\n<p class=\"\" style=\"color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Bocce Ball</p>\r\n<p class=\"\" style=\"color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Beach Exploration</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-12 col-xs-12 text-center col-lg-4\">\r\n<div style=\"padding: 20px 15%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\r\n<p class=\"mod-reset\"><img class=\"shape circle bg-img alignnone wp-image-1889 size-medium\" style=\"margin-top: -85px; margin-bottom: 20px; border: 2px solid #cecece;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/vidanta-nuevovallarta-activities-nighttime-300x233.jpg\" alt=\"Night time shows at Santuario\" width=\"300\" height=\"233\"></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000; font-weight: 600;\" data-font-weight=\"600\">night time</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Show</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Bingo Night</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Trivia Night</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Black Jack Night</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">Karaoke Night</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-12 col-xs-12 text-center col-lg-4\">\r\n<div style=\"padding: 20px 15%; border: 1px solid #cecece; margin-top: 100px;\" class=\"bg-box bg-box-square bg-box-border-thin\">\r\n<p class=\"mod-reset\"><img class=\"shape circle bg-img alignnone wp-image-1889 size-medium\" style=\"margin-top: -85px; margin-bottom: 20px; border: 2px solid #cecece;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/vidanta-nuevovallarta-activities-nighttime-300x233.jpg\" alt=\"Night time shows at Santuario\" width=\"300\" height=\"233\"></p>\r\n<p class=\"h4\" style=\"text-transform: uppercase; color: #000000; font-weight: 600;\" data-font-weight=\"600\">ENTERTAINMENT</p>\r\n<p class=\"\" style=\"margin: 20px 0px; color: #000000; line-height: 1.5em; font-weight: 600;\" data-font-weight=\"600\">As the evening settles in, that’s when Vidanta Nuevo Vallarta bursts to life. Intoxicating live music; vibrant displays of acrobatics, dance, clowning, and artistry; dazzling light shows utilizing the latest in digital effects; festive celebrations of food, culture, and fun—this is your vacation and this destination provides a myriad of ways to enrich and enliven every moment of it. It’s time to embrace the magic and marvels playing out all around you!</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-team-2 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Activities','','inherit','closed','closed','','247-revision-v1','','','2022-11-18 15:17:01','2022-11-18 15:17:01','',247,'https://estatesatnuevo.com/?p=391',0,'revision','',0),(332,1,'2022-04-09 20:21:04','2022-04-09 20:21:04','','Dining','','inherit','closed','closed','','330-revision-v1','','','2022-04-09 20:21:04','2022-04-09 20:21:04','',330,'https://estatesatnuevo.com/?p=332',0,'revision','',0),(333,1,'2022-04-09 20:21:04','2022-04-09 20:21:04',' ','','','publish','closed','closed','','333','','','2022-04-09 20:21:04','2022-04-09 20:21:04','',0,'https://estatesatnuevo.com/333/',6,'nav_menu_item','',0),(342,1,'2022-04-09 21:14:52','2022-04-09 21:14:52','','estatescover','','inherit','open','closed','','estatescover','','','2022-04-09 21:14:52','2022-04-09 21:14:52','',0,'https://estatesatnuevo.com/wp-content/uploads/2022/04/estatescover.jpg',0,'attachment','image/jpeg',0),(344,1,'2022-04-09 21:23:41','2022-04-09 21:23:41','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"color: #ffffff; background-image: url(\'https://estatesatnuevo.com/wp-content/uploads/2022/04/estatescover.jpg\'); background-size: cover; background-position: 50% 100%;\" data-image-url=\"https://estatesatnuevo.com/wp-content/estatescover.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px; background-image: url(\'https://estatescover.jpg\'); background-size: cover; background-position: 50% 100%; padding-bottom: 0px;\" data-image-url=\"https://estatescover.jpg/1500x919\">\r\n<div class=\"col-md-2 col-sm-2 col-xs-12 col-lg-2\"></div>\r\n<div class=\"col-md-8 col-sm-10 col-xs-12 align-column-center col-lg-8\"></div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-12 col-lg-2\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<h2 class=\"intro__title\" style=\"font-weight: 600; font-size: 36px; color: #ffffff;\" align=\"center\" data-font-weight=\"600\">Ultimate Luxury Meets Ultimate Nature</h2>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">INFORMATION</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>Named as one of the Top Hotels in Mexico and Top Hotels in the World by Travel + Leisure\'s World\'s Best Awards, Vidanta Nuevo Vallarta offers the ultimate resort vacation. This expansive destination has been carefully curated to provide a high-end experience full of options, including endless restaurants and lounges, three golf courses and a golf academy, a shopping plaza, and entertainment plaza, two indulgent spas, countless pools, and the all-new Beachland.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/info\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">SUITES</h3>\r\n<p class=\"\"><span>Discover the best that luxury vacationing has to offer at The Estates at Nuevo, a haven of high-end comfort sequestered in the sublime jungle landscape at Vidanta Nuevo Vallarta\'s 5-star resort.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-1-bedroom\">1 Bedroom</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-2-bedroom\">2 Bedrooms</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-3-bedroom\">3 Bedrooms</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-4-bedroom\">4 Bedrooms</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">ACTIVITIES</h3>\r\n<header class=\"intro__header\"></header>\r\n<div class=\"intro__lead\">\r\n<p class=\"boxcard__text\">It’s your vacation, so why not spend it doing the types of things you love to do? At Estates at Nuevo, you’ll find a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, all run by our amazing activities team, the Joy Squad.</p>\r\n<p class=\"boxcard__text\">Don’t forget to download the activities calendar and check out your resort hotel to see what activities are happening when!</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/activities\">Learn more</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">property photos</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>At the Estates at Nuevo you can kick back in a remote jungle oasis by your accommodations or enjoy a gorgeous exclusive pool and lounge area in Beachland. Ride the exclusive gondola, play golf, luxuriate in a spa setting or relax by the pool in your private sanctuary. </span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/photos\">See More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">DINING</h3>\r\n<p class=\"\"><span>With over 40 restaurants and lounges to choose from, Estates at Nuevo gives guests the opportunity to dine however they like. Options range from high-end eateries to casual restaurants to authentic Mexican spots, and even a gourmet market filled with offerings from all over the world. One thing is for sure—an amazing culinary experience is always just a meal away.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/dining\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">GOLF AND spa</h3>\r\n<header class=\"intro__header\"></header>\r\n<div class=\"intro__lead\">\r\n<p class=\"intro__text\"><span>With two of the region’s premier courses—The Nayar Course and the Norman Signature Course—plus a 10-hole, par-3 The Lakes Course, a Golf Academy, a beautiful new restaurant, and the longest golf cart suspension bridge in the world, there really is no vacation getaway for golfers that compares to Estates at Nuevo.</span></p>\r\n<p class=\"intro__text\"><span>Vacation is about restful and renewing relaxation. It’s about indulging in peace and taking a moment to enjoy the clarity of being removed from your busy home life. At Estates at Nuevo we help you embrace that serenity and harness the revitalizing powers of paradise with two beautiful, well-appointed spas.</span></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 1em;\">\r\n<div class=\"\">\r\n<div><span class=\"\">We are owners at the Estates at Nuevo Luxury Condo Suites at the Vidanta Resorts.&nbsp; We also own at the Grand Luxxe Vacation resort.&nbsp; There are several of the Vidanta resorts in Mexico but we love the Nuevo Vallarta site because it has the most to offer.&nbsp; &nbsp;</span></div>\r\n<p class=\"\">We work with other owners so we have a larger selection of rentals available. Some have already been secured with the resort and are ready to book.&nbsp; If not, then we can check on availability for your specific time frame.</p>\r\n<p class=\"\">Always happy to answer any questions you may have about the resort and ourselves.&nbsp;&nbsp;</p>\r\n<p class=\"\">Thanks!&nbsp; Linda and Frank Helman</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 align-column-center col-lg-6\"><span class=\"\">From the moment you arrive, you will sense the difference with personalized attention 24/7 and the exclusivity in private beach and pool areas that are intimate and tranquil. At Vidanta’s Estates at Nuevo Vacation Mexican resort, we invite you to explore the gardens and landscaping, enjoy the ocean breeze, the unparalleled panoramic view of the Pacific Ocean in a magnificent sunset, and the natural biodiversity of the Bandera’s bay. It is the kind of extraordinary Mexican vacation experience you want, and the kind of service you deserve and expect.</span></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 0em 3em 90px;\">\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-110\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"k8m4Uj5JJAQ\" data-imhwpb-asset-id=\"1111013\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-111\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"r1tjlHBnHzY\" data-imhwpb-asset-id=\"1111014\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-112\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"l5gzNmXTzIg\" data-imhwpb-asset-id=\"1111015\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-113\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"\" data-imhwpb-asset-id=\"1111016\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-114\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"sBtqOe23bd0\" data-imhwpb-asset-id=\"1111017\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-115\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"B8He4PJkMLg\" data-imhwpb-asset-id=\"1111018\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\'); background-size: cover; background-position: 50% 58%;\" data-imhwpb-asset-id=\"1111020\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\">\r\n<div class=\"container-fluid\"></div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container-fluid\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 2em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">Our Location</h2>\r\n<p class=\"\">Because we put the customer first, we always have free transportation from the airport to the resort and to your living suite.&nbsp;</p>\r\n<p class=\"\">Review the room details and let us know how we can help you have the best vacation possible.</p>\r\n\r\n<h3 class=\"color3-color\" style=\"font-weight: 400; font-size: 25px;\" data-font-weight=\"400\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address&nbsp;</h3>\r\n<p class=\"color3-color\" style=\"font-weight: 400;\" data-font-weight=\"400\">Blvd Riviera Nayarit #254, 63735 Nuevo Vallarta, Nay., Mexico</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 bg-box-flush col-lg-6\">\r\n<p class=\"\"><img class=\"bg-img alignnone wp-image-1806 size-medium\" style=\"background-color: var(--color-neutral); color: var(--color-neutral-text-contrast);\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico.jpg-2-300x210.jpg\" alt=\"Resort area showing proximity to airport and Puerto Vallarta\" width=\"300\" height=\"210\"><img class=\"bg-img alignnone wp-image-1810 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico-1.jpg-2-1-300x239.jpg\" alt=\"Close up of resort area\" width=\"300\" height=\"239\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','97-revision-v1','','','2022-04-09 21:23:41','2022-04-09 21:23:41','',97,'https://estatesatnuevo.com/?p=344',0,'revision','',0),(340,1,'2022-04-09 20:53:16','2022-04-09 20:53:16','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"color: #ffffff; background-image: url(\'https://estatesatnuevo.com/wp-content/uploads/2022/04/estatesatnuevo.jpg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1111019\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/estatesatnuevo.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 80px; background-image: url(\'\\\'https://estatesatnuevo.jpg\'); background-size: cover; background-position: 50% 50%; padding-bottom: 0px;\" data-image-url=\"https://source.unsplash.com/V63oM8OPJSo/1920x1080\">\r\n<div class=\"col-md-2 col-sm-2 col-xs-12 col-lg-2\"></div>\r\n<div class=\"col-md-8 col-sm-10 col-xs-12 align-column-center col-lg-8\"></div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-12 col-lg-2\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<h2 class=\"intro__title\" style=\"font-weight: 600; font-size: 36px; color: #ffffff;\" align=\"center\" data-font-weight=\"600\">Ultimate Luxury Meets Ultimate Nature</h2>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">INFORMATION</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>Named as one of the Top Hotels in Mexico and Top Hotels in the World by Travel + Leisure\'s World\'s Best Awards, Vidanta Nuevo Vallarta offers the ultimate resort vacation. This expansive destination has been carefully curated to provide a high-end experience full of options, including endless restaurants and lounges, three golf courses and a golf academy, a shopping plaza, and entertainment plaza, two indulgent spas, countless pools, and the all-new Beachland.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/info\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">SUITES</h3>\r\n<p class=\"\"><span>Discover the best that luxury vacationing has to offer at The Estates at Nuevo, a haven of high-end comfort sequestered in the sublime jungle landscape at Vidanta Nuevo Vallarta\'s 5-star resort.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-1-bedroom\">1 Bedroom</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-2-bedroom\">2 Bedrooms</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-3-bedroom\">3 Bedrooms</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-4-bedroom\">4 Bedrooms</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">ACTIVITIES</h3>\r\n<header class=\"intro__header\"></header>\r\n<div class=\"intro__lead\">\r\n<p class=\"boxcard__text\">It’s your vacation, so why not spend it doing the types of things you love to do? At Estates at Nuevo, you’ll find a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, all run by our amazing activities team, the Joy Squad.</p>\r\n<p class=\"boxcard__text\">Don’t forget to download the activities calendar and check out your resort hotel to see what activities are happening when!</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/activities\">Learn more</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">property photos</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>At the Estates at Nuevo you can kick back in a remote jungle oasis by your accommodations or enjoy a gorgeous exclusive pool and lounge area in Beachland. Ride the exclusive gondola, play golf, luxuriate in a spa setting or relax by the pool in your private sanctuary. </span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/photos\">See More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">DINING</h3>\r\n<p class=\"\"><span>With over 40 restaurants and lounges to choose from, Estates at Nuevo gives guests the opportunity to dine however they like. Options range from high-end eateries to casual restaurants to authentic Mexican spots, and even a gourmet market filled with offerings from all over the world. One thing is for sure—an amazing culinary experience is always just a meal away.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/dining\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">GOLF AND spa</h3>\r\n<header class=\"intro__header\"></header>\r\n<div class=\"intro__lead\">\r\n<p class=\"intro__text\"><span>With two of the region’s premier courses—The Nayar Course and the Norman Signature Course—plus a 10-hole, par-3 The Lakes Course, a Golf Academy, a beautiful new restaurant, and the longest golf cart suspension bridge in the world, there really is no vacation getaway for golfers that compares to Estates at Nuevo.</span></p>\r\n<p class=\"intro__text\"><span>Vacation is about restful and renewing relaxation. It’s about indulging in peace and taking a moment to enjoy the clarity of being removed from your busy home life. At Estates at Nuevo we help you embrace that serenity and harness the revitalizing powers of paradise with two beautiful, well-appointed spas.</span></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 1em;\">\r\n<div class=\"\">\r\n<div><span class=\"\">We are owners at the Estates at Nuevo Luxury Condo Suites at the Vidanta Resorts.&nbsp; We also own at the Grand Luxxe Vacation resort.&nbsp; There are several of the Vidanta resorts in Mexico but we love the Nuevo Vallarta site because it has the most to offer.&nbsp; &nbsp;</span></div>\r\n<p class=\"\">We work with other owners so we have a larger selection of rentals available. Some have already been secured with the resort and are ready to book.&nbsp; If not, then we can check on availability for your specific time frame.</p>\r\n<p class=\"\">Always happy to answer any questions you may have about the resort and ourselves.&nbsp;&nbsp;</p>\r\n<p class=\"\">Thanks!&nbsp; Linda and Frank Helman</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 align-column-center col-lg-6\"><span class=\"\">From the moment you arrive, you will sense the difference with personalized attention 24/7 and the exclusivity in private beach and pool areas that are intimate and tranquil. At Vidanta’s Estates at Nuevo Vacation Mexican resort, we invite you to explore the gardens and landscaping, enjoy the ocean breeze, the unparalleled panoramic view of the Pacific Ocean in a magnificent sunset, and the natural biodiversity of the Bandera’s bay. It is the kind of extraordinary Mexican vacation experience you want, and the kind of service you deserve and expect.</span></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 0em 3em 90px;\">\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-110\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"k8m4Uj5JJAQ\" data-imhwpb-asset-id=\"1111013\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-111\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"r1tjlHBnHzY\" data-imhwpb-asset-id=\"1111014\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-112\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"l5gzNmXTzIg\" data-imhwpb-asset-id=\"1111015\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-113\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"\" data-imhwpb-asset-id=\"1111016\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-114\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"sBtqOe23bd0\" data-imhwpb-asset-id=\"1111017\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-115\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"B8He4PJkMLg\" data-imhwpb-asset-id=\"1111018\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\'); background-size: cover; background-position: 50% 58%;\" data-imhwpb-asset-id=\"1111020\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\">\r\n<div class=\"container-fluid\"></div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container-fluid\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 2em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">Our Location</h2>\r\n<p class=\"\">Because we put the customer first, we always have free transportation from the airport to the resort and to your living suite.&nbsp;</p>\r\n<p class=\"\">Review the room details and let us know how we can help you have the best vacation possible.</p>\r\n\r\n<h3 class=\"color3-color\" style=\"font-weight: 400; font-size: 25px;\" data-font-weight=\"400\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address&nbsp;</h3>\r\n<p class=\"color3-color\" style=\"font-weight: 400;\" data-font-weight=\"400\">Blvd Riviera Nayarit #254, 63735 Nuevo Vallarta, Nay., Mexico</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 bg-box-flush col-lg-6\">\r\n<p class=\"\"><img class=\"bg-img alignnone wp-image-1806 size-medium\" style=\"background-color: var(--color-neutral); color: var(--color-neutral-text-contrast);\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico.jpg-2-300x210.jpg\" alt=\"Resort area showing proximity to airport and Puerto Vallarta\" width=\"300\" height=\"210\"><img class=\"bg-img alignnone wp-image-1810 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico-1.jpg-2-1-300x239.jpg\" alt=\"Close up of resort area\" width=\"300\" height=\"239\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','97-revision-v1','','','2022-04-09 20:53:16','2022-04-09 20:53:16','',97,'https://estatesatnuevo.com/?p=340',0,'revision','',0),(348,1,'2022-04-10 19:22:27','2022-04-10 19:22:27','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"color: #ffffff; background-image: url(\'https://estatesatnuevo.com/wp-content/uploads/2022/04/estatescover.jpg\'); background-size: cover; background-position: 50% 100%;\" data-image-url=\"https://estatesatnuevo.com/wp-content/estatescover.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px; background-image: url(\'https://estatescover.jpg\'); background-size: cover; background-position: 50% 100%; padding-bottom: 287px;\" data-image-url=\"https://estatescover.jpg/1500x919\">\r\n<div class=\"col-md-8 col-sm-10 col-xs-12 align-column-center col-lg-4\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n<div class=\"\"></div>\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-12 col-lg-2\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<h2 class=\"intro__title\" style=\"font-weight: 600; font-size: 36px; color: #ffffff;\" align=\"center\" data-font-weight=\"600\">Ultimate Luxury Meets Ultimate Nature</h2>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">INFORMATION</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>Named as one of the Top Hotels in Mexico and Top Hotels in the World by Travel + Leisure\'s World\'s Best Awards, Vidanta Nuevo Vallarta offers the ultimate resort vacation. This expansive destination has been carefully curated to provide a high-end experience full of options, including endless restaurants and lounges, three golf courses and a golf academy, a shopping plaza, and entertainment plaza, two indulgent spas, countless pools, and the all-new Beachland.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/info\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">SUITES</h3>\r\n<p class=\"\"><span>Discover the best that luxury vacationing has to offer at The Estates at Nuevo, a haven of high-end comfort sequestered in the sublime jungle landscape at Vidanta Nuevo Vallarta\'s 5-star resort.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-1-bedroom\">1 Bedroom</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-2-bedroom\">2 Bedrooms</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-3-bedroom\">3 Bedrooms</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-4-bedroom\">4 Bedrooms</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">ACTIVITIES</h3>\r\n<header class=\"intro__header\"></header>\r\n<div class=\"intro__lead\">\r\n<p class=\"boxcard__text\">It’s your vacation, so why not spend it doing the types of things you love to do? At Estates at Nuevo, you’ll find a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, all run by our amazing activities team, the Joy Squad.</p>\r\n<p class=\"boxcard__text\">Don’t forget to download the activities calendar and check out your resort hotel to see what activities are happening when!</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/activities\">Learn more</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">property photos</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>At the Estates at Nuevo you can kick back in a remote jungle oasis by your accommodations or enjoy a gorgeous exclusive pool and lounge area in Beachland. Ride the exclusive gondola, play golf, luxuriate in a spa setting or relax by the pool in your private sanctuary. </span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/photos\">See More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">DINING</h3>\r\n<p class=\"\"><span>With over 40 restaurants and lounges to choose from, Estates at Nuevo gives guests the opportunity to dine however they like. Options range from high-end eateries to casual restaurants to authentic Mexican spots, and even a gourmet market filled with offerings from all over the world. One thing is for sure—an amazing culinary experience is always just a meal away.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/dining\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">GOLF AND spa</h3>\r\n<header class=\"intro__header\"></header>\r\n<div class=\"intro__lead\">\r\n<p class=\"intro__text\"><span>With two of the region’s premier courses—The Nayar Course and the Norman Signature Course—plus a 10-hole, par-3 The Lakes Course, a Golf Academy, a beautiful new restaurant, and the longest golf cart suspension bridge in the world, there really is no vacation getaway for golfers that compares to Estates at Nuevo.</span></p>\r\n<p class=\"intro__text\"><span>Vacation is about restful and renewing relaxation. It’s about indulging in peace and taking a moment to enjoy the clarity of being removed from your busy home life. At Estates at Nuevo we help you embrace that serenity and harness the revitalizing powers of paradise with two beautiful, well-appointed spas.</span></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 1em;\">\r\n<div class=\"\">\r\n<div><span class=\"\">We are owners at the Estates at Nuevo Luxury Condo Suites at the Vidanta Resorts.&nbsp; We also own at the Grand Luxxe Vacation resort.&nbsp; There are several of the Vidanta resorts in Mexico but we love the Nuevo Vallarta site because it has the most to offer.&nbsp; &nbsp;</span></div>\r\n<p class=\"\">We work with other owners so we have a larger selection of rentals available. Some have already been secured with the resort and are ready to book.&nbsp; If not, then we can check on availability for your specific time frame.</p>\r\n<p class=\"\">Always happy to answer any questions you may have about the resort and ourselves.&nbsp;&nbsp;</p>\r\n<p class=\"\">Thanks!&nbsp; Linda and Frank Helman</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 align-column-center col-lg-6\"><span class=\"\">From the moment you arrive, you will sense the difference with personalized attention 24/7 and the exclusivity in private beach and pool areas that are intimate and tranquil. At Vidanta’s Estates at Nuevo Vacation Mexican resort, we invite you to explore the gardens and landscaping, enjoy the ocean breeze, the unparalleled panoramic view of the Pacific Ocean in a magnificent sunset, and the natural biodiversity of the Bandera’s bay. It is the kind of extraordinary Mexican vacation experience you want, and the kind of service you deserve and expect.</span></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 0em 3em 90px;\">\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-110\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"k8m4Uj5JJAQ\" data-imhwpb-asset-id=\"1111013\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-111\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"r1tjlHBnHzY\" data-imhwpb-asset-id=\"1111014\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-112\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"l5gzNmXTzIg\" data-imhwpb-asset-id=\"1111015\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-113\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"\" data-imhwpb-asset-id=\"1111016\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-114\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"sBtqOe23bd0\" data-imhwpb-asset-id=\"1111017\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-115\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"B8He4PJkMLg\" data-imhwpb-asset-id=\"1111018\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 2em;\">\r\n<div class=\"\">\r\n<h2 class=\"color3-color\">Our Location</h2>\r\n<p class=\"\">Because we put the customer first, we always have free transportation from the airport to the resort and to your living suite.&nbsp;</p>\r\n<p class=\"\">Review the room details and let us know how we can help you have the best vacation possible.</p>\r\n\r\n<h3 class=\"color3-color\" style=\"font-weight: 400; font-size: 25px;\" data-font-weight=\"400\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address&nbsp;</h3>\r\n<p class=\"color3-color\" style=\"font-weight: 400;\" data-font-weight=\"400\">Blvd Riviera Nayarit #254, 63735 Nuevo Vallarta, Nay., Mexico</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 bg-box-flush col-lg-6\">\r\n<p class=\"\"><img class=\"bg-img alignnone wp-image-1806 size-medium\" style=\"background-color: var(--color-neutral); color: var(--color-neutral-text-contrast);\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico.jpg-2-300x210.jpg\" alt=\"Resort area showing proximity to airport and Puerto Vallarta\" width=\"300\" height=\"210\"><img class=\"bg-img alignnone wp-image-1810 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico-1.jpg-2-1-300x239.jpg\" alt=\"Close up of resort area\" width=\"300\" height=\"239\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','97-revision-v1','','','2022-04-10 19:22:27','2022-04-10 19:22:27','',97,'https://estatesatnuevo.com/?p=348',0,'revision','',0),(347,1,'2022-04-10 19:20:43','2022-04-10 19:20:43','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"color: #ffffff; background-image: url(\'https://estatesatnuevo.com/wp-content/uploads/2022/04/estatescover.jpg\'); background-size: cover; background-position: 50% 100%;\" data-image-url=\"https://estatesatnuevo.com/wp-content/estatescover.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px; background-image: url(\'https://estatescover.jpg\'); background-size: cover; background-position: 50% 100%; padding-bottom: 287px;\" data-image-url=\"https://estatescover.jpg/1500x919\">\r\n<div class=\"col-md-8 col-sm-10 col-xs-12 align-column-center col-lg-4\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n<div class=\"\"></div>\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-12 col-lg-2\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<h2 class=\"intro__title\" style=\"font-weight: 600; font-size: 36px; color: #ffffff;\" align=\"center\" data-font-weight=\"600\">Ultimate Luxury Meets Ultimate Nature</h2>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">INFORMATION</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>Named as one of the Top Hotels in Mexico and Top Hotels in the World by Travel + Leisure\'s World\'s Best Awards, Vidanta Nuevo Vallarta offers the ultimate resort vacation. This expansive destination has been carefully curated to provide a high-end experience full of options, including endless restaurants and lounges, three golf courses and a golf academy, a shopping plaza, and entertainment plaza, two indulgent spas, countless pools, and the all-new Beachland.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/info\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">SUITES</h3>\r\n<p class=\"\"><span>Discover the best that luxury vacationing has to offer at The Estates at Nuevo, a haven of high-end comfort sequestered in the sublime jungle landscape at Vidanta Nuevo Vallarta\'s 5-star resort.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-1-bedroom\">1 Bedroom</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-2-bedroom\">2 Bedrooms</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-3-bedroom\">3 Bedrooms</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-4-bedroom\">4 Bedrooms</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">ACTIVITIES</h3>\r\n<header class=\"intro__header\"></header>\r\n<div class=\"intro__lead\">\r\n<p class=\"boxcard__text\">It’s your vacation, so why not spend it doing the types of things you love to do? At Estates at Nuevo, you’ll find a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, all run by our amazing activities team, the Joy Squad.</p>\r\n<p class=\"boxcard__text\">Don’t forget to download the activities calendar and check out your resort hotel to see what activities are happening when!</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/activities\">Learn more</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">property photos</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>At the Estates at Nuevo you can kick back in a remote jungle oasis by your accommodations or enjoy a gorgeous exclusive pool and lounge area in Beachland. Ride the exclusive gondola, play golf, luxuriate in a spa setting or relax by the pool in your private sanctuary. </span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/photos\">See More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">DINING</h3>\r\n<p class=\"\"><span>With over 40 restaurants and lounges to choose from, Estates at Nuevo gives guests the opportunity to dine however they like. Options range from high-end eateries to casual restaurants to authentic Mexican spots, and even a gourmet market filled with offerings from all over the world. One thing is for sure—an amazing culinary experience is always just a meal away.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/dining\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">GOLF AND spa</h3>\r\n<header class=\"intro__header\"></header>\r\n<div class=\"intro__lead\">\r\n<p class=\"intro__text\"><span>With two of the region’s premier courses—The Nayar Course and the Norman Signature Course—plus a 10-hole, par-3 The Lakes Course, a Golf Academy, a beautiful new restaurant, and the longest golf cart suspension bridge in the world, there really is no vacation getaway for golfers that compares to Estates at Nuevo.</span></p>\r\n<p class=\"intro__text\"><span>Vacation is about restful and renewing relaxation. It’s about indulging in peace and taking a moment to enjoy the clarity of being removed from your busy home life. At Estates at Nuevo we help you embrace that serenity and harness the revitalizing powers of paradise with two beautiful, well-appointed spas.</span></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 1em;\">\r\n<div class=\"\">\r\n<div><span class=\"\">We are owners at the Estates at Nuevo Luxury Condo Suites at the Vidanta Resorts.&nbsp; We also own at the Grand Luxxe Vacation resort.&nbsp; There are several of the Vidanta resorts in Mexico but we love the Nuevo Vallarta site because it has the most to offer.&nbsp; &nbsp;</span></div>\r\n<p class=\"\">We work with other owners so we have a larger selection of rentals available. Some have already been secured with the resort and are ready to book.&nbsp; If not, then we can check on availability for your specific time frame.</p>\r\n<p class=\"\">Always happy to answer any questions you may have about the resort and ourselves.&nbsp;&nbsp;</p>\r\n<p class=\"\">Thanks!&nbsp; Linda and Frank Helman</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 align-column-center col-lg-6\"><span class=\"\">From the moment you arrive, you will sense the difference with personalized attention 24/7 and the exclusivity in private beach and pool areas that are intimate and tranquil. At Vidanta’s Estates at Nuevo Vacation Mexican resort, we invite you to explore the gardens and landscaping, enjoy the ocean breeze, the unparalleled panoramic view of the Pacific Ocean in a magnificent sunset, and the natural biodiversity of the Bandera’s bay. It is the kind of extraordinary Mexican vacation experience you want, and the kind of service you deserve and expect.</span></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 0em 3em 90px;\">\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-110\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"k8m4Uj5JJAQ\" data-imhwpb-asset-id=\"1111013\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-111\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"r1tjlHBnHzY\" data-imhwpb-asset-id=\"1111014\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-112\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"l5gzNmXTzIg\" data-imhwpb-asset-id=\"1111015\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-113\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"\" data-imhwpb-asset-id=\"1111016\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-114\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"sBtqOe23bd0\" data-imhwpb-asset-id=\"1111017\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-115\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"B8He4PJkMLg\" data-imhwpb-asset-id=\"1111018\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\'); background-size: cover; background-position: 50% 58%;\" data-imhwpb-asset-id=\"1111020\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\">\r\n<div class=\"container-fluid\"></div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container-fluid\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 2em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">Our Location</h2>\r\n<p class=\"\">Because we put the customer first, we always have free transportation from the airport to the resort and to your living suite.&nbsp;</p>\r\n<p class=\"\">Review the room details and let us know how we can help you have the best vacation possible.</p>\r\n\r\n<h3 class=\"color3-color\" style=\"font-weight: 400; font-size: 25px;\" data-font-weight=\"400\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address&nbsp;</h3>\r\n<p class=\"color3-color\" style=\"font-weight: 400;\" data-font-weight=\"400\">Blvd Riviera Nayarit #254, 63735 Nuevo Vallarta, Nay., Mexico</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 bg-box-flush col-lg-6\">\r\n<p class=\"\"><img class=\"bg-img alignnone wp-image-1806 size-medium\" style=\"background-color: var(--color-neutral); color: var(--color-neutral-text-contrast);\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico.jpg-2-300x210.jpg\" alt=\"Resort area showing proximity to airport and Puerto Vallarta\" width=\"300\" height=\"210\"><img class=\"bg-img alignnone wp-image-1810 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico-1.jpg-2-1-300x239.jpg\" alt=\"Close up of resort area\" width=\"300\" height=\"239\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','97-revision-v1','','','2022-04-10 19:20:43','2022-04-10 19:20:43','',97,'https://estatesatnuevo.com/?p=347',0,'revision','',0),(345,1,'2022-04-09 21:33:24','2022-04-09 21:33:24','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"color: #ffffff; background-image: url(\'https://estatesatnuevo.com/wp-content/uploads/2022/04/estatescover.jpg\'); background-size: cover; background-position: 50% 100%;\" data-image-url=\"https://estatesatnuevo.com/wp-content/estatescover.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px; background-image: url(\'https://estatescover.jpg\'); background-size: cover; background-position: 50% 100%; padding-bottom: 0px;\" data-image-url=\"https://estatescover.jpg/1500x919\">\r\n<div class=\"col-md-2 col-sm-2 col-xs-12 col-lg-2\"></div>\r\n<div class=\"col-md-8 col-sm-10 col-xs-12 align-column-center col-lg-8\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-305 \" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/0_0_300_183.80952380952_Vidanta-nuevo-vallarta-the-estates-rooms-gallery-2.jpg\" alt=\"\" width=\"731\" height=\"449\"></p>\r\n\r\n<div class=\"\"></div>\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-12 col-lg-2\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<h2 class=\"intro__title\" style=\"font-weight: 600; font-size: 36px; color: #ffffff;\" align=\"center\" data-font-weight=\"600\">Ultimate Luxury Meets Ultimate Nature</h2>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">INFORMATION</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>Named as one of the Top Hotels in Mexico and Top Hotels in the World by Travel + Leisure\'s World\'s Best Awards, Vidanta Nuevo Vallarta offers the ultimate resort vacation. This expansive destination has been carefully curated to provide a high-end experience full of options, including endless restaurants and lounges, three golf courses and a golf academy, a shopping plaza, and entertainment plaza, two indulgent spas, countless pools, and the all-new Beachland.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/info\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">SUITES</h3>\r\n<p class=\"\"><span>Discover the best that luxury vacationing has to offer at The Estates at Nuevo, a haven of high-end comfort sequestered in the sublime jungle landscape at Vidanta Nuevo Vallarta\'s 5-star resort.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-1-bedroom\">1 Bedroom</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-2-bedroom\">2 Bedrooms</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-3-bedroom\">3 Bedrooms</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-4-bedroom\">4 Bedrooms</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">ACTIVITIES</h3>\r\n<header class=\"intro__header\"></header>\r\n<div class=\"intro__lead\">\r\n<p class=\"boxcard__text\">It’s your vacation, so why not spend it doing the types of things you love to do? At Estates at Nuevo, you’ll find a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, all run by our amazing activities team, the Joy Squad.</p>\r\n<p class=\"boxcard__text\">Don’t forget to download the activities calendar and check out your resort hotel to see what activities are happening when!</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/activities\">Learn more</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">property photos</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>At the Estates at Nuevo you can kick back in a remote jungle oasis by your accommodations or enjoy a gorgeous exclusive pool and lounge area in Beachland. Ride the exclusive gondola, play golf, luxuriate in a spa setting or relax by the pool in your private sanctuary. </span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/photos\">See More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">DINING</h3>\r\n<p class=\"\"><span>With over 40 restaurants and lounges to choose from, Estates at Nuevo gives guests the opportunity to dine however they like. Options range from high-end eateries to casual restaurants to authentic Mexican spots, and even a gourmet market filled with offerings from all over the world. One thing is for sure—an amazing culinary experience is always just a meal away.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/dining\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">GOLF AND spa</h3>\r\n<header class=\"intro__header\"></header>\r\n<div class=\"intro__lead\">\r\n<p class=\"intro__text\"><span>With two of the region’s premier courses—The Nayar Course and the Norman Signature Course—plus a 10-hole, par-3 The Lakes Course, a Golf Academy, a beautiful new restaurant, and the longest golf cart suspension bridge in the world, there really is no vacation getaway for golfers that compares to Estates at Nuevo.</span></p>\r\n<p class=\"intro__text\"><span>Vacation is about restful and renewing relaxation. It’s about indulging in peace and taking a moment to enjoy the clarity of being removed from your busy home life. At Estates at Nuevo we help you embrace that serenity and harness the revitalizing powers of paradise with two beautiful, well-appointed spas.</span></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 1em;\">\r\n<div class=\"\">\r\n<div><span class=\"\">We are owners at the Estates at Nuevo Luxury Condo Suites at the Vidanta Resorts.&nbsp; We also own at the Grand Luxxe Vacation resort.&nbsp; There are several of the Vidanta resorts in Mexico but we love the Nuevo Vallarta site because it has the most to offer.&nbsp; &nbsp;</span></div>\r\n<p class=\"\">We work with other owners so we have a larger selection of rentals available. Some have already been secured with the resort and are ready to book.&nbsp; If not, then we can check on availability for your specific time frame.</p>\r\n<p class=\"\">Always happy to answer any questions you may have about the resort and ourselves.&nbsp;&nbsp;</p>\r\n<p class=\"\">Thanks!&nbsp; Linda and Frank Helman</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 align-column-center col-lg-6\"><span class=\"\">From the moment you arrive, you will sense the difference with personalized attention 24/7 and the exclusivity in private beach and pool areas that are intimate and tranquil. At Vidanta’s Estates at Nuevo Vacation Mexican resort, we invite you to explore the gardens and landscaping, enjoy the ocean breeze, the unparalleled panoramic view of the Pacific Ocean in a magnificent sunset, and the natural biodiversity of the Bandera’s bay. It is the kind of extraordinary Mexican vacation experience you want, and the kind of service you deserve and expect.</span></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 0em 3em 90px;\">\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-110\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"k8m4Uj5JJAQ\" data-imhwpb-asset-id=\"1111013\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-111\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"r1tjlHBnHzY\" data-imhwpb-asset-id=\"1111014\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-112\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"l5gzNmXTzIg\" data-imhwpb-asset-id=\"1111015\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-113\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"\" data-imhwpb-asset-id=\"1111016\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-114\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"sBtqOe23bd0\" data-imhwpb-asset-id=\"1111017\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-115\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"B8He4PJkMLg\" data-imhwpb-asset-id=\"1111018\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\'); background-size: cover; background-position: 50% 58%;\" data-imhwpb-asset-id=\"1111020\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\">\r\n<div class=\"container-fluid\"></div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container-fluid\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 2em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">Our Location</h2>\r\n<p class=\"\">Because we put the customer first, we always have free transportation from the airport to the resort and to your living suite.&nbsp;</p>\r\n<p class=\"\">Review the room details and let us know how we can help you have the best vacation possible.</p>\r\n\r\n<h3 class=\"color3-color\" style=\"font-weight: 400; font-size: 25px;\" data-font-weight=\"400\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address&nbsp;</h3>\r\n<p class=\"color3-color\" style=\"font-weight: 400;\" data-font-weight=\"400\">Blvd Riviera Nayarit #254, 63735 Nuevo Vallarta, Nay., Mexico</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 bg-box-flush col-lg-6\">\r\n<p class=\"\"><img class=\"bg-img alignnone wp-image-1806 size-medium\" style=\"background-color: var(--color-neutral); color: var(--color-neutral-text-contrast);\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico.jpg-2-300x210.jpg\" alt=\"Resort area showing proximity to airport and Puerto Vallarta\" width=\"300\" height=\"210\"><img class=\"bg-img alignnone wp-image-1810 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico-1.jpg-2-1-300x239.jpg\" alt=\"Close up of resort area\" width=\"300\" height=\"239\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','97-revision-v1','','','2022-04-09 21:33:24','2022-04-09 21:33:24','',97,'https://estatesatnuevo.com/?p=345',0,'revision','',0),(403,1,'2023-06-21 18:55:59','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2023-06-21 18:55:59','0000-00-00 00:00:00','',0,'https://estatesatnuevo.com/?p=403',0,'post','',0),(349,1,'2022-04-10 19:28:28','2022-04-10 19:28:28','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-7 col-xs-12 col-sm-12 col-lg-7\">\r\n<h3 class=\"color3-color\" style=\"font-family: Chonburi; font-weight: 600; font-style: normal; font-size: 25px; text-align: center;\" data-font-family=\"Chonburi\" data-font-weight=\"600\" data-font-style=\"normal\">MONEY and CREDIT CARDS</h3>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">The Estates at Nuevo is a cashless resort meaning you do not use cash on the property. You provide a credit card when you check-in and sign the bills with your name and room number. Each person in the condo is required to sign in and you will be asked to sign on a electronic signature pad so your signature can be checked when you sign your bills. You settle your account when you leave.&nbsp;</p>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">The money in Mexico is pesos and the sign is a $ sign. When you are looking at prices, if it\'s $240, it\'s really about $13.50 USD depending on the current currency exchange.&nbsp;&nbsp;</p>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">The resort and local banks will require your passport to convert currency should you require it.&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-5 col-xs-12 col-sm-12 col-lg-5\">\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-1399 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/money-300x158.jpg\" alt=\"Money in different currencies\" width=\"300\" height=\"158\" data-imhwpb-built-photo-search=\"93|landscape\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-5 text-center col-xs-12 col-lg-6\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-1834\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/pvairport-300x199.jpg\" alt=\"Puerto Vallarta Airport\" width=\"434\" height=\"288\"></p>\r\n<p class=\"mod-img\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-7 col-xs-12 col-lg-6\">\r\n<h2 class=\"color3-color\" style=\"font-family: Chonburi; font-weight: 600; font-size: 25px; text-align: center;\" data-font-family=\"Chonburi\" data-font-weight=\"600\" data-font-style=\"\">At the Airport</h2>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">You need to have your custom forms completed before entering immigration area.&nbsp; If possible, do this on the plane before you disembark.&nbsp; Once you get through immigration, walk to your baggage and then to customs where you will push a button to register green or red. If red, they will inspect your luggage, if green, walk on through to locate the Gapsa taxi driver hostess with your name on their list.&nbsp; Be sure you follow the instructions that will be sent when you request your free transportation to the resort.&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-5 text-center col-xs-12 col-lg-6\" style=\"padding-right: 0em; padding-left: 0em;\">\r\n<p class=\"color3-color\" style=\"font-family: Chonburi; font-weight: 600; font-size: 25px; text-align: center;\" data-font-family=\"Chonburi\" data-font-weight=\"600\" data-font-style=\"\">AMENITIES IN YOUR CONDO</p>\r\n<p class=\"color3-color\" style=\"margin-left: 32px; margin-right: 18px; text-align: left; font-weight: 600;\" data-font-weight=\"600\">Each condo has a kitchen area with refrigerator, coffee pot, blender, dishes, pots and pans, cutlery, etc.&nbsp; And each bedroom has a robe and free slippers, luxury toiletries, and a hair dryer as well as a flat screen television and a desk with chair,&nbsp; The market has a selection of groceries for all your needs.</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-7 col-xs-12 col-lg-6\">\r\n<h4 class=\"color3-color\" style=\"font-family: Chonburi; font-weight: 600; font-size: 25px; text-align: center;\" data-font-family=\"Chonburi\" data-font-weight=\"600\" data-font-style=\"\">DAILY MAID SERVICE</h4>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">Daily maid service is included. They make beds, dust, generally cleaning but not dishes.&nbsp; They work in shifts so if you intend to leave a tip, do it daily rather than at the end of your stay.&nbsp; There is also a nightly turn-down service with chocolates by your bed.&nbsp;&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-5 text-center col-xs-12 col-lg-6\">\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-299 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/30_0_300_203.15789473684_vidanta-nuevovallarta-ataglance-gallery-15.jpg\" alt=\"\" width=\"300\" height=\"203\" data-imhwpb-built-photo-search=\"92|landscape\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-1045 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Spatium-1-300x203.jpg\" alt=\"Spatium area\" width=\"300\" height=\"203\" data-imhwpb-built-photo-search=\"92|landscape\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-7 col-xs-12 col-lg-6\">\r\n<h2 class=\"color3-color\" style=\"font-family: Chonburi; font-weight: 600; font-size: 25px; text-align: center;\" data-font-family=\"Chonburi\" data-font-weight=\"600\" data-font-style=\"\">General info</h2>\r\n<h4 class=\"color3-color\" style=\"font-family: Chonburi; font-weight: 600; text-align: center;\" data-font-family=\"Chonburi\" data-font-weight=\"600\" data-font-style=\"\">Other stuff that\'s good to know.</h4>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">We have tried to provide all the information for your vacation, however feel free to contact us with any questions.</p>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">The sun can be strong, so bring sunglasses and sun screen.&nbsp;&nbsp;</p>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">There is free wi-fi and internet in each condo as well as in most places on the property.&nbsp; &nbsp;&nbsp;</p>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">The resort has a filtration system so the water is safe to drink and fruits and vegetables are locally grown and safe to consume.&nbsp; &nbsp; &nbsp;</p>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">The gym has state-of-the art equipment and is free to use. Please wear sneakers.&nbsp; &nbsp;&nbsp;</p>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">The Spatium spa has free water areas that include a sauna, steam room, whirlpool, and cold plunge pool.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Info','','inherit','closed','closed','','101-revision-v1','','','2022-04-10 19:28:28','2022-04-10 19:28:28','',101,'https://estatesatnuevo.com/?p=349',0,'revision','',0),(350,1,'2022-04-10 19:43:55','2022-04-10 19:43:55','<div class=\"color1-background-color color-1-text-contrast bg-background-color tmpl-portfolio-6 boldgrid-section dynamic-gridblock\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding: 20px 0px 0px;\">\n<div class=\"col-md-12 col-xs-12 col-sm-12 text-center col-lg-12\"><footer>&nbsp;\n<h1 class=\"\" style=\"margin: 5px 0px; letter-spacing: 4.9px; font-weight: 600; font-size: 23px;\" data-font-weight=\"600\">&nbsp; &nbsp; FINE DINING</h1>\n</footer></div>\n</div>\n</div>\n</div>\n<div class=\"tmpl-services-4 boldgrid-section dynamic-gridblock color1-background-color color-1-text-contrast bg-background-color\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 34px;\">\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1058 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Azur-300x184.jpg\" alt=\"Azur French Restaurant\" width=\"300\" height=\"184\"></p>\n\n<div class=\"row\">\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\n<ul>\n 	<li>Bistro Bleu – French Flair with a twist</li>\n</ul>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1059 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Costa-300x184.jpg\" alt=\"Costa Arena seafood restaurant\" width=\"300\" height=\"184\"></p>\n\n<div class=\"row\">\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\n<ul>\n 	<li>Puerto Manjar – California – inspired Seafood</li>\n</ul>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1060 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Epazote-300x184.jpg\" alt=\"Epazote Mexican restaurant\" width=\"300\" height=\"184\"></p>\n\n<div class=\"row\">\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\n<ul>\n 	<li>Brezza at The Estates – A Mediterranean flavor</li>\n</ul>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"tmpl-services-4 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(#203356, #446cb3);\" data-bg-color-1=\"#203356\" data-bg-color-2=\"#446cb3\" data-bg-direction=\"to bottom\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 24px;\">\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1061 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/gong-300x184.jpg\" alt=\"Gong Asian Restaurant\" width=\"300\" height=\"184\"></p>\n\n<div class=\"row\">\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\n<ul>\n 	<li>Gong Restaurant – Far East Favorites</li>\n</ul>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1062 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/quinto-300x184.jpg\" alt=\"Quinto Charcoal Grill\" width=\"300\" height=\"184\"></p>\n\n<div class=\"row\">\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\n<ul>\n 	<li>Quinto Charcoal Grill- The Best of Land and Sea</li>\n</ul>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1063 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/burger-300x184.jpg\" alt=\"Burger Custom Made\" width=\"300\" height=\"184\"></p>\n\n<div class=\"row\">\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\n<ul>\n 	<li>Burger Custom Made –&nbsp;Reimagining the Burger</li>\n</ul>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"tmpl-services-4 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(#203356, #446cb3);\" data-bg-color-1=\"#203356\" data-bg-color-2=\"#446cb3\" data-bg-direction=\"to bottom\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1064 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/tramonto-300x184.jpg\" alt=\"Tramonto Italian\" width=\"300\" height=\"184\"></p>\n\n<div class=\"row\">\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\n<ul>\n 	<li>Tramonto – Tratoria in Paradise</li>\n</ul>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1811 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/ameca-300x184.jpg\" alt=\"Ameca Grill\" width=\"300\" height=\"184\"></p>\n\n<div class=\"row\">\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\n<ul>\n 	<li>Ameca Social House – Le Petit Chef presentation</li>\n</ul>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1366 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Cafe-300x184.jpg\" alt=\"Cafe del Lago Buffet\" width=\"300\" height=\"184\"></p>\n\n<div class=\"row\">\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\n<ul>\n 	<li>Cafe Del Lago – Morning Lake Views</li>\n</ul>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section color1-background-color color-1-text-contrast bg-background-color\">\n<div class=\"container\"></div>\n</div>\n<div class=\"boldgrid-section color1-background-color color-1-text-contrast bg-background-color\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\n<p class=\"\" style=\"text-align: center; font-size: 25px;\">Casual Dining, Bars and Lounges, Great in-room Dining</p>\n\n</div>\n</div>\n<div class=\"row\">\n<p class=\"\" style=\"font-weight: 600; font-size: 23px;\" data-font-family=\"\" data-font-weight=\"600\" data-font-style=\"\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</p>\n\n<div class=\"row gridblock\" style=\"padding-bottom: 0px; padding-top: 0px;\">\n<div class=\"col-md-6 col-xs-12 col-sm-12 col-lg-6\">\n<p class=\"\">Balance - Healthy&nbsp; food and drinks</p>\n<p class=\"\">Chiringuito - Authentic Spanish food</p>\n<p class=\"\">Beachland -Street foods &amp; vendors</p>\n<p class=\"\">La Cantina - Mexican Bar and comfort food</p>\n<p class=\"\">Ola Mulata - Lunch and early dinner</p>\nEstates Lounge Deck - Snacks &amp; drinks\n\nSi Snack - Poolside dining&nbsp;\n<p class=\"\">Sky Garden - Residence rooftop dining</p>\nPar Break - Breakfast/lunch/snacks\n<p class=\"\">Pool Bars - Swim up service</p>\n<p class=\"\">Salum - Snacks/cocktails/music</p>\nPool bar at the Estates - Snacks &amp; drinks\n<p class=\"\">Grand Lobby Bar - Lobby of Grand Mayan</p>\n\n</div>\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\">\n<p class=\"\">Balche - Sandwiches and snacks</p>\n<p class=\"\">Green Table - Organic light fare</p>\nPizza To Go - Room service only\n<p class=\"\">Limon y Sal - Ceviche and other seafoods</p>\n<p class=\"\">Samba - Breakfast buffet, international lunch and dinner</p>\n<p class=\"\">Sweet Paris - Sweet and savory crepes</p>\n<p class=\"\">Tacos Break - Traditional Mexican</p>\nRoom Service - 24 hour service\n\nGrill at the Estates - Breakfast &amp; lunch\n<p class=\"\">Grand Vista Bar - Lobby of Grand Bliss</p>\n<p class=\"\">Luxxe Bar - Near Epazote Restaurant</p>\n<p class=\"\">Santuario - Nightly theme Entertainment&nbsp;</p>\n\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\"></div>\n</div>\n</div>','Dining','','inherit','closed','closed','','330-autosave-v1','','','2022-04-10 19:43:55','2022-04-10 19:43:55','',330,'https://estatesatnuevo.com/?p=350',0,'revision','',0),(355,1,'2022-04-10 19:42:29','2022-04-10 19:42:29','<div class=\"color1-background-color color-1-text-contrast bg-background-color tmpl-portfolio-6 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 20px 0px 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 text-center col-lg-12\"><footer>&nbsp;\r\n<h1 class=\"\" style=\"margin: 5px 0px; letter-spacing: 4.9px; font-weight: 600; font-size: 23px;\" data-font-weight=\"600\">&nbsp; &nbsp; FINE DINING</h1>\r\n</footer></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-4 boldgrid-section dynamic-gridblock color1-background-color color-1-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 34px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1058 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Azur-300x184.jpg\" alt=\"Azur French Restaurant\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Bistro Bleu – French Flair with a twist</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1059 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Costa-300x184.jpg\" alt=\"Costa Arena seafood restaurant\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Puerto Manjar – California – inspired Seafood</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1060 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Epazote-300x184.jpg\" alt=\"Epazote Mexican restaurant\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Brezza at The Estates – A Mediterranean flavor</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-4 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(#203356, #446cb3);\" data-bg-color-1=\"#203356\" data-bg-color-2=\"#446cb3\" data-bg-direction=\"to bottom\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 24px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1061 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/gong-300x184.jpg\" alt=\"Gong Asian Restaurant\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Gong Restaurant – Far East Favorites</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1062 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/quinto-300x184.jpg\" alt=\"Quinto Charcoal Grill\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Quinto Charcoal Grill- The Best of Land and Sea</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1063 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/burger-300x184.jpg\" alt=\"Burger Custom Made\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Burger Custom Made –&nbsp;Reimagining the Burger</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-4 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(#203356, #446cb3);\" data-bg-color-1=\"#203356\" data-bg-color-2=\"#446cb3\" data-bg-direction=\"to bottom\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1064 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/tramonto-300x184.jpg\" alt=\"Tramonto Italian\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Tramonto – Tratoria in Paradise</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1811 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/ameca-300x184.jpg\" alt=\"Ameca Grill\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Ameca Social House – Le Petit Chef presentation</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1366 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Cafe-300x184.jpg\" alt=\"Cafe del Lago Buffet\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Cafe Del Lago – Morning Lake Views</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color1-background-color color-1-text-contrast bg-background-color\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section color1-background-color color-1-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\r\n<p class=\"\" style=\"text-align: center; font-size: 25px;\">Casual Dining, Bars and Lounges, Great in-room Dining</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\">\r\n<p class=\"\" style=\"font-weight: 600; font-size: 23px;\" data-font-family=\"\" data-font-weight=\"600\" data-font-style=\"\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</p>\r\n\r\n<div class=\"row gridblock\" style=\"padding-bottom: 0px; padding-top: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12 col-lg-6\">\r\n<p class=\"\">Balance - Healthy&nbsp; food and drinks</p>\r\n<p class=\"\">Chiringuito - Authentic Spanish food</p>\r\n<p class=\"\">Beachland -Street foods &amp; vendors</p>\r\n<p class=\"\">La Cantina - Mexican Bar and comfort food</p>\r\n<p class=\"\">Ola Mulata - Lunch and early dinner</p>\r\nEstates Lounge Deck - Snacks &amp; drinks\r\n\r\nSi Snack - Poolside dining&nbsp;\r\n<p class=\"\">Sky Garden - Residence rooftop dining</p>\r\nPar Break - Breakfast/lunch/snacks\r\n<p class=\"\">Pool Bars - Swim up service</p>\r\n<p class=\"\">Salum - Snacks/cocktails/music</p>\r\nPool bar at the Estates - Snacks &amp; drinks\r\n<p class=\"\">Grand Lobby Bar - Lobby of Grand Mayan</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\">\r\n<p class=\"\">Balche - Sandwiches and snacks</p>\r\n<p class=\"\">Green Table - Organic light fare</p>\r\nPizza To Go - Room service only\r\n<p class=\"\">Limon y Sal - Ceviche and other seafoods</p>\r\n<p class=\"\">Samba - Breakfast buffet, international lunch and dinner</p>\r\n<p class=\"\">Sweet Paris - Sweet and savory crepes</p>\r\n<p class=\"\">Tacos Break - Traditional Mexican</p>\r\nRoom Service - 24 hour service\r\n\r\nGrill at the Estates - Breakfast &amp; lunch\r\n<p class=\"\">Grand Vista Bar - Lobby of Grand Bliss</p>\r\n<p class=\"\">Luxxe Bar - Near Epazote Restaurant</p>\r\n<p class=\"\">Santuario - Nightly theme Entertainment&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n</div>\r\n</div>\r\n</div>','Dining','','inherit','closed','closed','','330-revision-v1','','','2022-04-10 19:42:29','2022-04-10 19:42:29','',330,'https://estatesatnuevo.com/?p=355',0,'revision','',0),(352,1,'2022-04-10 19:33:10','2022-04-10 19:33:10','<div class=\"color1-background-color color-1-text-contrast bg-background-color tmpl-portfolio-6 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 20px 0px 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 text-center col-lg-12\">\r\n\r\n&nbsp;\r\n<h3 class=\"\" style=\"margin: 5px 0px; letter-spacing: 4.9px; font-weight: 600; font-size: 23px;\" data-font-weight=\"600\">&nbsp; &nbsp; FINE DINING</h3>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-4 boldgrid-section dynamic-gridblock color1-background-color color-1-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 34px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1058 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Azur-300x184.jpg\" alt=\"Azur French Restaurant\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Bistro Bleu – French Flair with a twist</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1059 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Costa-300x184.jpg\" alt=\"Costa Arena seafood restaurant\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Puerto Manjar – California – inspired Seafood</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1060 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Epazote-300x184.jpg\" alt=\"Epazote Mexican restaurant\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Brezza at The Estates – A Mediterranean flavor</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-4 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(#203356, #446cb3);\" data-bg-color-1=\"#203356\" data-bg-color-2=\"#446cb3\" data-bg-direction=\"to bottom\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 24px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1061 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/gong-300x184.jpg\" alt=\"Gong Asian Restaurant\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Gong Restaurant – Far East Favorites</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1062 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/quinto-300x184.jpg\" alt=\"Quinto Charcoal Grill\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Quinto Charcoal Grill- The Best of Land and Sea</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1063 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/burger-300x184.jpg\" alt=\"Burger Custom Made\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Burger Custom Made –&nbsp;Reimagining the Burger</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-4 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(#203356, #446cb3);\" data-bg-color-1=\"#203356\" data-bg-color-2=\"#446cb3\" data-bg-direction=\"to bottom\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1064 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/tramonto-300x184.jpg\" alt=\"Tramonto Italian\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Tramonto – Tratoria in Paradise</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1811 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/ameca-300x184.jpg\" alt=\"Ameca Grill\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Ameca Social House – Le Petit Chef presentation</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1366 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Cafe-300x184.jpg\" alt=\"Cafe del Lago Buffet\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Cafe Del Lago – Morning Lake Views</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color1-background-color color-1-text-contrast bg-background-color\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section color1-background-color color-1-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\r\n<p class=\"\" style=\"text-align: center; font-size: 25px;\">Casual Dining, Bars and Lounges, Great in-room Dining</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\">\r\n<p class=\"\" style=\"font-weight: 600; font-size: 23px;\" data-font-family=\"\" data-font-weight=\"600\" data-font-style=\"\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</p>\r\n\r\n<div class=\"row gridblock\" style=\"padding-bottom: 0px; padding-top: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12 col-lg-6\">\r\n<p class=\"\">Balance - Healthy&nbsp; food and drinks</p>\r\n<p class=\"\">Chiringuito - Authentic Spanish food</p>\r\n<p class=\"\">Beachland -Street foods &amp; vendors</p>\r\n<p class=\"\">La Cantina - Mexican Bar and comfort food</p>\r\n<p class=\"\">Ola Mulata - Lunch and early dinner</p>\r\nEstates Lounge Deck - Snacks &amp; drinks\r\n\r\nSi Snack - Poolside dining&nbsp;\r\n<p class=\"\">Sky Garden - Residence rooftop dining</p>\r\nPar Break - Breakfast/lunch/snacks\r\n<p class=\"\">Pool Bars - Swim up service</p>\r\n<p class=\"\">Salum - Snacks/cocktails/music</p>\r\nPool bar at the Estates - Snacks &amp; drinks\r\n<p class=\"\">Grand Lobby Bar - Lobby of Grand Mayan</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\">\r\n<p class=\"\">Balche - Sandwiches and snacks</p>\r\n<p class=\"\">Green Table - Organic light fare</p>\r\nPizza To Go - Room service only\r\n<p class=\"\">Limon y Sal - Ceviche and other seafoods</p>\r\n<p class=\"\">Samba - Breakfast buffet, international lunch and dinner</p>\r\n<p class=\"\">Sweet Paris - Sweet and savory crepes</p>\r\n<p class=\"\">Tacos Break - Traditional Mexican</p>\r\nRoom Service - 24 hour service\r\n\r\nGrill at the Estates - Breakfast &amp; lunch\r\n<p class=\"\">Grand Vista Bar - Lobby of Grand Bliss</p>\r\n<p class=\"\">Luxxe Bar - Near Epazote Restaurant</p>\r\n<p class=\"\">Santuario - Nightly theme Entertainment&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Dining','','inherit','closed','closed','','330-revision-v1','','','2022-04-10 19:33:10','2022-04-10 19:33:10','',330,'https://estatesatnuevo.com/?p=352',0,'revision','',0),(351,1,'2022-04-10 19:32:23','2022-04-10 19:32:23','<div class=\"color1-background-color color-1-text-contrast bg-background-color tmpl-portfolio-6 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 20px 0px 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 text-center col-lg-12\">\r\n<h3 class=\"\" style=\"margin: 5px 0px; letter-spacing: 4.9px; font-weight: 600; font-size: 30px; text-align: center;\" data-font-weight=\"600\">DININg</h3>\r\n&nbsp;\r\n<h3 class=\"\" style=\"margin: 5px 0px; letter-spacing: 4.9px; font-weight: 600; font-size: 23px;\" data-font-weight=\"600\">&nbsp; &nbsp; FINE DINING</h3>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-4 boldgrid-section dynamic-gridblock color1-background-color color-1-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 34px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1058 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Azur-300x184.jpg\" alt=\"Azur French Restaurant\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Bistro Bleu – French Flair with a twist</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1059 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Costa-300x184.jpg\" alt=\"Costa Arena seafood restaurant\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Puerto Manjar – California – inspired Seafood</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1060 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Epazote-300x184.jpg\" alt=\"Epazote Mexican restaurant\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Brezza at The Estates – A Mediterranean flavor</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-4 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(#203356, #446cb3);\" data-bg-color-1=\"#203356\" data-bg-color-2=\"#446cb3\" data-bg-direction=\"to bottom\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 24px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1061 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/gong-300x184.jpg\" alt=\"Gong Asian Restaurant\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Gong Restaurant – Far East Favorites</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1062 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/quinto-300x184.jpg\" alt=\"Quinto Charcoal Grill\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Quinto Charcoal Grill- The Best of Land and Sea</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1063 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/burger-300x184.jpg\" alt=\"Burger Custom Made\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Burger Custom Made –&nbsp;Reimagining the Burger</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-4 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(#203356, #446cb3);\" data-bg-color-1=\"#203356\" data-bg-color-2=\"#446cb3\" data-bg-direction=\"to bottom\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1064 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/tramonto-300x184.jpg\" alt=\"Tramonto Italian\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Tramonto – Tratoria in Paradise</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1811 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/ameca-300x184.jpg\" alt=\"Ameca Grill\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Ameca Social House – Le Petit Chef presentation</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1366 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Cafe-300x184.jpg\" alt=\"Cafe del Lago Buffet\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Cafe Del Lago – Morning Lake Views</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color1-background-color color-1-text-contrast bg-background-color\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section color1-background-color color-1-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\r\n<p class=\"\" style=\"text-align: center; font-size: 25px;\">Casual Dining, Bars and Lounges, Great in-room Dining</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\">\r\n<p class=\"\" style=\"font-weight: 600; font-size: 23px;\" data-font-family=\"\" data-font-weight=\"600\" data-font-style=\"\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</p>\r\n\r\n<div class=\"row gridblock\" style=\"padding-bottom: 0px; padding-top: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12 col-lg-6\">\r\n<p class=\"\">Balance - Healthy&nbsp; food and drinks</p>\r\n<p class=\"\">Chiringuito - Authentic Spanish food</p>\r\n<p class=\"\">Beachland -Street foods &amp; vendors</p>\r\n<p class=\"\">La Cantina - Mexican Bar and comfort food</p>\r\n<p class=\"\">Ola Mulata - Lunch and early dinner</p>\r\nEstates Lounge Deck - Snacks &amp; drinks\r\n\r\nSi Snack - Poolside dining&nbsp;\r\n<p class=\"\">Sky Garden - Residence rooftop dining</p>\r\nPar Break - Breakfast/lunch/snacks\r\n<p class=\"\">Pool Bars - Swim up service</p>\r\n<p class=\"\">Salum - Snacks/cocktails/music</p>\r\nPool bar at the Estates - Snacks &amp; drinks\r\n<p class=\"\">Grand Lobby Bar - Lobby of Grand Mayan</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\">\r\n<p class=\"\">Balche - Sandwiches and snacks</p>\r\n<p class=\"\">Green Table - Organic light fare</p>\r\nPizza To Go - Room service only\r\n<p class=\"\">Limon y Sal - Ceviche and other seafoods</p>\r\n<p class=\"\">Samba - Breakfast buffet, international lunch and dinner</p>\r\n<p class=\"\">Sweet Paris - Sweet and savory crepes</p>\r\n<p class=\"\">Tacos Break - Traditional Mexican</p>\r\nRoom Service - 24 hour service\r\n\r\nGrill at the Estates - Breakfast &amp; lunch\r\n<p class=\"\">Grand Vista Bar - Lobby of Grand Bliss</p>\r\n<p class=\"\">Luxxe Bar - Near Epazote Restaurant</p>\r\n<p class=\"\">Santuario - Nightly theme Entertainment&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Dining','','inherit','closed','closed','','330-revision-v1','','','2022-04-10 19:32:23','2022-04-10 19:32:23','',330,'https://estatesatnuevo.com/?p=351',0,'revision','',0),(353,1,'2022-04-10 19:36:05','2022-04-10 19:36:05','<div class=\"color1-background-color color-1-text-contrast bg-background-color tmpl-portfolio-6 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 20px 0px 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 text-center col-lg-12\">\r\n\r\n&nbsp;\r\n<h1 class=\"\" style=\"margin: 5px 0px; letter-spacing: 4.9px; font-weight: 600; font-size: 23px;\" data-font-weight=\"600\">&nbsp; &nbsp; FINE DINING</h1>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-4 boldgrid-section dynamic-gridblock color1-background-color color-1-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 34px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1058 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Azur-300x184.jpg\" alt=\"Azur French Restaurant\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Bistro Bleu – French Flair with a twist</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1059 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Costa-300x184.jpg\" alt=\"Costa Arena seafood restaurant\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Puerto Manjar – California – inspired Seafood</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1060 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Epazote-300x184.jpg\" alt=\"Epazote Mexican restaurant\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Brezza at The Estates – A Mediterranean flavor</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-4 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(#203356, #446cb3);\" data-bg-color-1=\"#203356\" data-bg-color-2=\"#446cb3\" data-bg-direction=\"to bottom\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 24px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1061 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/gong-300x184.jpg\" alt=\"Gong Asian Restaurant\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Gong Restaurant – Far East Favorites</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1062 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/quinto-300x184.jpg\" alt=\"Quinto Charcoal Grill\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Quinto Charcoal Grill- The Best of Land and Sea</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1063 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/burger-300x184.jpg\" alt=\"Burger Custom Made\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Burger Custom Made –&nbsp;Reimagining the Burger</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-4 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(#203356, #446cb3);\" data-bg-color-1=\"#203356\" data-bg-color-2=\"#446cb3\" data-bg-direction=\"to bottom\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1064 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/tramonto-300x184.jpg\" alt=\"Tramonto Italian\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Tramonto – Tratoria in Paradise</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1811 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/ameca-300x184.jpg\" alt=\"Ameca Grill\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Ameca Social House – Le Petit Chef presentation</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1366 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Cafe-300x184.jpg\" alt=\"Cafe del Lago Buffet\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Cafe Del Lago – Morning Lake Views</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color1-background-color color-1-text-contrast bg-background-color\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section color1-background-color color-1-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\r\n<p class=\"\" style=\"text-align: center; font-size: 25px;\">Casual Dining, Bars and Lounges, Great in-room Dining</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\">\r\n<p class=\"\" style=\"font-weight: 600; font-size: 23px;\" data-font-family=\"\" data-font-weight=\"600\" data-font-style=\"\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</p>\r\n\r\n<div class=\"row gridblock\" style=\"padding-bottom: 0px; padding-top: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12 col-lg-6\">\r\n<p class=\"\">Balance - Healthy&nbsp; food and drinks</p>\r\n<p class=\"\">Chiringuito - Authentic Spanish food</p>\r\n<p class=\"\">Beachland -Street foods &amp; vendors</p>\r\n<p class=\"\">La Cantina - Mexican Bar and comfort food</p>\r\n<p class=\"\">Ola Mulata - Lunch and early dinner</p>\r\nEstates Lounge Deck - Snacks &amp; drinks\r\n\r\nSi Snack - Poolside dining&nbsp;\r\n<p class=\"\">Sky Garden - Residence rooftop dining</p>\r\nPar Break - Breakfast/lunch/snacks\r\n<p class=\"\">Pool Bars - Swim up service</p>\r\n<p class=\"\">Salum - Snacks/cocktails/music</p>\r\nPool bar at the Estates - Snacks &amp; drinks\r\n<p class=\"\">Grand Lobby Bar - Lobby of Grand Mayan</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\">\r\n<p class=\"\">Balche - Sandwiches and snacks</p>\r\n<p class=\"\">Green Table - Organic light fare</p>\r\nPizza To Go - Room service only\r\n<p class=\"\">Limon y Sal - Ceviche and other seafoods</p>\r\n<p class=\"\">Samba - Breakfast buffet, international lunch and dinner</p>\r\n<p class=\"\">Sweet Paris - Sweet and savory crepes</p>\r\n<p class=\"\">Tacos Break - Traditional Mexican</p>\r\nRoom Service - 24 hour service\r\n\r\nGrill at the Estates - Breakfast &amp; lunch\r\n<p class=\"\">Grand Vista Bar - Lobby of Grand Bliss</p>\r\n<p class=\"\">Luxxe Bar - Near Epazote Restaurant</p>\r\n<p class=\"\">Santuario - Nightly theme Entertainment&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Dining','','inherit','closed','closed','','330-revision-v1','','','2022-04-10 19:36:05','2022-04-10 19:36:05','',330,'https://estatesatnuevo.com/?p=353',0,'revision','',0),(354,1,'2022-04-10 19:40:45','2022-04-10 19:40:45','<div class=\"color1-background-color color-1-text-contrast bg-background-color tmpl-portfolio-6 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 20px 0px 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 text-center col-lg-12\"><footer>\r\n&nbsp;\r\n<h1 class=\"\" style=\"margin: 5px 0px; letter-spacing: 4.9px; font-weight: 600; font-size: 23px;\" data-font-weight=\"600\">&nbsp; &nbsp; FINE DINING</h1>\r\n</footer></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-4 boldgrid-section dynamic-gridblock color1-background-color color-1-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 34px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1058 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Azur-300x184.jpg\" alt=\"Azur French Restaurant\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Bistro Bleu – French Flair with a twist</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1059 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Costa-300x184.jpg\" alt=\"Costa Arena seafood restaurant\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Puerto Manjar – California – inspired Seafood</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1060 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Epazote-300x184.jpg\" alt=\"Epazote Mexican restaurant\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Brezza at The Estates – A Mediterranean flavor</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-4 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(#203356, #446cb3);\" data-bg-color-1=\"#203356\" data-bg-color-2=\"#446cb3\" data-bg-direction=\"to bottom\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 24px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1061 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/gong-300x184.jpg\" alt=\"Gong Asian Restaurant\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Gong Restaurant – Far East Favorites</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1062 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/quinto-300x184.jpg\" alt=\"Quinto Charcoal Grill\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Quinto Charcoal Grill- The Best of Land and Sea</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1063 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/burger-300x184.jpg\" alt=\"Burger Custom Made\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Burger Custom Made –&nbsp;Reimagining the Burger</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-4 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(#203356, #446cb3);\" data-bg-color-1=\"#203356\" data-bg-color-2=\"#446cb3\" data-bg-direction=\"to bottom\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1064 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/tramonto-300x184.jpg\" alt=\"Tramonto Italian\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Tramonto – Tratoria in Paradise</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1811 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/ameca-300x184.jpg\" alt=\"Ameca Grill\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Ameca Social House – Le Petit Chef presentation</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1366 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Cafe-300x184.jpg\" alt=\"Cafe del Lago Buffet\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Cafe Del Lago – Morning Lake Views</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color1-background-color color-1-text-contrast bg-background-color\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section color1-background-color color-1-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\r\n<p class=\"\" style=\"text-align: center; font-size: 25px;\">Casual Dining, Bars and Lounges, Great in-room Dining</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\">\r\n<p class=\"\" style=\"font-weight: 600; font-size: 23px;\" data-font-family=\"\" data-font-weight=\"600\" data-font-style=\"\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</p>\r\n\r\n<div class=\"row gridblock\" style=\"padding-bottom: 0px; padding-top: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12 col-lg-6\">\r\n<p class=\"\">Balance - Healthy&nbsp; food and drinks</p>\r\n<p class=\"\">Chiringuito - Authentic Spanish food</p>\r\n<p class=\"\">Beachland -Street foods &amp; vendors</p>\r\n<p class=\"\">La Cantina - Mexican Bar and comfort food</p>\r\n<p class=\"\">Ola Mulata - Lunch and early dinner</p>\r\nEstates Lounge Deck - Snacks &amp; drinks\r\n\r\nSi Snack - Poolside dining&nbsp;\r\n<p class=\"\">Sky Garden - Residence rooftop dining</p>\r\nPar Break - Breakfast/lunch/snacks\r\n<p class=\"\">Pool Bars - Swim up service</p>\r\n<p class=\"\">Salum - Snacks/cocktails/music</p>\r\nPool bar at the Estates - Snacks &amp; drinks\r\n<p class=\"\">Grand Lobby Bar - Lobby of Grand Mayan</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\">\r\n<p class=\"\">Balche - Sandwiches and snacks</p>\r\n<p class=\"\">Green Table - Organic light fare</p>\r\nPizza To Go - Room service only\r\n<p class=\"\">Limon y Sal - Ceviche and other seafoods</p>\r\n<p class=\"\">Samba - Breakfast buffet, international lunch and dinner</p>\r\n<p class=\"\">Sweet Paris - Sweet and savory crepes</p>\r\n<p class=\"\">Tacos Break - Traditional Mexican</p>\r\nRoom Service - 24 hour service\r\n\r\nGrill at the Estates - Breakfast &amp; lunch\r\n<p class=\"\">Grand Vista Bar - Lobby of Grand Bliss</p>\r\n<p class=\"\">Luxxe Bar - Near Epazote Restaurant</p>\r\n<p class=\"\">Santuario - Nightly theme Entertainment&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Dining','','inherit','closed','closed','','330-revision-v1','','','2022-04-10 19:40:45','2022-04-10 19:40:45','',330,'https://estatesatnuevo.com/?p=354',0,'revision','',0),(356,1,'2022-04-10 19:43:59','2022-04-10 19:43:59','<div class=\"color1-background-color color-1-text-contrast bg-background-color tmpl-portfolio-6 boldgrid-section dynamic-gridblock\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding: 20px 0px 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 text-center col-lg-12\"><footer>&nbsp;\r\n<h1 class=\"\" style=\"margin: 5px 0px; letter-spacing: 4.9px; font-weight: 600; font-size: 23px;\" data-font-weight=\"600\">&nbsp; &nbsp; FINE DINING</h1>\r\n</footer></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-4 boldgrid-section dynamic-gridblock color1-background-color color-1-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 34px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1058 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Azur-300x184.jpg\" alt=\"Azur French Restaurant\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Bistro Bleu – French Flair with a twist</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1059 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Costa-300x184.jpg\" alt=\"Costa Arena seafood restaurant\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Puerto Manjar – California – inspired Seafood</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1060 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Epazote-300x184.jpg\" alt=\"Epazote Mexican restaurant\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Brezza at The Estates – A Mediterranean flavor</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-4 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(#203356, #446cb3);\" data-bg-color-1=\"#203356\" data-bg-color-2=\"#446cb3\" data-bg-direction=\"to bottom\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 24px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1061 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/gong-300x184.jpg\" alt=\"Gong Asian Restaurant\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Gong Restaurant – Far East Favorites</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1062 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/quinto-300x184.jpg\" alt=\"Quinto Charcoal Grill\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Quinto Charcoal Grill- The Best of Land and Sea</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1063 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/burger-300x184.jpg\" alt=\"Burger Custom Made\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Burger Custom Made –&nbsp;Reimagining the Burger</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-services-4 boldgrid-section dynamic-gridblock\" style=\"background-image: linear-gradient(#203356, #446cb3);\" data-bg-color-1=\"#203356\" data-bg-color-2=\"#446cb3\" data-bg-direction=\"to bottom\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1064 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/tramonto-300x184.jpg\" alt=\"Tramonto Italian\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Tramonto – Tratoria in Paradise</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1811 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/ameca-300x184.jpg\" alt=\"Ameca Grill\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Ameca Social House – Le Petit Chef presentation</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-6 col-xs-12 col-lg-4\">\r\n<div class=\"bg-box-1 bg-box-flush bg-box\" style=\"margin-top: 10px;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img alignnone wp-image-1366 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/04/Cafe-300x184.jpg\" alt=\"Cafe del Lago Buffet\" width=\"300\" height=\"184\"></p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 col-lg-12\">\r\n<div style=\"padding: 40px 10%;\" class=\"color2-background-color color-2-text-contrast bg-background-color bg-box\">\r\n<ul>\r\n 	<li>Cafe Del Lago – Morning Lake Views</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color1-background-color color-1-text-contrast bg-background-color\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section color1-background-color color-1-text-contrast bg-background-color\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\r\n<p class=\"\" style=\"text-align: center; font-size: 25px;\">Casual Dining, Bars and Lounges, Great in-room Dining</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\">\r\n<p class=\"\" style=\"font-weight: 600; font-size: 23px;\" data-font-family=\"\" data-font-weight=\"600\" data-font-style=\"\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</p>\r\n\r\n<div class=\"row gridblock\" style=\"padding-bottom: 0px; padding-top: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12 col-lg-6\">\r\n<p class=\"\">Balance - Healthy&nbsp; food and drinks</p>\r\n<p class=\"\">Chiringuito - Authentic Spanish food</p>\r\n<p class=\"\">Beachland -Street foods &amp; vendors</p>\r\n<p class=\"\">La Cantina - Mexican Bar and comfort food</p>\r\n<p class=\"\">Ola Mulata - Lunch and early dinner</p>\r\nEstates Lounge Deck - Snacks &amp; drinks\r\n\r\nSi Snack - Poolside dining&nbsp;\r\n<p class=\"\">Sky Garden - Residence rooftop dining</p>\r\nPar Break - Breakfast/lunch/snacks\r\n<p class=\"\">Pool Bars - Swim up service</p>\r\n<p class=\"\">Salum - Snacks/cocktails/music</p>\r\nPool bar at the Estates - Snacks &amp; drinks\r\n<p class=\"\">Grand Lobby Bar - Lobby of Grand Mayan</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\">\r\n<p class=\"\">Balche - Sandwiches and snacks</p>\r\n<p class=\"\">Green Table - Organic light fare</p>\r\nPizza To Go - Room service only\r\n<p class=\"\">Limon y Sal - Ceviche and other seafoods</p>\r\n<p class=\"\">Samba - Breakfast buffet, international lunch and dinner</p>\r\n<p class=\"\">Sweet Paris - Sweet and savory crepes</p>\r\n<p class=\"\">Tacos Break - Traditional Mexican</p>\r\nRoom Service - 24 hour service\r\n\r\nGrill at the Estates - Breakfast &amp; lunch\r\n<p class=\"\">Grand Vista Bar - Lobby of Grand Bliss</p>\r\n<p class=\"\">Luxxe Bar - Near Epazote Restaurant</p>\r\n<p class=\"\">Santuario - Nightly theme Entertainment&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>','Dining','','inherit','closed','closed','','330-revision-v1','','','2022-04-10 19:43:59','2022-04-10 19:43:59','',330,'https://estatesatnuevo.com/?p=356',0,'revision','',0),(402,1,'2023-06-21 18:52:07','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2023-06-21 18:52:07','0000-00-00 00:00:00','',0,'https://estatesatnuevo.com/?p=402',0,'post','',0),(360,1,'2022-04-13 20:44:59','2022-04-13 20:44:59','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"color: #ffffff; background-image: url(\'https://estatesatnuevo.com/wp-content/uploads/2022/04/estatescover.jpg\'); background-size: cover; background-position: 50% 100%;\" data-image-url=\"https://estatesatnuevo.com/wp-content/estatescover.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px; background-image: url(\'https://estatescover.jpg\'); background-size: cover; background-position: 50% 100%; padding-bottom: 287px;\" data-image-url=\"https://estatescover.jpg/1500x919\">\r\n<div class=\"col-md-8 col-sm-10 col-xs-12 align-column-center col-lg-4\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n<div class=\"\"></div>\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-12 col-lg-2\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<h2 class=\"intro__title\" style=\"font-weight: 600; font-size: 36px; color: #ffffff;\" align=\"center\" data-font-weight=\"600\">Ultimate Luxury Meets Ultimate Nature</h2>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">INFORMATION</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>Named as one of the Top Hotels in Mexico and Top Hotels in the World by Travel + Leisure\'s World\'s Best Awards, Vidanta Nuevo Vallarta offers the ultimate resort vacation. This expansive destination has been carefully curated to provide a high-end experience full of options, including endless restaurants and lounges, three golf courses and a golf academy, a shopping plaza, and entertainment plaza, two indulgent spas, countless pools, and the all-new Beachland.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/info\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">SUITES</h3>\r\n<p class=\"\"><span>Discover the best that luxury vacationing has to offer at The Estates at Nuevo, a haven of high-end comfort sequestered in the sublime jungle landscape at Vidanta Nuevo Vallarta\'s 5-star resort.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-1-bedroom\">1 Bedroom</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-2-bedroom\">2 Bedrooms</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-3-bedroom\">3 Bedrooms</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-4-bedroom\">4 Bedrooms</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">ACTIVITIES</h3>\r\n<header class=\"intro__header\"></header>\r\n<div class=\"intro__lead\">\r\n<p class=\"boxcard__text\">It’s your vacation, so why not spend it doing the types of things you love to do? At Estates at Nuevo, you’ll find a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, all run by our amazing activities team, the Joy Squad.</p>\r\n<p class=\"boxcard__text\">Don’t forget to download the activities calendar and check out your resort hotel to see what activities are happening when!</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/activities\">Learn more</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">property photos</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>At the Estates at Nuevo you can kick back in a remote jungle oasis by your accommodations or enjoy a gorgeous exclusive pool and lounge area in Beachland. Ride the exclusive gondola, play golf, luxuriate in a spa setting or relax by the pool in your private sanctuary. </span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/photos\">See More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">DINING</h3>\r\n<p class=\"\"><span>With over 40 restaurants and lounges to choose from, Estates at Nuevo gives guests the opportunity to dine however they like. Options range from high-end eateries to casual restaurants to authentic Mexican spots, and even a gourmet market filled with offerings from all over the world. One thing is for sure—an amazing culinary experience is always just a meal away.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/dining\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">GOLF AND spa</h3>\r\n<header class=\"intro__header\"></header>\r\n<div class=\"intro__lead\">\r\n<p class=\"intro__text\"><span>With two of the region’s premier courses—The Nayar Course and the Norman Signature Course—plus a 10-hole, par-3 The Lakes Course, a Golf Academy, a beautiful new restaurant, and the longest golf cart suspension bridge in the world, there really is no vacation getaway for golfers that compares to Estates at Nuevo.</span></p>\r\n<p class=\"intro__text\"><span>Vacation is about restful and renewing relaxation. It’s about indulging in peace and taking a moment to enjoy the clarity of being removed from your busy home life. At Estates at Nuevo we help you embrace that serenity and harness the revitalizing powers of paradise with two beautiful, well-appointed spas.</span></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 1em;\">\r\n<div class=\"\">\r\n<div><span class=\"\">We are owners at the Estates at Nuevo Luxury Condo Suites at the Vidanta Resorts.&nbsp; We also own at the Grand Luxxe Vacation resort.&nbsp; There are several of the Vidanta resorts in Mexico but we love the Nuevo Vallarta site because it has the most to offer.&nbsp; &nbsp;</span></div>\r\n<p class=\"\">We work with other owners so we have a larger selection of rentals available. Some have already been secured with the resort and are ready to book.&nbsp; If not, then we can check on availability for your specific time frame.</p>\r\n<p class=\"\">Always happy to answer any questions you may have about the resort and ourselves.&nbsp;&nbsp;</p>\r\n<p class=\"\">Thanks!&nbsp; Linda and Frank Helman</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 align-column-center col-lg-6\"><span class=\"\">From the moment you arrive, you will sense the difference with personalized attention 24/7 and the exclusivity in private beach and pool areas that are intimate and tranquil. At Vidanta’s Estates at Nuevo Vacation Mexican resort, we invite you to explore the gardens and landscaping, enjoy the ocean breeze, the unparalleled panoramic view of the Pacific Ocean in a magnificent sunset, and the natural biodiversity of the Bandera’s bay. It is the kind of extraordinary Mexican vacation experience you want, and the kind of service you deserve and expect.</span></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 0em 3em 90px;\">\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-110\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"k8m4Uj5JJAQ\" data-imhwpb-asset-id=\"1111013\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-111\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"r1tjlHBnHzY\" data-imhwpb-asset-id=\"1111014\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-112\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"l5gzNmXTzIg\" data-imhwpb-asset-id=\"1111015\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-113\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"\" data-imhwpb-asset-id=\"1111016\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-114\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"sBtqOe23bd0\" data-imhwpb-asset-id=\"1111017\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-115\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"B8He4PJkMLg\" data-imhwpb-asset-id=\"1111018\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 2em;\">\r\n<div class=\"\">\r\n<h2 class=\"color3-color\">Our Location</h2>\r\n<p class=\"\">Because we put the customer first, we always have free transportation from the airport to the resort and to your living suite.&nbsp;</p>\r\n<p class=\"\">Review the room details and let us know how we can help you have the best vacation possible. <a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates/home/contact\">Contact Us</a></p>\r\n\r\n<h3 class=\"color3-color\" style=\"font-weight: 400; font-size: 25px;\" data-font-weight=\"400\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address&nbsp;</h3>\r\n<p class=\"color3-color\" style=\"font-weight: 400;\" data-font-weight=\"400\">Blvd Riviera Nayarit #254, 63735 Nuevo Vallarta, Nay., Mexico</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 bg-box-flush col-lg-6\">\r\n<p class=\"\"><img class=\"bg-img alignnone wp-image-1806 size-medium\" style=\"background-color: var(--color-neutral); color: var(--color-neutral-text-contrast);\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico.jpg-2-300x210.jpg\" alt=\"Resort area showing proximity to airport and Puerto Vallarta\" width=\"300\" height=\"210\"><img class=\"bg-img alignnone wp-image-1810 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico-1.jpg-2-1-300x239.jpg\" alt=\"Close up of resort area\" width=\"300\" height=\"239\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','97-revision-v1','','','2022-04-13 20:44:59','2022-04-13 20:44:59','',97,'https://estatesatnuevo.com/?p=360',0,'revision','',0),(361,1,'2022-04-13 20:51:05','2022-04-13 20:51:05','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 27px;\">\r\n<div class=\"col-md-12 text-center col-xs-12 col-sm-12 text-center col-lg-12\">\r\n<h1 class=\"intro__title color3-color\" style=\"font-weight: 600; font-size: 32px;\" data-font-weight=\"600\">Estates 1 Bedroom Luxury Condo</h1>\r\n<p class=\"color3-color\" style=\"text-align: left; font-weight: 600;\" data-font-weight=\"600\"><span style=\"font-size: 17.5px; text-align: center;\"><span>This gorgeous space features a gourmet kitchen outfitted with all the finest appliances, a stylish dining area seating six, a separate lounge area with TV, a bedroom with a king bed and a TV, two bathrooms including one with a Jacuzzi tub, and a large terrace complete with beautiful outdoor furnishings. </span>The Estates 1 Bedroom Luxury Condo accommodates 4 adults.</span></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-1 col-sm-12 col-xs-12 col-lg-1\"></div>\r\n<div class=\"col-md-10 col-xs-12 col-sm-12 align-column-center col-lg-10\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\" style=\"padding: 4em;\"><span class=\"\"></span><img class=\"align=aligncenter\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-1-300x184.jpg\" alt=\"\" width=\"630\" height=\"386\" data-imhwpb-built-photo-search=\"108|landscape\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12 col-lg-1\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\"><img class=\"alignnone wp-image-208 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3rooom-1-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n\r\n[caption id=\"attachment_1995\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1995 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-walkway-300x184.jpg\" alt=\"Walkway to Estates pools and shops\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Walkway to Estates pools and shops[/caption]\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\"><img class=\"alignnone wp-image-185 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-1bed-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n\r\n[caption id=\"attachment_1990\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1990 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-2pools-300x184.jpg\" alt=\"Estates pools\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Estates private pools[/caption]\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\"><img class=\"alignnone wp-image-184 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-1-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n\r\n[caption id=\"attachment_1993\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-1993 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-beachland-300x184.jpg\" alt=\"Estates only pool section\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Estates only pool section[/caption]\r\n<p class=\"mod-img\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12 col-lg-6\" style=\"padding-left: 2.6em;\">\r\n<p class=\"\" style=\"font-size: 18px; color: #000000; font-weight: 600; line-height: 1.5em;\" data-font-weight=\"600\">Reduced golf fees and 2 for 1 basic 50-minute massages plus use of all facilities of the gym and spa free of charge.&nbsp; This includes facilities only and does not include food and beverages, facial or other spa treatments, personal training or any other services available at the gym or spa.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Complimentary morning coffee/tea service. A safety deposit box in each bedroom. Daily maid service and chocolates on your pillow at night!</p>\r\n<p class=\"\" style=\"font-size: 18px; font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">All units are a minimum of 7 nights with check-ins Friday-Monday.</p>\r\n<p class=\"\" style=\"font-weight: 600; font-size: 18px; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\"><strong><a class=\"\" href=\" https://www.GrandLuxxe-Vacation.com/home/contact-us/\">E-mail </a></strong>for details and we will do our best to get you the unit you desire. Click the word e-mail for a link.</p>\r\n<p class=\"\"><iframe style=\"overflow: hidden; display: block; margin: 0 auto; width: 100%; max-width: 400px; min-height: 400px;\" src=\"https://www.houfy.com/embed/7151/pricing\" frameborder=\"“0&quot;\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n<p class=\"\" style=\"font-weight: 600;\" data-font-weight=\"600\">Please ask any questions prior to your reservation request.&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding-right: 2.4em;\">\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\"><span style=\"font-size: 17.5px;\">Free in-room Internet access.&nbsp;&nbsp;</span></p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Tennis Courts - Use of the courts free of charge includes se of facilities and use of towels only and not the cost of nighttime illumination, rental or purchase of equipment, food and beverages, or any other expenses associated with the use of tennis courts.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Butler Service - a butler is assigned to assist your every need. Making reservations, etc.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Restaurant Reservations - Advise concierge of where you would like to eat and at what time and how many in your party (Reservations must be made 24 hours in advance).</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Spa Services - Rest, Relax, and Rejuvenate. Take advantage of the many massage and body treatments offered at the BRIO Spa &amp; Fitness Center. (Reservations must be made 72 hours in advance).</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Tee Times/Golf Reservations - Enjoy advance booking for your rounds of golf. Call the Pro Shop 72 hours in advance to book your tee times.</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Check-in - Enjoy an exclusive check in experience, free of long lines and waiting time.</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred View - The most desirable views subject to space availability.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Estates 1 Bedroom','','inherit','closed','closed','','219-revision-v1','','','2022-04-13 20:51:05','2022-04-13 20:51:05','',219,'https://estatesatnuevo.com/?p=361',0,'revision','',0),(362,1,'2022-04-13 20:52:19','2022-04-13 20:52:19','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 text-center col-xs-12 col-sm-12 text-center col-lg-12\">\r\n<h1 class=\"intro__title color3-color\" style=\"font-weight: 600; font-size: 32px;\" data-font-weight=\"600\">Estates 2 Bedroom Luxury Condo</h1>\r\n<p class=\"color3-color\" style=\"text-align: left; font-weight: 600;\" data-font-weight=\"600\"><span style=\"font-size: 17.5px; text-align: center;\">This gorgeous space features a gourmet kitchen outfitted with a breakfast bar and all the finest appliances, a stylish dining area seating six, a lounge area with TV, a master bedroom with a king bed and a TV, another bedroom with two beds and a TV, three bathrooms including two with a Jacuzzi tub, and a large terrace complete with beautiful outdoor furnishings and a private plunge pool.&nbsp; The Estates 2 Bedroom Luxury Condo accommodates 6 adults and 2 children.</span></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_1997\" align=\"aligncenter\" width=\"630\"]<img class=\"wp-image-1997 size-full\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates2a.jpg\" alt=\"2 bed estates\" width=\"630\" height=\"386\" data-imhwpb-built-photo-search=\"108|landscape\"> 2 bed estates[/caption]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_2047\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-1996 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates2-300x184.jpg\" alt=\"estates 2\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> estates2beds[/caption]\r\n\r\n[caption id=\"attachment_2047\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-2047 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates2beds-300x184.jpg\" alt=\"estates 2\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> 2 bed estates[/caption]\r\n\r\n[caption id=\"attachment_1995\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1995 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-walkway-300x184.jpg\" alt=\"Walkway to Estates pools and shops\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Walkway to Estates pools and shops[/caption]\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_1998\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1998 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates2bed-300x184.jpg\" alt=\"estates 2 bed\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Master bedroom 2 bed estates[/caption]\r\n\r\n[caption id=\"attachment_2046\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-2046 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates2bedbath-300x184.jpg\" alt=\"estates2bedbath\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> estates2bedbath[/caption]\r\n\r\n[caption id=\"attachment_1990\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1990 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-2pools-300x184.jpg\" alt=\"Estates pools\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Estates private pools[/caption]\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_1999\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1999 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates2deck-300x184.jpg\" alt=\"estates2deck\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> estates2deck[/caption]\r\n\r\n[caption id=\"attachment_1993\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-1993 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-beachland-300x184.jpg\" alt=\"Estates only pool section\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Estates only pool section[/caption]\r\n\r\n[caption id=\"attachment_2052\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-2052 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/2bedestateplan-300x208.jpeg\" alt=\"2bed estate floorplan\" width=\"300\" height=\"208\" data-imhwpb-built-photo-search=\"108|square\"> 2bed estate floorplan[/caption]\r\n<p class=\"mod-img\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12 col-lg-6\" style=\"padding-left: 2.6em;\">\r\n<p class=\"\" style=\"font-size: 18px; color: #000000; font-weight: 600; line-height: 1.5em;\" data-font-weight=\"600\">Reduced golf fees and 2 for 1 basic 50-minute massages plus use of all facilities of the gym and spa free of charge.&nbsp; This includes facilities only and does not include food and beverages, facial or other spa treatments, personal training or any other services available at the gym or spa.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Complimentary morning coffee/tea service. A safety deposit box in each bedroom. Daily maid service and chocolates on your pillow at night!</p>\r\n<p class=\"\" style=\"font-size: 18px; font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">All units are a minimum of 7 nights with check-ins Friday-Monday.</p>\r\n<p class=\"\" style=\"font-weight: 600; font-size: 18px; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\"><strong><a class=\"\" href=\" https://www.GrandLuxxe-Vacation.com/home/contact-us/\">E-mail </a></strong>for details and we will do our best to get you the unit you desire. Click the word e-mail for a link.</p>\r\n<p class=\"\"><iframe style=\"overflow: hidden; display: block; margin: 0 auto; width: 100%; max-width: 400px; min-height: 400px;\" src=\"https://www.houfy.com/embed/7151/pricing\" frameborder=\"“0&quot;\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n<p class=\"\" style=\"font-weight: 600;\" data-font-weight=\"600\">Please ask any questions prior to your reservation request.&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding-right: 2.4em;\">\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\"><span style=\"font-size: 17.5px;\">Free in-room Internet access.&nbsp;&nbsp;</span></p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Tennis Courts - Use of the courts free of charge includes se of facilities and use of towels only and not the cost of nighttime illumination, rental or purchase of equipment, food and beverages, or any other expenses associated with the use of tennis courts.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Butler Service - a butler is assigned to assist your every need. Making reservations, etc.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Restaurant Reservations - Advise concierge of where you would like to eat and at what time and how many in your party (Reservations must be made 24 hours in advance).</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Spa Services - Rest, Relax, and Rejuvenate. Take advantage of the many massage and body treatments offered at the BRIO Spa &amp; Fitness Center. (Reservations must be made 72 hours in advance).</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Tee Times/Golf Reservations - Enjoy advance booking for your rounds of golf. Call the Pro Shop 72 hours in advance to book your tee times.</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Check-in - Enjoy an exclusive check in experience, free of long lines and waiting time.</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred View - The most desirable views subject to space availability.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Estates 2 Bedroom','','inherit','closed','closed','','170-revision-v1','','','2022-04-13 20:52:19','2022-04-13 20:52:19','',170,'https://estatesatnuevo.com/?p=362',0,'revision','',0),(363,1,'2022-04-13 20:53:23','2022-04-13 20:53:23','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 text-center col-xs-12 col-sm-12 text-center col-lg-12\">\r\n<h1 class=\"intro__title color3-color\" style=\"font-weight: 600; font-size: 32px;\" data-font-weight=\"600\">Estates 3 Bedroom Luxury Condo</h1>\r\n<p class=\"color3-color\" style=\"text-align: left; font-weight: 600;\" data-font-weight=\"600\"><span style=\"font-size: 17.5px; text-align: center;\"><span>This beautiful space features a gourmet kitchen outfitted with a breakfast bar and all the finest appliances, a stylish dining area, a lounge area with TV, two bedrooms with a king bed and a TV, another bedroom with two twin beds and a TV, five bathrooms including three with a Jacuzzi tub, and a large terrace complete with beautiful outdoor furnishings and a private plunge pool.</span>&nbsp; The Estates 3 Bedroom Luxury Condo accommodates 10 adults and 2 children.</span></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\" style=\"padding-left: 11em;\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\" style=\"padding: 0em;\"><img class=\"alignnone wp-image-175 \" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3dining-300x184.jpg\" alt=\"\" width=\"703\" height=\"431\" data-imhwpb-built-photo-search=\"108|landscape\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\r\n<div class=\"image-gallery\">\r\n\r\n<img class=\"alignnone wp-image-176 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3deck-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\">\r\n<p class=\"\"><img class=\"alignnone wp-image-202 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3bath-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n\r\n[caption id=\"attachment_1995\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1995 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-walkway-300x184.jpg\" alt=\"Walkway to Estates pools and shops\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Walkway to Estates pools and shops[/caption]\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\r\n<div class=\"image-gallery\">\r\n\r\n<img class=\"alignnone wp-image-177 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3bed-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\">\r\n\r\n<img class=\"alignnone wp-image-208 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3rooom-1-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\">\r\n\r\n[caption id=\"attachment_1990\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1990 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-2pools-300x184.jpg\" alt=\"Estates pools\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Estates private pools[/caption]\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\"><img class=\"alignnone wp-image-204 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3bed2-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n\r\n[caption id=\"attachment_1993\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-1993 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-beachland-300x184.jpg\" alt=\"Estates only pool section\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Estates only pool section[/caption]\r\n\r\n<img class=\"alignnone wp-image-193 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-pool-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\">\r\n<p class=\"mod-img\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12 col-lg-6\" style=\"padding-left: 2.6em;\">\r\n<p class=\"\" style=\"font-size: 18px; color: #000000; font-weight: 600; line-height: 1.5em;\" data-font-weight=\"600\">Reduced or free golf fees and 2 for 1 basic 50-minute massages plus use of all facilities of the gym and spa free of charge.&nbsp; This includes facilities only and does not include food and beverages, facial or other spa treatments, personal training or any other services available at the gym or spa.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Complimentary morning coffee/tea service. A safety deposit box in each bedroom. Daily maid service and chocolates on your pillow at night!</p>\r\n<p class=\"\" style=\"font-size: 18px; font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">All units are a minimum of 7 nights with check-ins Friday-Monday.</p>\r\n<p class=\"\" style=\"font-weight: 600; font-size: 18px; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\"><strong><a class=\"\" href=\" https://www.GrandLuxxe-Vacation.com/home/contact-us/\">E-mail </a></strong>for details and we will do our best to get you the unit you desire. Click the word e-mail for a link.</p>\r\n<p class=\"\"><iframe style=\"overflow: hidden; display: block; margin: 0 auto; width: 100%; max-width: 400px; min-height: 400px;\" src=\"https://www.houfy.com/embed/7151/pricing\" frameborder=\"“0&quot;\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n<p class=\"\" style=\"font-weight: 600;\" data-font-weight=\"600\">Please ask any questions prior to your reservation request.&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding-right: 2.4em;\">\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\"><span style=\"font-size: 17.5px;\">Free in-room Internet access.&nbsp;&nbsp;</span></p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Tennis Courts - Use of the courts free of charge includes se of facilities and use of towels only and not the cost of nighttime illumination, rental or purchase of equipment, food and beverages, or any other expenses associated with the use of tennis courts.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Butler Service - a butler is assigned to assist your every need. Making reservations, etc.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Restaurant Reservations - Advise concierge of where you would like to eat and at what time and how many in your party (Reservations must be made 24 hours in advance).</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Spa Services - Rest, Relax, and Rejuvenate. Take advantage of the many massage and body treatments offered at the BRIO Spa &amp; Fitness Center. (Reservations must be made 72 hours in advance).</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Tee Times/Golf Reservations - Enjoy advance booking for your rounds of golf. Call the Pro Shop 72 hours in advance to book your tee times.</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Check-in - Enjoy an exclusive check in experience, free of long lines and waiting time.</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred View - The most desirable views subject to space availability.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Estates 3 Bedroom','','inherit','closed','closed','','173-revision-v1','','','2022-04-13 20:53:23','2022-04-13 20:53:23','',173,'https://estatesatnuevo.com/?p=363',0,'revision','',0),(365,1,'2022-04-13 20:57:35','2022-04-13 20:57:35','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px;\">\r\n<div class=\"col-md-12 text-center col-xs-12 col-sm-12 text-center align-column-center col-lg-12\" style=\"padding-left: 0.9em;\">\r\n<h1 class=\"intro__title color3-color\" style=\"font-weight: 600; font-size: 32px;\" data-font-weight=\"600\">Estates 4 Bedroom Luxury Condo</h1>\r\n<p class=\"color3-color\" style=\"font-family: Arial, Helvetica, sans-serif; font-weight: 600; text-align: left; font-size: 18px; line-height: 2em;\" data-font-family=\"Arial\" data-font-weight=\"600\" data-font-style=\"\"><span style=\"color: #000000; font-family: Arial, Times New Roman, san-serif;\"><span style=\"font-size: medium;\">This Estates Expansive Luxurious 4 Bedroom, 4.5 Bathroom Condo breathtaking space has a two-storied layout with the first floor featuring a gourmet kitchen outfitted with granite counter tops, a breakfast bar and all the finest appliances, a stylish dining area seating ten, a gorgeous lounge area with a TV, a master bedroom with a king bed and a TV, another bedroom with two full size beds and a TV, three bathrooms including two with a Jacuzzi tub, and an expansive terrace with massive private pool. The second story features a bedroom with a king bed and a TV, another bedroom with two full size beds and a TV, one and a half bathrooms, washer/dryer unit, and two private upper terraces. This condo accommodates 12 adults and 2 children under the age of 12.</span></span></p>\r\n<p class=\"color3-color\" style=\"text-align: left; font-weight: 600; font-family: Arial, Helvetica, sans-serif; font-size: 17px; line-height: 2em;\" data-font-family=\"Arial\" data-font-weight=\"600\" data-font-style=\"\">This condo includes access to all pools, gym, golf, spa, and tennis courts. Some costs may be charged for golf and spa packages. Included is complimentary transportation from the airport.&nbsp; A butler will be assigned to assist your every need at the Estates at Nuevo Luxurious 4 Bedroom condo.&nbsp; Morning coffee and tea are complimentary.&nbsp; Each unit has an outdoor deck with dining area and 2 lounge chairs as well as a small pool.&nbsp; All rentals with us have access to Platinum benefits that include best seating at pools, preferred check-in, preferred tee times and spa times (if reserved 72 hours in advance), and preferred restaurant reservations.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\r\n<div class=\"image-gallery\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\"><img class=\"alignnone wp-image-1992 size-full\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-4bed.jpg\" alt=\"\" width=\"630\" height=\"386\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"\"><img class=\"alignnone wp-image-2023 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/living-area-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"\"><img class=\"alignnone wp-image-2024 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/master-1-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"\"><img class=\"alignnone wp-image-2015 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/2nd-bed-tv-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\"><img class=\"alignnone wp-image-2028 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/overhead-shot-225x300.jpeg\" alt=\"\" width=\"225\" height=\"300\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2022 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/living-area-1-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2017 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/another-bath-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2014 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/58_0_300_225.29182879377_estates4second.jpg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_2029\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-2029 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/pool-deck-300x225.jpeg\" alt=\"deck pool\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"> 4 bed estates deck pool[/caption]\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2013 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/31_0_300_203.87323943662_estates4master.jpg\" alt=\"\" width=\"300\" height=\"203\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2031 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/third-beds-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2026 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/master-bath-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<p class=\"\" style=\"text-align: left; color: #000000;\">&nbsp;</p>\r\n\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12 col-lg-6\">\r\n<div>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Ask about a Play and Stay Golf Package that includes free or discounted golf. The details will be determined based on the date and unit available.</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">All units are a minimum of 7 nights with check-ins Friday-Monday.</p>\r\n<p class=\"\" style=\"font-weight: 600; color: #000000; font-size: 18px;\" data-font-weight=\"600\"><strong><a href=\" https://www.GrandLuxxe-Vacation.com/home/contact-us/\">E-mail </a></strong>for details and we will do our best to get you the unit you desire. Click the word e-mail for a link.</p>\r\n<p class=\"\"><iframe style=\"overflow: hidden; display: block; margin: 0 auto; width: 100%; max-width: 400px; min-height: 400px;\" src=\"https://www.houfy.com/embed/7148/pricing\" frameborder=\"“0&quot;\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\">\r\n<div>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Review - \"The Estates cannot be equaled!</p>\r\n<p class=\"\" style=\"font-weight: 600; line-height: 1.4em; color: #000000;\" data-font-weight=\"600\">Absolutely luxurious property with high-end everything. Had 4 couples in a 4 bedroom unit. Butler service was phenomenal. They answered all questions and even loaned us his personal Alexa to assist my wheelchair-bound husband.&nbsp; We highly recommend the iced coffee as well as coffee delivered to the room every morning.&nbsp; Attentive and courteous housekeeping.</p>\r\n<p class=\"\" style=\"font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">I really enjoyed the large pool on the deck. Private swimming.&nbsp; So nice to site outside with drinks by the pool area. Dining on the deck is a plus as well.</p>\r\n<p class=\"\" style=\"font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">Enjoyed the Joy Club activities and attention at the pool. Aqua aerobics and pool blackjack was lots of fun.</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Julia D, Chicago, IL</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Estates 4 Bedroom','','inherit','closed','closed','','99-revision-v1','','','2022-04-13 20:57:35','2022-04-13 20:57:35','',99,'https://estatesatnuevo.com/?p=365',0,'revision','',0),(364,1,'2022-04-13 20:56:08','2022-04-13 20:56:08','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px;\">\r\n<div class=\"col-md-12 text-center col-xs-12 col-sm-12 text-center align-column-center col-lg-12\" style=\"padding-left: 0.9em;\">\r\n<h1 class=\"intro__title color3-color\" style=\"font-weight: 600; font-size: 32px;\" data-font-weight=\"600\">Estates 4 Bedroom Luxury Condo</h1>\r\n<p class=\"color3-color\" style=\"font-family: Arial, Helvetica, sans-serif; font-weight: 600; text-align: left; font-size: 18px; line-height: 2em;\" data-font-family=\"Arial\" data-font-weight=\"600\" data-font-style=\"\"><span style=\"color: #000000; font-family: Arial, Times New Roman, san-serif;\"><span style=\"color: #000000; font-family: Arial, Times New Roman, san-serif;\"><span style=\"font-size: medium;\">This Estates Expansive Luxurious 4 Bedroom, 4.5 Bathroom Condo breathtaking space has a two-storied layout with the first floor featuring a gourmet kitchen outfitted with granite counter tops, a breakfast bar and all the finest appliances, a stylish dining area seating ten, a gorgeous lounge area with a TV, a master bedroom with a king bed and a TV, another bedroom with two full size beds and a TV, three bathrooms including two with a Jacuzzi tub, and an expansive terrace with massive private pool. The second story features a bedroom with a king bed and a TV, another bedroom with two full size beds and a TV, one and a half bathrooms, washer/dryer unit, and two private upper terraces. This condo accommodates 12 adults and 2 children under the age of 12.</span></span></span></p>\r\n<p class=\"color3-color\" style=\"text-align: left; font-weight: 600; font-family: Arial, Helvetica, sans-serif; font-size: 17px; line-height: 2em;\" data-font-family=\"Arial\" data-font-weight=\"600\" data-font-style=\"\">This condo includes access to all pools, gym, golf, spa, and tennis courts. Some costs may be charged for golf and spa packages. Included is complimentary transportation from the airport.&nbsp; A butler will be assigned to assist your every need at the Estates at Nuevo Luxurious 4 Bedroom condo.&nbsp; Morning coffee and tea are complimentary.&nbsp; Each unit has an outdoor deck with dining area and 2 lounge chairs as well as a small pool.&nbsp; All rentals with us have access to Platinum benefits that include best seating at pools, preferred check-in, preferred tee times and spa times (if reserved 72 hours in advance), and preferred restaurant reservations.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\r\n<div class=\"image-gallery\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\"><img class=\"alignnone wp-image-1992 size-full\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-4bed.jpg\" alt=\"\" width=\"630\" height=\"386\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"\"><img class=\"alignnone wp-image-2023 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/living-area-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"\"><img class=\"alignnone wp-image-2024 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/master-1-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"\"><img class=\"alignnone wp-image-2015 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/2nd-bed-tv-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\"><img class=\"alignnone wp-image-2028 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/overhead-shot-225x300.jpeg\" alt=\"\" width=\"225\" height=\"300\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2022 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/living-area-1-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2017 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/another-bath-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2014 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/58_0_300_225.29182879377_estates4second.jpg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_2029\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-2029 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/pool-deck-300x225.jpeg\" alt=\"deck pool\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"> 4 bed estates deck pool[/caption]\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2013 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/31_0_300_203.87323943662_estates4master.jpg\" alt=\"\" width=\"300\" height=\"203\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2031 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/third-beds-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2026 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/master-bath-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<p class=\"\" style=\"text-align: left; color: #000000;\">&nbsp;</p>\r\n\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12 col-lg-6\">\r\n<div>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Ask about a Play and Stay Golf Package that includes free or discounted golf. The details will be determined based on the date and unit available.</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">All units are a minimum of 7 nights with check-ins Friday-Monday.</p>\r\n<p class=\"\" style=\"font-weight: 600; color: #000000; font-size: 18px;\" data-font-weight=\"600\"><strong><a href=\" https://www.GrandLuxxe-Vacation.com/home/contact-us/\">E-mail </a></strong>for details and we will do our best to get you the unit you desire. Click the word e-mail for a link.</p>\r\n<p class=\"\"><iframe style=\"overflow: hidden; display: block; margin: 0 auto; width: 100%; max-width: 400px; min-height: 400px;\" src=\"https://www.houfy.com/embed/7148/pricing\" frameborder=\"“0&quot;\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\">\r\n<div>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Review - \"The Estates cannot be equaled!</p>\r\n<p class=\"\" style=\"font-weight: 600; line-height: 1.4em; color: #000000;\" data-font-weight=\"600\">Absolutely luxurious property with high-end everything. Had 4 couples in a 4 bedroom unit. Butler service was phenomenal. They answered all questions and even loaned us his personal Alexa to assist my wheelchair-bound husband.&nbsp; We highly recommend the iced coffee as well as coffee delivered to the room every morning.&nbsp; Attentive and courteous housekeeping.</p>\r\n<p class=\"\" style=\"font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">I really enjoyed the large pool on the deck. Private swimming.&nbsp; So nice to site outside with drinks by the pool area. Dining on the deck is a plus as well.</p>\r\n<p class=\"\" style=\"font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">Enjoyed the Joy Club activities and attention at the pool. Aqua aerobics and pool blackjack was lots of fun.</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Julia D, Chicago, IL</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Estates 4 Bedroom','','inherit','closed','closed','','99-revision-v1','','','2022-04-13 20:56:08','2022-04-13 20:56:08','',99,'https://estatesatnuevo.com/?p=364',0,'revision','',0),(366,1,'2022-04-13 20:59:08','2022-04-13 20:59:08','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px;\">\r\n<div class=\"col-md-12 text-center col-xs-12 col-sm-12 text-center align-column-center col-lg-12\" style=\"padding-left: 0.9em;\">\r\n<h1 class=\"intro__title color3-color\" style=\"font-weight: 600; font-size: 32px;\" data-font-weight=\"600\">Estates 4 Bedroom Luxury Condo</h1>\r\n<p class=\"color3-color\" style=\"font-family: Arial, Helvetica, sans-serif; font-weight: 600; text-align: left; font-size: 18px; line-height: 2em;\" data-font-family=\"Arial\" data-font-weight=\"600\" data-font-style=\"\"><span style=\"color: #FFFFFF; font-family: Arial, Times New Roman, san-serif;\"><span style=\"font-size: medium;\">This Estates Expansive Luxurious 4 Bedroom, 4.5 Bathroom Condo breathtaking space has a two-storied layout with the first floor featuring a gourmet kitchen outfitted with granite counter tops, a breakfast bar and all the finest appliances, a stylish dining area seating ten, a gorgeous lounge area with a TV, a master bedroom with a king bed and a TV, another bedroom with two full size beds and a TV, three bathrooms including two with a Jacuzzi tub, and an expansive terrace with massive private pool. The second story features a bedroom with a king bed and a TV, another bedroom with two full size beds and a TV, one and a half bathrooms, washer/dryer unit, and two private upper terraces. This condo accommodates 12 adults and 2 children under the age of 12.</span></span></p>\r\n<p class=\"color3-color\" style=\"text-align: left; font-weight: 600; font-family: Arial, Helvetica, sans-serif; font-size: 17px; line-height: 2em;\" data-font-family=\"Arial\" data-font-weight=\"600\" data-font-style=\"\">This condo includes access to all pools, gym, golf, spa, and tennis courts. Some costs may be charged for golf and spa packages. Included is complimentary transportation from the airport.&nbsp; A butler will be assigned to assist your every need at the Estates at Nuevo Luxurious 4 Bedroom condo.&nbsp; Morning coffee and tea are complimentary.&nbsp; Each unit has an outdoor deck with dining area and 2 lounge chairs as well as a small pool.&nbsp; All rentals with us have access to Platinum benefits that include best seating at pools, preferred check-in, preferred tee times and spa times (if reserved 72 hours in advance), and preferred restaurant reservations.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\r\n<div class=\"image-gallery\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\"><img class=\"alignnone wp-image-1992 size-full\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-4bed.jpg\" alt=\"\" width=\"630\" height=\"386\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"\"><img class=\"alignnone wp-image-2023 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/living-area-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"\"><img class=\"alignnone wp-image-2024 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/master-1-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"\"><img class=\"alignnone wp-image-2015 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/2nd-bed-tv-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\"><img class=\"alignnone wp-image-2028 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/overhead-shot-225x300.jpeg\" alt=\"\" width=\"225\" height=\"300\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2022 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/living-area-1-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2017 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/another-bath-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2014 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/58_0_300_225.29182879377_estates4second.jpg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_2029\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-2029 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/pool-deck-300x225.jpeg\" alt=\"deck pool\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"> 4 bed estates deck pool[/caption]\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2013 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/31_0_300_203.87323943662_estates4master.jpg\" alt=\"\" width=\"300\" height=\"203\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2031 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/third-beds-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2026 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/master-bath-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<p class=\"\" style=\"text-align: left; color: #000000;\">&nbsp;</p>\r\n\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12 col-lg-6\">\r\n<div>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Ask about a Play and Stay Golf Package that includes free or discounted golf. The details will be determined based on the date and unit available.</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">All units are a minimum of 7 nights with check-ins Friday-Monday.</p>\r\n<p class=\"\" style=\"font-weight: 600; color: #000000; font-size: 18px;\" data-font-weight=\"600\"><strong><a href=\" https://www.GrandLuxxe-Vacation.com/home/contact-us/\">E-mail </a></strong>for details and we will do our best to get you the unit you desire. Click the word e-mail for a link.</p>\r\n<p class=\"\"><iframe style=\"overflow: hidden; display: block; margin: 0 auto; width: 100%; max-width: 400px; min-height: 400px;\" src=\"https://www.houfy.com/embed/7148/pricing\" frameborder=\"“0&quot;\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\">\r\n<div>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Review - \"The Estates cannot be equaled!</p>\r\n<p class=\"\" style=\"font-weight: 600; line-height: 1.4em; color: #000000;\" data-font-weight=\"600\">Absolutely luxurious property with high-end everything. Had 4 couples in a 4 bedroom unit. Butler service was phenomenal. They answered all questions and even loaned us his personal Alexa to assist my wheelchair-bound husband.&nbsp; We highly recommend the iced coffee as well as coffee delivered to the room every morning.&nbsp; Attentive and courteous housekeeping.</p>\r\n<p class=\"\" style=\"font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">I really enjoyed the large pool on the deck. Private swimming.&nbsp; So nice to site outside with drinks by the pool area. Dining on the deck is a plus as well.</p>\r\n<p class=\"\" style=\"font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">Enjoyed the Joy Club activities and attention at the pool. Aqua aerobics and pool blackjack was lots of fun.</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Julia D, Chicago, IL</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Estates 4 Bedroom','','inherit','closed','closed','','99-revision-v1','','','2022-04-13 20:59:08','2022-04-13 20:59:08','',99,'https://estatesatnuevo.com/?p=366',0,'revision','',0),(367,1,'2022-04-13 20:59:26','2022-04-13 20:59:26','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 0px;\">\r\n<div class=\"col-md-12 text-center col-xs-12 col-sm-12 text-center align-column-center col-lg-12\" style=\"padding-left: 0.9em;\">\r\n<h1 class=\"intro__title color3-color\" style=\"font-weight: 600; font-size: 32px;\" data-font-weight=\"600\">Estates 4 Bedroom Luxury Condo</h1>\r\n<p class=\"color3-color\" style=\"font-family: Arial, Helvetica, sans-serif; font-weight: 600; text-align: left; font-size: 18px; line-height: 2em;\" data-font-family=\"Arial\" data-font-weight=\"600\" data-font-style=\"\"><span style=\"color: #ffffff; font-family: Arial, Times New Roman, san-serif;\"><span style=\"font-size: medium;\">This Estates Expansive Luxurious 4 Bedroom, 4.5 Bathroom Condo breathtaking space has a two-storied layout with the first floor featuring a gourmet kitchen outfitted with granite counter tops, a breakfast bar and all the finest appliances, a stylish dining area seating ten, a gorgeous lounge area with a TV, a master bedroom with a king bed and a TV, another bedroom with two full size beds and a TV, three bathrooms including two with a Jacuzzi tub, and an expansive terrace with massive private pool. The second story features a bedroom with a king bed and a TV, another bedroom with two full size beds and a TV, one and a half bathrooms, washer/dryer unit, and two private upper terraces. This condo accommodates 12 adults and 2 children under the age of 12.</span></span></p>\r\n<p class=\"color3-color\" style=\"text-align: left; font-weight: 600; font-family: Arial, Helvetica, sans-serif; font-size: 17px; line-height: 2em;\" data-font-family=\"Arial\" data-font-weight=\"600\" data-font-style=\"\">This condo includes access to all pools, gym, golf, spa, and tennis courts. Some costs may be charged for golf and spa packages. Included is complimentary transportation from the airport.&nbsp; A butler will be assigned to assist your every need at the Estates at Nuevo Luxurious 4 Bedroom condo.&nbsp; Morning coffee and tea are complimentary.&nbsp; Each unit has an outdoor deck with dining area and 2 lounge chairs as well as a small pool.&nbsp; All rentals with us have access to Platinum benefits that include best seating at pools, preferred check-in, preferred tee times and spa times (if reserved 72 hours in advance), and preferred restaurant reservations.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\">\r\n<div class=\"image-gallery\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\">&nbsp;</p>\r\n<p class=\"\"><img class=\"alignnone wp-image-1992 size-full\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-4bed.jpg\" alt=\"\" width=\"630\" height=\"386\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"\"><img class=\"alignnone wp-image-2023 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/living-area-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"\"><img class=\"alignnone wp-image-2024 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/master-1-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"\"><img class=\"alignnone wp-image-2015 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/2nd-bed-tv-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\"><img class=\"alignnone wp-image-2028 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/overhead-shot-225x300.jpeg\" alt=\"\" width=\"225\" height=\"300\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2022 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/living-area-1-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2017 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/another-bath-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2014 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/58_0_300_225.29182879377_estates4second.jpg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\r\n<div class=\"image-gallery\">\r\n\r\n[caption id=\"attachment_2029\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-2029 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/pool-deck-300x225.jpeg\" alt=\"deck pool\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"> 4 bed estates deck pool[/caption]\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2013 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/31_0_300_203.87323943662_estates4master.jpg\" alt=\"\" width=\"300\" height=\"203\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2031 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/third-beds-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone wp-image-2026 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/master-bath-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 0px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<p class=\"\" style=\"text-align: left; color: #000000;\">&nbsp;</p>\r\n\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12 col-lg-6\">\r\n<div>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Ask about a Play and Stay Golf Package that includes free or discounted golf. The details will be determined based on the date and unit available.</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">All units are a minimum of 7 nights with check-ins Friday-Monday.</p>\r\n<p class=\"\" style=\"font-weight: 600; color: #000000; font-size: 18px;\" data-font-weight=\"600\"><strong><a href=\" https://www.GrandLuxxe-Vacation.com/home/contact-us/\">E-mail </a></strong>for details and we will do our best to get you the unit you desire. Click the word e-mail for a link.</p>\r\n<p class=\"\"><iframe style=\"overflow: hidden; display: block; margin: 0 auto; width: 100%; max-width: 400px; min-height: 400px;\" src=\"https://www.houfy.com/embed/7148/pricing\" frameborder=\"“0&quot;\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\">\r\n<div>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Review - \"The Estates cannot be equaled!</p>\r\n<p class=\"\" style=\"font-weight: 600; line-height: 1.4em; color: #000000;\" data-font-weight=\"600\">Absolutely luxurious property with high-end everything. Had 4 couples in a 4 bedroom unit. Butler service was phenomenal. They answered all questions and even loaned us his personal Alexa to assist my wheelchair-bound husband.&nbsp; We highly recommend the iced coffee as well as coffee delivered to the room every morning.&nbsp; Attentive and courteous housekeeping.</p>\r\n<p class=\"\" style=\"font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">I really enjoyed the large pool on the deck. Private swimming.&nbsp; So nice to site outside with drinks by the pool area. Dining on the deck is a plus as well.</p>\r\n<p class=\"\" style=\"font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">Enjoyed the Joy Club activities and attention at the pool. Aqua aerobics and pool blackjack was lots of fun.</p>\r\n<p class=\"\" style=\"color: #000000; font-weight: 600; font-size: 18px;\" data-font-weight=\"600\">Julia D, Chicago, IL</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Estates 4 Bedroom','','inherit','closed','closed','','99-revision-v1','','','2022-04-13 20:59:26','2022-04-13 20:59:26','',99,'https://estatesatnuevo.com/?p=367',0,'revision','',0),(368,1,'2022-04-13 22:45:10','2022-04-13 22:45:10','<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-7 col-xs-12 col-sm-12 col-lg-7\">\n<h3 class=\"color3-color\" style=\"font-family: Roboto; font-weight: 600; font-style: normal; font-size: 25px; text-align: center;\" data-font-family=\"Roboto\" data-font-weight=\"600\" data-font-style=\"normal\">The Estates One Bedroom</h3>\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">This stunning space features a gourmet kitchen with dining space, a bedroom, two bathrooms, and a large private terrace.</p>\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-1-bedroom\">Room Details</a></p>\n\n</div>\n<div class=\"col-md-5 col-xs-12 col-sm-12 col-lg-5\">\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-380 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/Suites1-4-1-300x184.jpg\" alt=\"Suites1 Bedroom\" width=\"300\" height=\"184\"></p>\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\" style=\"padding-top: 12px;\">\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-6 col-sm-5 text-center col-xs-12 col-lg-6\">\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-371 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/11_0_300_199.2277992278_estates-2bedsuite.jpg\" alt=\"\" width=\"300\" height=\"199\"></p>\n<p class=\"mod-img\">&nbsp;</p>\n\n</div>\n<div class=\"col-md-6 col-sm-7 col-xs-12 col-lg-6\">\n<h2 class=\"color3-color\" style=\"font-family: Roboto; font-weight: 600; font-size: 25px; text-align: center;\" data-font-family=\"Roboto\" data-font-weight=\"600\" data-font-style=\"\">Estates Two Bedroom</h2>\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">This amazing space features a gourmet kitchen with dining space, two bedrooms, three bathrooms, a private terrace, and large private plunge pool.</p>\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-7 col-xs-12 col-sm-12 col-lg-7\">\n<h3 class=\"color3-color\" style=\"font-family: Roboto; font-weight: 600; font-style: normal; font-size: 25px; text-align: center;\" data-font-family=\"Roboto\" data-font-weight=\"600\" data-font-style=\"normal\">The Estates three Bedroom</h3>\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\"><span>This luxurious space features a gourmet kitchen with dining space, three bedrooms, five bathrooms, a private terrace, and large private plunge pool.</span></p>\n\n</div>\n<div class=\"col-md-5 col-xs-12 col-sm-12 col-lg-5\">\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-207 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3dining-1-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\"></p>\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-md-6 col-sm-5 text-center col-xs-12 col-lg-6\">\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-304 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/Vidanta-nuevo-vallarta-the-estates-rooms-gallery-2-1-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\"></p>\n\n</div>\n<div class=\"col-md-6 col-sm-7 col-xs-12 col-lg-6\">\n<h2 class=\"color3-color\" style=\"font-family: Roboto; font-weight: 600; font-size: 25px; text-align: center;\" data-font-family=\"Roboto\" data-font-weight=\"600\" data-font-style=\"\">Estates four Bedroom</h2>\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\"><span>This jaw-dropping lofted, double-level space features a spectacular kitchen and dining area, three bedrooms, five bathrooms, a private terrace that runs the perimeter of the unit and a large outdoor plunge pool.</span></p>\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"boldgrid-section\">\n<div class=\"container\">\n<div class=\"row\">\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\"></div>\n</div>\n</div>\n</div>','Suites','','inherit','closed','closed','','313-autosave-v1','','','2022-04-13 22:45:10','2022-04-13 22:45:10','',313,'https://estatesatnuevo.com/?p=368',0,'revision','',0),(369,1,'2022-04-13 21:13:13','2022-04-13 21:13:13','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\"><header class=\"boxcard__head\">\r\n<h1 class=\"boxcard__title color3-color\">The Estates Suites</h1>\r\n</header>\r\n<div class=\"boxcard__lead\">\r\n<p class=\"boxcard__text\">From the breathtaking One Bedroom to the jaw-dropping Four Bedroom, The Estates at Vidanta Nuevo Vallarta showcases exquisite spaces that are redefining modern luxury.</p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n<header class=\"boxcard__head\">\r\n<h2 class=\"boxcard__title\">Th</h2>\r\n<h2 class=\"boxcard__title color3-color\">The Estates One Bedroom</h2>\r\n</header>\r\n<div class=\"boxcard__lead\">\r\n<p class=\"boxcard__text\">This stunning space features a gourmet kitchen with dining space, a bedroom, two bathrooms, and a large private terrace.</p>\r\n\r\n</div>\r\n<footer class=\"boxcard__foot\">\r\n<p class=\"mod-reset\"><a class=\"v-button i-arrow-light\" title=\"Full Room Details\" href=\"estatesatnuevo/home/estates-1-bedroom\">FULL ROOM DETAILS</a></p>\r\n\r\n</footer>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Suites','','inherit','closed','closed','','313-revision-v1','','','2022-04-13 21:13:13','2022-04-13 21:13:13','',313,'https://estatesatnuevo.com/?p=369',0,'revision','',0),(382,1,'2022-04-13 22:39:31','2022-04-13 22:39:31','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-7 col-xs-12 col-sm-12 col-lg-7\">\r\n<h3 class=\"color3-color\" style=\"font-family: Chonburi; font-weight: 600; font-style: normal; font-size: 25px; text-align: center;\" data-font-family=\"Chonburi\" data-font-weight=\"600\" data-font-style=\"normal\">The Estates One Bedroom</h3>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">This stunning space features a gourmet kitchen with dining space, a bedroom, two bathrooms, and a large private terrace.</p>\r\n\r\n</div>\r\n<div class=\"col-md-5 col-xs-12 col-sm-12 col-lg-5\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-380 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/Suites1-4-1-300x184.jpg\" alt=\"Suites1 Bedroom\" width=\"300\" height=\"184\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-5 text-center col-xs-12 col-lg-6\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-371 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/11_0_300_199.2277992278_estates-2bedsuite.jpg\" alt=\"\" width=\"300\" height=\"199\"></p>\r\n<p class=\"mod-img\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-7 col-xs-12 col-lg-6\">\r\n<h2 class=\"color3-color\" style=\"font-family: Chonburi; font-weight: 600; font-size: 25px; text-align: center;\" data-font-family=\"Chonburi\" data-font-weight=\"600\" data-font-style=\"\">Estates Two Bedroom</h2>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">This amazing space features a gourmet kitchen with dining space, two bedrooms, three bathrooms, a private terrace, and large private plunge pool.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-7 col-xs-12 col-sm-12 col-lg-7\">\r\n<h3 class=\"color3-color\" style=\"font-family: Chonburi; font-weight: 600; font-style: normal; font-size: 25px; text-align: center;\" data-font-family=\"Chonburi\" data-font-weight=\"600\" data-font-style=\"normal\">The Estates three Bedroom</h3>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\"><span>This luxurious space features a gourmet kitchen with dining space, three bedrooms, five bathrooms, a private terrace, and large private plunge pool.</span></p>\r\n\r\n</div>\r\n<div class=\"col-md-5 col-xs-12 col-sm-12 col-lg-5\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-207 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3dining-1-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-5 text-center col-xs-12 col-lg-6\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-304 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/Vidanta-nuevo-vallarta-the-estates-rooms-gallery-2-1-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-7 col-xs-12 col-lg-6\">\r\n<h2 class=\"color3-color\" style=\"font-family: Chonburi; font-weight: 600; font-size: 25px; text-align: center;\" data-font-family=\"Chonburi\" data-font-weight=\"600\" data-font-style=\"\">Estates four Bedroom</h2>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\"><span>This jaw-dropping lofted, double-level space features a spectacular kitchen and dining area, three bedrooms, five bathrooms, a private terrace that runs the perimeter of the unit and a large outdoor plunge pool.</span></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Estates at Nuevo Suites','','inherit','closed','closed','','313-revision-v1','','','2022-04-13 22:39:31','2022-04-13 22:39:31','',313,'https://estatesatnuevo.com/?p=382',0,'revision','',0),(371,1,'2022-04-13 21:36:24','2022-04-13 21:36:24','','','','inherit','open','closed','','estates-2bedsuite','','','2022-04-13 22:33:23','2022-04-13 22:33:23','',313,'https://estatesatnuevo.com/wp-content/uploads/2022/04/estates-2bedsuite.jpg',0,'attachment','image/jpeg',0),(383,1,'2022-04-13 22:42:11','2022-04-13 22:42:11','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-7 col-xs-12 col-sm-12 col-lg-7\">\r\n<h3 class=\"color3-color\" style=\"font-family: Roboto; font-weight: 600; font-style: normal; font-size: 25px; text-align: center;\" data-font-family=\"Roboto\" data-font-weight=\"600\" data-font-style=\"normal\">The Estates One Bedroom</h3>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">This stunning space features a gourmet kitchen with dining space, a bedroom, two bathrooms, and a large private terrace.</p>\r\n\r\n</div>\r\n<div class=\"col-md-5 col-xs-12 col-sm-12 col-lg-5\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-380 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/Suites1-4-1-300x184.jpg\" alt=\"Suites1 Bedroom\" width=\"300\" height=\"184\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-5 text-center col-xs-12 col-lg-6\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-371 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/11_0_300_199.2277992278_estates-2bedsuite.jpg\" alt=\"\" width=\"300\" height=\"199\"></p>\r\n<p class=\"mod-img\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-7 col-xs-12 col-lg-6\">\r\n<h2 class=\"color3-color\" style=\"font-family: Roboto; font-weight: 600; font-size: 25px; text-align: center;\" data-font-family=\"Roboto\" data-font-weight=\"600\" data-font-style=\"\">Estates Two Bedroom</h2>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">This amazing space features a gourmet kitchen with dining space, two bedrooms, three bathrooms, a private terrace, and large private plunge pool.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-7 col-xs-12 col-sm-12 col-lg-7\">\r\n<h3 class=\"color3-color\" style=\"font-family: Roboto; font-weight: 600; font-style: normal; font-size: 25px; text-align: center;\" data-font-family=\"Roboto\" data-font-weight=\"600\" data-font-style=\"normal\">The Estates three Bedroom</h3>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\"><span>This luxurious space features a gourmet kitchen with dining space, three bedrooms, five bathrooms, a private terrace, and large private plunge pool.</span></p>\r\n\r\n</div>\r\n<div class=\"col-md-5 col-xs-12 col-sm-12 col-lg-5\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-207 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3dining-1-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-5 text-center col-xs-12 col-lg-6\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-304 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/Vidanta-nuevo-vallarta-the-estates-rooms-gallery-2-1-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-7 col-xs-12 col-lg-6\">\r\n<h2 class=\"color3-color\" style=\"font-family: Roboto; font-weight: 600; font-size: 25px; text-align: center;\" data-font-family=\"Roboto\" data-font-weight=\"600\" data-font-style=\"\">Estates four Bedroom</h2>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\"><span>This jaw-dropping lofted, double-level space features a spectacular kitchen and dining area, three bedrooms, five bathrooms, a private terrace that runs the perimeter of the unit and a large outdoor plunge pool.</span></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Suites','','inherit','closed','closed','','313-revision-v1','','','2022-04-13 22:42:11','2022-04-13 22:42:11','',313,'https://estatesatnuevo.com/?p=383',0,'revision','',0),(372,1,'2022-04-13 21:38:35','2022-04-13 21:38:35','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\"><header class=\"boxcard__head\">\r\n<h1 class=\"boxcard__title color3-color\">The Estates ACCOMMODATIONS</h1>\r\n</header>\r\n<div class=\"boxcard__lead\">\r\n<p class=\"boxcard__text\">From the breathtaking One Bedroom to the jaw-dropping Four Bedroom, The Estates at Nuevo Vallarta showcases exquisite spaces that are redefining modern luxury.</p>\r\n\r\n<header class=\"boxcard__head\"></header>\r\n<div class=\"boxcard__lead\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-about-6 boldgrid-section dynamic-gridblock background-scroll\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-7\"></div>\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-1\"></div>\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-1\">\r\n<p class=\"mod-reset\"><img class=\"alignnone  wp-image-184\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-1-300x184.jpg\" alt=\"\" width=\"613\" height=\"376\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-5 col-sm-7 col-xs-12 col-lg-3\">\r\n<div style=\"padding: 80px 5%;\" class=\"bg-box-cover color-neutral-background-color color-neutral-text-contrast bg-background-color bg-box\">\r\n<h2 class=\"h1 color1-color\" style=\"text-align: center; font-size: 30px;\">The Estates one Bedroom</h2>\r\n<p class=\"\" style=\"margin: 30px 0; text-align: center;\">This stunning space features a gourmet kitchen with dining space, a bedroom, two bathrooms, and a large private terrace.</p>\r\n\r\n<footer class=\"boxcard__foot\"><center>\r\n<p class=\"mod-reset\"><a class=\"v-button i-arrow-light\" title=\"Full Room Details\" href=\"estatesatnuevo/home/estates-1-bedroom\">FULL ROOM DETAILS</a></p>\r\n&nbsp;\r\n\r\n</center></footer></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-about-6 boldgrid-section dynamic-gridblock background-scroll\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-7\"></div>\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-1\"></div>\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-1\">\r\n<p class=\"mod-reset\"><img class=\"alignnone  wp-image-371\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/estates-2bedsuite-300x191.jpg\" alt=\"\" width=\"614\" height=\"391\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-5 col-sm-7 col-xs-12 col-lg-3\">\r\n<div style=\"padding: 80px 5%;\" class=\"bg-box-cover color-neutral-background-color color-neutral-text-contrast bg-background-color bg-box\">\r\n<h2 class=\"h1 color1-color\" style=\"text-align: center; font-size: 30px;\">The Estates TWO Bedroom</h2>\r\n<p class=\"\" style=\"margin: 30px 0; text-align: center;\"><span>This amazing space features a gourmet kitchen with dining space, two bedrooms, three bathrooms, a private terrace, and large private plunge pool.</span></p>\r\n\r\n<footer class=\"boxcard__foot\"><center>\r\n<p class=\"mod-reset\"><a class=\"v-button i-arrow-light\" title=\"Full Room Details\" href=\"estatesatnuevo/home/estates-1-bedroom\">FULL ROOM DETAILS</a></p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</center></footer></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-about-6 boldgrid-section dynamic-gridblock background-scroll\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-7\"></div>\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-1\"></div>\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-1\">\r\n<p class=\"mod-reset\"><img class=\"alignnone  wp-image-207\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3dining-1-300x184.jpg\" alt=\"\" width=\"618\" height=\"379\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-5 col-sm-7 col-xs-12 col-lg-3\">\r\n<div style=\"padding: 80px 5%;\" class=\"bg-box-cover color-neutral-background-color color-neutral-text-contrast bg-background-color bg-box\">\r\n<h2 class=\"h1 color1-color\" style=\"text-align: center; font-size: 30px;\">The Estates THREE Bedroom</h2>\r\n<p class=\"\" style=\"margin: 30px 0; text-align: center;\"><span>This luxurious space features a gourmet kitchen with dining space, three bedrooms, five bathrooms, a private terrace, and large private plunge pool.</span></p>\r\n\r\n<footer class=\"boxcard__foot\"><center>\r\n<p class=\"mod-reset\"><a class=\"v-button i-arrow-light\" title=\"Full Room Details\" href=\"estatesatnuevo/home/estates-1-bedroom\">FULL ROOM DETAILS</a></p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</center></footer></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-about-6 boldgrid-section dynamic-gridblock background-scroll\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-7\"></div>\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-1\"></div>\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-1\">\r\n<p class=\"mod-reset\"><img class=\"alignnone  wp-image-213\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates4living-300x184.jpg\" alt=\"\" width=\"615\" height=\"377\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-5 col-sm-7 col-xs-12 col-lg-3\">\r\n<div style=\"padding: 80px 5%;\" class=\"bg-box-cover color-neutral-background-color color-neutral-text-contrast bg-background-color bg-box\">\r\n<h2 class=\"h1 color1-color\" style=\"text-align: center; font-size: 30px;\">The Estates FOUR Bedroom</h2>\r\n<p class=\"\" style=\"margin: 30px 0; text-align: center;\"><span>This jaw-dropping lofted, double-level space features a spectacular kitchen and dining area, three bedrooms, five bathrooms, a private terrace that runs the perimeter of the unit and a large outdoor plunge pool.</span></p>\r\n\r\n<footer class=\"boxcard__foot\"><center>\r\n<p class=\"mod-reset\"><a class=\"v-button i-arrow-light\" title=\"Full Room Details\" href=\"estatesatnuevo/home/estates-1-bedroom\">FULL ROOM DETAILS</a></p>\r\n&nbsp;\r\n\r\n</center></footer></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Suites','','inherit','closed','closed','','313-revision-v1','','','2022-04-13 21:38:35','2022-04-13 21:38:35','',313,'https://estatesatnuevo.com/?p=372',0,'revision','',0),(374,1,'2022-04-13 21:52:13','2022-04-13 21:52:13','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n\r\n&nbsp;\r\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\"><header class=\"boxcard__head\">\r\n<h1 class=\"boxcard__title color3-color\">The Estates Accommodations</h1>\r\n</header></div>\r\n&nbsp;\r\n<div class=\"boxcard__lead\">\r\n<p class=\"boxcard__text\">From the breathtaking One Bedroom to the jaw-dropping Four Bedroom, The Estates at Nuevo Vallarta showcases exquisite spaces that are redefining modern luxury.</p>\r\n\r\n<header class=\"boxcard__head\"></header>\r\n<div class=\"boxcard__lead\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-about-6 boldgrid-section dynamic-gridblock background-scroll\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-1\"></div>\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-1\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-184\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-1-300x184.jpg\" alt=\"\" width=\"613\" height=\"376\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-5 col-sm-7 col-xs-12 col-lg-3\">\r\n<div style=\"padding: 80px 5%;\" class=\"bg-box-cover color-neutral-background-color color-neutral-text-contrast bg-background-color bg-box\">\r\n<h2 class=\"h1 color1-color\" style=\"text-align: center; font-size: 30px;\">The Estates one Bedroom</h2>\r\n<p class=\"\" style=\"margin: 30px 0; text-align: center;\">This stunning space features a gourmet kitchen with dining space, a bedroom, two bathrooms, and a large private terrace.</p>\r\n\r\n<footer class=\"boxcard__foot\"><center>\r\n<p class=\"mod-reset\"><a class=\"v-button i-arrow-light\" title=\"Full Room Details\" href=\"/home/estates-1-bedroom\">FULL ROOM DETAILS</a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</center></footer></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-about-6 boldgrid-section dynamic-gridblock background-scroll\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-7\"></div>\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-1\"></div>\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-1\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-371\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/estates-2bedsuite-300x191.jpg\" alt=\"\" width=\"614\" height=\"391\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-5 col-sm-7 col-xs-12 col-lg-3\">\r\n<div style=\"padding: 80px 5%;\" class=\"bg-box-cover color-neutral-background-color color-neutral-text-contrast bg-background-color bg-box\">\r\n<h2 class=\"h1 color1-color\" style=\"text-align: center; font-size: 30px;\">The Estates TWO Bedroom</h2>\r\n<p class=\"\" style=\"margin: 30px 0; text-align: center;\"><span>This amazing space features a gourmet kitchen with dining space, two bedrooms, three bathrooms, a private terrace, and large private plunge pool.</span></p>\r\n\r\n<footer class=\"boxcard__foot\"><center>\r\n<p class=\"mod-reset\"><a class=\"v-button i-arrow-light\" title=\"Full Room Details\" href=\"/home/estates-2-bedroom\">FULL ROOM DETAILS</a></p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</center></footer></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-about-6 boldgrid-section dynamic-gridblock background-scroll\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-7\"></div>\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-1\"></div>\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-1\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-207\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3dining-1-300x184.jpg\" alt=\"\" width=\"618\" height=\"379\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-5 col-sm-7 col-xs-12 col-lg-3\">\r\n<div style=\"padding: 80px 5%;\" class=\"bg-box-cover color-neutral-background-color color-neutral-text-contrast bg-background-color bg-box\">\r\n<h2 class=\"h1 color1-color\" style=\"text-align: center; font-size: 30px;\">The Estates THREE Bedroom</h2>\r\n<p class=\"\" style=\"margin: 30px 0; text-align: center;\"><span>This luxurious space features a gourmet kitchen with dining space, three bedrooms, five bathrooms, a private terrace, and large private plunge pool.</span></p>\r\n\r\n<footer class=\"boxcard__foot\"><center>\r\n<p class=\"mod-reset\"><a class=\"v-button i-arrow-light\" title=\"Full Room Details\" href=\"/home/estates-3-bedroom\">FULL ROOM DETAILS</a></p>\r\n\r\n</center></footer></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-about-6 boldgrid-section dynamic-gridblock background-scroll\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-7\"></div>\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-1\"></div>\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-1\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-213\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates4living-300x184.jpg\" alt=\"\" width=\"615\" height=\"377\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-5 col-sm-7 col-xs-12 col-lg-3\">\r\n<div style=\"padding: 80px 5%;\" class=\"bg-box-cover color-neutral-background-color color-neutral-text-contrast bg-background-color bg-box\">\r\n<h2 class=\"h1 color1-color\" style=\"text-align: center; font-size: 30px;\">The Estates FOUR Bedroom</h2>\r\n<p class=\"\" style=\"margin: 30px 0; text-align: center;\"><span>This jaw-dropping lofted, double-level space features a spectacular kitchen and dining area, three bedrooms, five bathrooms, a private terrace that runs the perimeter of the unit and a large outdoor plunge pool.</span></p>\r\n\r\n<footer class=\"boxcard__foot\"><center>\r\n<p class=\"mod-reset\"><a class=\"v-button i-arrow-light\" title=\"Full Room Details\" href=\"/home/estates-4-bedroom\">FULL ROOM DETAILS</a></p>\r\n&nbsp;\r\n\r\n</center></footer></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Suites','','inherit','closed','closed','','313-revision-v1','','','2022-04-13 21:52:13','2022-04-13 21:52:13','',313,'https://estatesatnuevo.com/?p=374',0,'revision','',0),(373,1,'2022-04-13 21:45:31','2022-04-13 21:45:31','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n\r\n&nbsp;\r\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\"><header class=\"boxcard__head\">\r\n<h1 class=\"boxcard__title color3-color\">The Estates Accommodations</h1>\r\n</header></div>\r\n&nbsp;\r\n<div class=\"boxcard__lead\">\r\n<p class=\"boxcard__text\">From the breathtaking One Bedroom to the jaw-dropping Four Bedroom, The Estates at Nuevo Vallarta showcases exquisite spaces that are redefining modern luxury.</p>\r\n\r\n<header class=\"boxcard__head\"></header>\r\n<div class=\"boxcard__lead\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-about-6 boldgrid-section dynamic-gridblock background-scroll\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-1\"></div>\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-1\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-184\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-1-300x184.jpg\" alt=\"\" width=\"613\" height=\"376\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-5 col-sm-7 col-xs-12 col-lg-3\">\r\n<div style=\"padding: 80px 5%;\" class=\"bg-box-cover color-neutral-background-color color-neutral-text-contrast bg-background-color bg-box\">\r\n<h2 class=\"h1 color1-color\" style=\"text-align: center; font-size: 30px;\">The Estates one Bedroom</h2>\r\n<p class=\"\" style=\"margin: 30px 0; text-align: center;\">This stunning space features a gourmet kitchen with dining space, a bedroom, two bathrooms, and a large private terrace.</p>\r\n\r\n<footer class=\"boxcard__foot\"><center>\r\n<p class=\"mod-reset\"><a class=\"v-button i-arrow-light\" title=\"Full Room Details\" href=\"estatesatnuevo/home/estates-1-bedroom\">FULL ROOM DETAILS</a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n</center></footer></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-about-6 boldgrid-section dynamic-gridblock background-scroll\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-7\"></div>\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-1\"></div>\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-1\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-371\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/estates-2bedsuite-300x191.jpg\" alt=\"\" width=\"614\" height=\"391\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-5 col-sm-7 col-xs-12 col-lg-3\">\r\n<div style=\"padding: 80px 5%;\" class=\"bg-box-cover color-neutral-background-color color-neutral-text-contrast bg-background-color bg-box\">\r\n<h2 class=\"h1 color1-color\" style=\"text-align: center; font-size: 30px;\">The Estates TWO Bedroom</h2>\r\n<p class=\"\" style=\"margin: 30px 0; text-align: center;\"><span>This amazing space features a gourmet kitchen with dining space, two bedrooms, three bathrooms, a private terrace, and large private plunge pool.</span></p>\r\n\r\n<footer class=\"boxcard__foot\"><center>\r\n<p class=\"mod-reset\"><a class=\"v-button i-arrow-light\" title=\"Full Room Details\" href=\"estatesatnuevo/home/estates-1-bedroom\">FULL ROOM DETAILS</a></p>\r\n<p class=\"\">&nbsp;</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n</center></footer></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-about-6 boldgrid-section dynamic-gridblock background-scroll\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-7\"></div>\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-1\"></div>\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-1\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-207\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3dining-1-300x184.jpg\" alt=\"\" width=\"618\" height=\"379\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-5 col-sm-7 col-xs-12 col-lg-3\">\r\n<div style=\"padding: 80px 5%;\" class=\"bg-box-cover color-neutral-background-color color-neutral-text-contrast bg-background-color bg-box\">\r\n<h2 class=\"h1 color1-color\" style=\"text-align: center; font-size: 30px;\">The Estates THREE Bedroom</h2>\r\n<p class=\"\" style=\"margin: 30px 0; text-align: center;\"><span>This luxurious space features a gourmet kitchen with dining space, three bedrooms, five bathrooms, a private terrace, and large private plunge pool.</span></p>\r\n\r\n<footer class=\"boxcard__foot\"><center>\r\n<p class=\"mod-reset\"><a class=\"v-button i-arrow-light\" title=\"Full Room Details\" href=\"estatesatnuevo/home/estates-1-bedroom\">FULL ROOM DETAILS</a></p>\r\n<p class=\"\">&nbsp;</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n</center></footer></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-about-6 boldgrid-section dynamic-gridblock background-scroll\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-7\"></div>\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-1\"></div>\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-1\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-213\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates4living-300x184.jpg\" alt=\"\" width=\"615\" height=\"377\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-5 col-sm-7 col-xs-12 col-lg-3\">\r\n<div style=\"padding: 80px 5%;\" class=\"bg-box-cover color-neutral-background-color color-neutral-text-contrast bg-background-color bg-box\">\r\n<h2 class=\"h1 color1-color\" style=\"text-align: center; font-size: 30px;\">The Estates FOUR Bedroom</h2>\r\n<p class=\"\" style=\"margin: 30px 0; text-align: center;\"><span>This jaw-dropping lofted, double-level space features a spectacular kitchen and dining area, three bedrooms, five bathrooms, a private terrace that runs the perimeter of the unit and a large outdoor plunge pool.</span></p>\r\n\r\n<footer class=\"boxcard__foot\"><center>\r\n<p class=\"mod-reset\"><a class=\"v-button i-arrow-light\" title=\"Full Room Details\" href=\"estatesatnuevo/home/estates-1-bedroom\">FULL ROOM DETAILS</a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n</center></footer></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Suites','','inherit','closed','closed','','313-revision-v1','','','2022-04-13 21:45:31','2022-04-13 21:45:31','',313,'https://estatesatnuevo.com/?p=373',0,'revision','',0),(375,1,'2022-04-13 21:53:26','2022-04-13 21:53:26','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n\r\n&nbsp;\r\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\"><header class=\"boxcard__head\">\r\n<h1 class=\"boxcard__title color3-color\">The Estates Accommodations</h1>\r\n</header></div>\r\n&nbsp;\r\n<div class=\"boxcard__lead\">\r\n<p class=\"boxcard__text\">From the breathtaking One Bedroom to the jaw-dropping Four Bedroom, The Estates at Nuevo Vallarta showcases exquisite spaces that are redefining modern luxury.</p>\r\n\r\n<header class=\"boxcard__head\"></header>\r\n<div class=\"boxcard__lead\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-about-6 boldgrid-section dynamic-gridblock background-scroll\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-1\"></div>\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-1\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-184\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-1-300x184.jpg\" alt=\"\" width=\"613\" height=\"376\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-5 col-sm-7 col-xs-12 col-lg-3\">\r\n<div style=\"padding: 80px 5%;\" class=\"bg-box-cover color-neutral-background-color color-neutral-text-contrast bg-background-color bg-box\">\r\n<h2 class=\"h1 color1-color\" style=\"text-align: center; font-size: 30px;\">The Estates one Bedroom</h2>\r\n<p class=\"\" style=\"margin: 30px 0; text-align: center;\">This stunning space features a gourmet kitchen with dining space, a bedroom, two bathrooms, and a large private terrace.</p>\r\n\r\n<footer class=\"boxcard__foot\"><center>\r\n<p class=\"mod-reset\"><a class=\"v-button i-arrow-light\" title=\"Full Room Details\" href=\"/home/estates-1-bedroom\">FULL ROOM DETAILS</a></p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</center></footer></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-about-6 boldgrid-section dynamic-gridblock background-scroll\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-7\"></div>\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-1\"></div>\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-1\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-371\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/estates-2bedsuite-300x191.jpg\" alt=\"\" width=\"614\" height=\"391\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-5 col-sm-7 col-xs-12 col-lg-3\">\r\n<div style=\"padding: 80px 5%;\" class=\"bg-box-cover color-neutral-background-color color-neutral-text-contrast bg-background-color bg-box\">\r\n<h2 class=\"h1 color1-color\" style=\"text-align: center; font-size: 30px;\">The Estates TWO Bedroom</h2>\r\n<p class=\"\" style=\"margin: 30px 0; text-align: center;\"><span>This amazing space features a gourmet kitchen with dining space, two bedrooms, three bathrooms, a private terrace, and large private plunge pool.</span></p>\r\n\r\n<footer class=\"boxcard__foot\"><center>\r\n<p class=\"mod-reset\"><a class=\"v-button i-arrow-light\" title=\"Full Room Details\" href=\"/home/estates-2-bedroom\">FULL ROOM DETAILS</a></p>\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</center></footer></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-about-6 boldgrid-section dynamic-gridblock background-scroll\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-7\"></div>\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-1\"></div>\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-1\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-207\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3dining-1-300x184.jpg\" alt=\"\" width=\"618\" height=\"379\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-5 col-sm-7 col-xs-12 col-lg-3\">\r\n<div style=\"padding: 80px 5%;\" class=\"bg-box-cover color-neutral-background-color color-neutral-text-contrast bg-background-color bg-box\">\r\n<h2 class=\"h1 color1-color\" style=\"text-align: center; font-size: 30px;\">The Estates THREE Bedroom</h2>\r\n<p class=\"\" style=\"margin: 30px 0; text-align: center;\"><span>This luxurious space features a gourmet kitchen with dining space, three bedrooms, five bathrooms, a private terrace, and large private plunge pool.</span></p>\r\n\r\n<footer class=\"boxcard__foot\"><center>\r\n<p class=\"mod-reset\"><a class=\"v-button i-arrow-light\" title=\"Full Room Details\" href=\"/home/estates-3-bedroom\">FULL ROOM DETAILS</a></p>\r\n\r\n</center></footer></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-about-6 boldgrid-section dynamic-gridblock background-scroll\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-7\"></div>\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-1\"></div>\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-1\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-213\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates4living-300x184.jpg\" alt=\"\" width=\"615\" height=\"377\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-5 col-sm-7 col-xs-12 col-lg-3\">\r\n<div style=\"padding: 80px 5%;\" class=\"bg-box-cover color-neutral-background-color color-neutral-text-contrast bg-background-color bg-box\">\r\n<h2 class=\"h1 color1-color\" style=\"text-align: center; font-size: 30px;\">The Estates FOUR Bedroom</h2>\r\n<p class=\"\" style=\"margin: 30px 0; text-align: center;\"><span>This jaw-dropping lofted, double-level space features a spectacular kitchen and dining area, three bedrooms, five bathrooms, a private terrace that runs the perimeter of the unit and a large outdoor plunge pool.</span></p>\r\n\r\n<footer class=\"boxcard__foot\"><center>\r\n<p class=\"mod-reset\"><a class=\"v-button i-arrow-light\" title=\"Full Room Details\" href=\"/home/estates-4-bedroom\">FULL ROOM DETAILS</a></p>\r\n\r\n</center></footer></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Suites','','inherit','closed','closed','','313-revision-v1','','','2022-04-13 21:53:26','2022-04-13 21:53:26','',313,'https://estatesatnuevo.com/?p=375',0,'revision','',0),(376,1,'2022-04-13 22:01:09','2022-04-13 22:01:09','','Suites1 (4)','','inherit','open','closed','','suites1-4','','','2022-04-13 22:01:09','2022-04-13 22:01:09','',313,'https://estatesatnuevo.com/wp-content/uploads/2022/04/Suites1-4.jpg',0,'attachment','image/jpeg',0),(381,1,'2022-04-13 22:36:48','2022-04-13 22:36:48','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-7 col-xs-12 col-sm-12 col-lg-7\">\r\n<h3 class=\"color3-color\" style=\"font-family: Chonburi; font-weight: 600; font-style: normal; font-size: 25px; text-align: center;\" data-font-family=\"Chonburi\" data-font-weight=\"600\" data-font-style=\"normal\">The Estates One Bedroom</h3>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">This stunning space features a gourmet kitchen with dining space, a bedroom, two bathrooms, and a large private terrace.</p>\r\n\r\n</div>\r\n<div class=\"col-md-5 col-xs-12 col-sm-12 col-lg-5\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-380 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/Suites1-4-1-300x184.jpg\" alt=\"Suites1 Bedroom\" width=\"300\" height=\"184\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-5 text-center col-xs-12 col-lg-6\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-371 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/11_0_300_199.2277992278_estates-2bedsuite.jpg\" alt=\"\" width=\"300\" height=\"199\"></p>\r\n<p class=\"mod-img\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-7 col-xs-12 col-lg-6\">\r\n<h2 class=\"color3-color\" style=\"font-family: Chonburi; font-weight: 600; font-size: 25px; text-align: center;\" data-font-family=\"Chonburi\" data-font-weight=\"600\" data-font-style=\"\">Estates Two Bedroom</h2>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">This amazing space features a gourmet kitchen with dining space, two bedrooms, three bathrooms, a private terrace, and large private plunge pool.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-7 col-xs-12 col-sm-12 col-lg-7\">\r\n<h3 class=\"color3-color\" style=\"font-family: Chonburi; font-weight: 600; font-style: normal; font-size: 25px; text-align: center;\" data-font-family=\"Chonburi\" data-font-weight=\"600\" data-font-style=\"normal\">The Estates three Bedroom</h3>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\"><span>This luxurious space features a gourmet kitchen with dining space, three bedrooms, five bathrooms, a private terrace, and large private plunge pool.</span></p>\r\n\r\n</div>\r\n<div class=\"col-md-5 col-xs-12 col-sm-12 col-lg-5\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-380 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/Suites1-4-1-300x184.jpg\" alt=\"Suites1 Bedroom\" width=\"300\" height=\"184\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-5 text-center col-xs-12 col-lg-6\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-371 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/11_0_300_199.2277992278_estates-2bedsuite.jpg\" alt=\"\" width=\"300\" height=\"199\"></p>\r\n<p class=\"mod-img\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-7 col-xs-12 col-lg-6\">\r\n<h2 class=\"color3-color\" style=\"font-family: Chonburi; font-weight: 600; font-size: 25px; text-align: center;\" data-font-family=\"Chonburi\" data-font-weight=\"600\" data-font-style=\"\">Estates four Bedroom</h2>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\"><span>This jaw-dropping lofted, double-level space features a spectacular kitchen and dining area, three bedrooms, five bathrooms, a private terrace that runs the perimeter of the unit and a large outdoor plunge pool.</span></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Estates at Nuevo Suites','','inherit','closed','closed','','313-revision-v1','','','2022-04-13 22:36:48','2022-04-13 22:36:48','',313,'https://estatesatnuevo.com/?p=381',0,'revision','',0),(377,1,'2022-04-13 22:03:10','2022-04-13 22:03:10','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n\r\n&nbsp;\r\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\"><header class=\"boxcard__head\">\r\n<h1 class=\"boxcard__title color3-color\">The Estates Accommodations</h1>\r\n</header></div>\r\n&nbsp;\r\n<div class=\"boxcard__lead\">\r\n<p class=\"boxcard__text\">From the breathtaking One Bedroom to the jaw-dropping Four Bedroom, The Estates at Nuevo Vallarta showcases exquisite spaces that are redefining modern luxury.</p>\r\n\r\n<header class=\"boxcard__head\"></header>\r\n<div class=\"boxcard__lead\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-about-6 boldgrid-section dynamic-gridblock background-scroll\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-1\"></div>\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-1\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-376 \" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/0_0_300_183.984375_Suites1-4-768x471.jpg\" alt=\"\" width=\"616\" height=\"378\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-5 col-sm-7 col-xs-12 col-lg-3\">\r\n<div style=\"padding: 80px 5%;\" class=\"bg-box-cover color-neutral-background-color color-neutral-text-contrast bg-background-color bg-box\">\r\n<h2 class=\"h1 color1-color\" style=\"text-align: center; font-size: 30px;\">The Estates one Bedroom</h2>\r\n<p class=\"\" style=\"margin: 30px 0; text-align: center;\">This stunning space features a gourmet kitchen with dining space, a bedroom, two bathrooms, and a large private terrace.</p>\r\n\r\n<footer class=\"boxcard__foot\"><center>\r\n<p class=\"mod-reset\"><a class=\"v-button i-arrow-light\" title=\"Full Room Details\" href=\"/home/estates-1-bedroom\">FULL ROOM DETAILS</a></p>\r\n<p class=\"\">&nbsp;</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n</center></footer></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-about-6 boldgrid-section dynamic-gridblock background-scroll\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-7\"></div>\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-1\"></div>\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-1\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-371\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/estates-2bedsuite-768x471.jpg\" alt=\"\" width=\"614\" height=\"391\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-5 col-sm-7 col-xs-12 col-lg-3\">\r\n<div style=\"padding: 80px 5%;\" class=\"bg-box-cover color-neutral-background-color color-neutral-text-contrast bg-background-color bg-box\">\r\n<h2 class=\"h1 color1-color\" style=\"text-align: center; font-size: 30px;\">The Estates TWO Bedroom</h2>\r\n<p class=\"\" style=\"margin: 30px 0; text-align: center;\"><span>This amazing space features a gourmet kitchen with dining space, two bedrooms, three bathrooms, a private terrace, and large private plunge pool.</span></p>\r\n\r\n<footer class=\"boxcard__foot\"><center>\r\n<p class=\"mod-reset\"><a class=\"v-button i-arrow-light\" title=\"Full Room Details\" href=\"/home/estates-2-bedroom\">FULL ROOM DETAILS</a></p>\r\n<p class=\"\">&nbsp;</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n</center></footer></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-about-6 boldgrid-section dynamic-gridblock background-scroll\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-7\"></div>\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-1\"></div>\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-1\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-207\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3dining-1-768x471.jpg\" alt=\"\" width=\"618\" height=\"379\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-5 col-sm-7 col-xs-12 col-lg-3\">\r\n<div style=\"padding: 80px 5%;\" class=\"bg-box-cover color-neutral-background-color color-neutral-text-contrast bg-background-color bg-box\">\r\n<h2 class=\"h1 color1-color\" style=\"text-align: center; font-size: 30px;\">The Estates THREE Bedroom</h2>\r\n<p class=\"\" style=\"margin: 30px 0; text-align: center;\"><span>This luxurious space features a gourmet kitchen with dining space, three bedrooms, five bathrooms, a private terrace, and large private plunge pool.</span></p>\r\n\r\n<footer class=\"boxcard__foot\"><center>\r\n<p class=\"mod-reset\"><a class=\"v-button i-arrow-light\" title=\"Full Room Details\" href=\"/home/estates-3-bedroom\">FULL ROOM DETAILS</a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n</center></footer></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"tmpl-about-6 boldgrid-section dynamic-gridblock background-scroll\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-7\"></div>\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-1\"></div>\r\n<div class=\"col-md-7 col-sm-5 col-xs-12 col-lg-1\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-213\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates4living-768x471.jpg\" alt=\"\" width=\"615\" height=\"377\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-5 col-sm-7 col-xs-12 col-lg-3\">\r\n<div style=\"padding: 80px 5%;\" class=\"bg-box-cover color-neutral-background-color color-neutral-text-contrast bg-background-color bg-box\">\r\n<h2 class=\"h1 color1-color\" style=\"text-align: center; font-size: 30px;\">The Estates FOUR Bedroom</h2>\r\n<p class=\"\" style=\"margin: 30px 0; text-align: center;\"><span>This jaw-dropping lofted, double-level space features a spectacular kitchen and dining area, three bedrooms, five bathrooms, a private terrace that runs the perimeter of the unit and a large outdoor plunge pool.</span></p>\r\n\r\n<footer class=\"boxcard__foot\"><center>\r\n<p class=\"mod-reset\"><a class=\"v-button i-arrow-light\" title=\"Full Room Details\" href=\"/home/estates-4-bedroom\">FULL ROOM DETAILS</a></p>\r\n&nbsp;\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</center></footer></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Suites','','inherit','closed','closed','','313-revision-v1','','','2022-04-13 22:03:10','2022-04-13 22:03:10','',313,'https://estatesatnuevo.com/?p=377',0,'revision','',0),(378,1,'2022-04-13 22:07:06','2022-04-13 22:07:06','','Suites1 (5)','','inherit','open','closed','','suites1-5','','','2022-04-13 22:07:06','2022-04-13 22:07:06','',313,'https://estatesatnuevo.com/wp-content/uploads/2022/04/Suites1-5.jpg',0,'attachment','image/jpeg',0),(379,1,'2022-04-13 22:11:18','2022-04-13 22:11:18','','Suites1 (5)','','inherit','open','closed','','suites1-5-2','','','2022-04-13 22:11:18','2022-04-13 22:11:18','',313,'https://estatesatnuevo.com/wp-content/uploads/2022/04/Suites1-5-1.jpg',0,'attachment','image/jpeg',0),(380,1,'2022-04-13 22:24:04','2022-04-13 22:24:04','','','','inherit','open','closed','','suites1-4-2','','','2022-04-13 22:38:54','2022-04-13 22:38:54','',313,'https://estatesatnuevo.com/wp-content/uploads/2022/04/Suites1-4-1.jpg',0,'attachment','image/jpeg',0),(384,1,'2022-04-13 22:46:10','2022-04-13 22:46:10','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-7 col-xs-12 col-sm-12 col-lg-7\">\r\n<h3 class=\"color3-color\" style=\"font-family: Roboto; font-weight: 600; font-style: normal; font-size: 25px; text-align: center;\" data-font-family=\"Roboto\" data-font-weight=\"600\" data-font-style=\"normal\">The Estates One Bedroom</h3>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">This stunning space features a gourmet kitchen with dining space, a bedroom, two bathrooms, and a large private terrace.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-1-bedroom\">Room Details</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-5 col-xs-12 col-sm-12 col-lg-5\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-380 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/Suites1-4-1-300x184.jpg\" alt=\"Suites1 Bedroom\" width=\"300\" height=\"184\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 12px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-5 text-center col-xs-12 col-lg-6\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-371 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/11_0_300_199.2277992278_estates-2bedsuite.jpg\" alt=\"\" width=\"300\" height=\"199\"></p>\r\n<p class=\"mod-img\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-7 col-xs-12 col-lg-6\">\r\n<h2 class=\"color3-color\" style=\"font-family: Roboto; font-weight: 600; font-size: 25px; text-align: center;\" data-font-family=\"Roboto\" data-font-weight=\"600\" data-font-style=\"\">Estates Two Bedroom</h2>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">This amazing space features a gourmet kitchen with dining space, two bedrooms, three bathrooms, a private terrace, and large private plunge pool.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-2-bedroom\">Room Details</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-7 col-xs-12 col-sm-12 col-lg-7\">\r\n<h3 class=\"color3-color\" style=\"font-family: Roboto; font-weight: 600; font-style: normal; font-size: 25px; text-align: center;\" data-font-family=\"Roboto\" data-font-weight=\"600\" data-font-style=\"normal\">The Estates three Bedroom</h3>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\"><span>This luxurious space features a gourmet kitchen with dining space, three bedrooms, five bathrooms, a private terrace, and large private plunge pool.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-3-bedroom\">Room Details</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-5 col-xs-12 col-sm-12 col-lg-5\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-207 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3dining-1-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-5 text-center col-xs-12 col-lg-6\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-304 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/Vidanta-nuevo-vallarta-the-estates-rooms-gallery-2-1-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-7 col-xs-12 col-lg-6\">\r\n<h2 class=\"color3-color\" style=\"font-family: Roboto; font-weight: 600; font-size: 25px; text-align: center;\" data-font-family=\"Roboto\" data-font-weight=\"600\" data-font-style=\"\">Estates four Bedroom</h2>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\"><span>This jaw-dropping lofted, double-level space features a spectacular kitchen and dining area, three bedrooms, five bathrooms, a private terrace that runs the perimeter of the unit and a large outdoor plunge pool.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-4-bedroom\">Room Details</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Suites','','inherit','closed','closed','','313-revision-v1','','','2022-04-13 22:46:10','2022-04-13 22:46:10','',313,'https://estatesatnuevo.com/?p=384',0,'revision','',0),(385,1,'2022-04-13 22:47:47','2022-04-13 22:47:47','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-7 col-xs-12 col-sm-12 col-lg-7\">\r\n<h3 class=\"color3-color\" style=\"font-family: Roboto; font-weight: 600; font-style: normal; font-size: 25px; text-align: center;\" data-font-family=\"Roboto\" data-font-weight=\"600\" data-font-style=\"normal\">The Estates One Bedroom</h3>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">This stunning space features a gourmet kitchen with dining space, a bedroom, two bathrooms, and a large private terrace.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-1-bedroom\">Room Details</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-5 col-xs-12 col-sm-12 col-lg-5\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-380 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/Suites1-4-1-300x184.jpg\" alt=\"Suites1 Bedroom\" width=\"300\" height=\"184\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 12px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-5 text-center col-xs-12 col-lg-6\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-371 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/11_0_300_199.2277992278_estates-2bedsuite.jpg\" alt=\"\" width=\"300\" height=\"199\"></p>\r\n<p class=\"mod-img\">&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-7 col-xs-12 col-lg-6\">\r\n<h2 class=\"color3-color\" style=\"font-family: Roboto; font-weight: 600; font-size: 25px; text-align: center;\" data-font-family=\"Roboto\" data-font-weight=\"600\" data-font-style=\"\">Estates Two Bedroom</h2>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\">This amazing space features a gourmet kitchen with dining space, two bedrooms, three bathrooms, a private terrace, and large private plunge pool.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-2-bedroom\">Room Details</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-top: 10px;\">\r\n<div class=\"col-lg-12 col-md-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-7 col-xs-12 col-sm-12 col-lg-7\">\r\n<h3 class=\"color3-color\" style=\"font-family: Roboto; font-weight: 600; font-style: normal; font-size: 25px; text-align: center;\" data-font-family=\"Roboto\" data-font-weight=\"600\" data-font-style=\"normal\">The Estates three Bedroom</h3>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\"><span>This luxurious space features a gourmet kitchen with dining space, three bedrooms, five bathrooms, a private terrace, and large private plunge pool.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-3-bedroom\">Room Details</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-5 col-xs-12 col-sm-12 col-lg-5\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-207 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3dining-1-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 10px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-5 text-center col-xs-12 col-lg-6\">\r\n<p class=\"mod-reset\"><img class=\"alignnone wp-image-304 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/04/Vidanta-nuevo-vallarta-the-estates-rooms-gallery-2-1-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-7 col-xs-12 col-lg-6\">\r\n<h2 class=\"color3-color\" style=\"font-family: Roboto; font-weight: 600; font-size: 25px; text-align: center;\" data-font-family=\"Roboto\" data-font-weight=\"600\" data-font-style=\"\">Estates four Bedroom</h2>\r\n<p class=\"color3-color\" style=\"font-weight: 600;\" data-font-weight=\"600\"><span>This jaw-dropping lofted, double-level space features a spectacular kitchen and dining area, three bedrooms, five bathrooms, a private terrace that runs the perimeter of the unit and a large outdoor plunge pool.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-4-bedroom\">Room Details</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Suites','','inherit','closed','closed','','313-revision-v1','','','2022-04-13 22:47:47','2022-04-13 22:47:47','',313,'https://estatesatnuevo.com/?p=385',0,'revision','',0),(386,1,'2022-04-16 16:47:24','2022-04-16 16:47:24','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 27px;\">\r\n<div class=\"col-md-12 text-center col-xs-12 col-sm-12 text-center col-lg-12\">\r\n<h1 class=\"intro__title color3-color\" style=\"font-weight: 600; font-size: 32px;\" data-font-weight=\"600\">Estates 1 Bedroom Luxury Condo</h1>\r\n<p class=\"color3-color\" style=\"text-align: left; font-weight: 600;\" data-font-weight=\"600\"><span style=\"font-size: 17.5px; text-align: center;\"><span>This gorgeous space features a gourmet kitchen outfitted with all the finest appliances, a stylish dining area seating six, a separate lounge area with TV, a bedroom with a king bed and a TV, two bathrooms including one with a Jacuzzi tub, and a large terrace complete with beautiful outdoor furnishings. </span>The Estates 1 Bedroom Luxury Condo accommodates 4 adults.</span></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-1 col-sm-12 col-xs-12 col-lg-1\"></div>\r\n<div class=\"col-md-10 col-xs-12 col-sm-12 align-column-center col-lg-10\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\" style=\"padding: 4em;\"><span class=\"\"></span><img class=\"align=aligncenter\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-1-300x184.jpg\" alt=\"\" width=\"630\" height=\"386\" data-imhwpb-built-photo-search=\"108|landscape\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12 col-lg-1\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\"><img class=\"alignnone wp-image-208 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3rooom-1-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n\r\n[caption id=\"attachment_1995\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1995 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-walkway-300x184.jpg\" alt=\"Walkway to Estates pools and shops\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Walkway to Estates pools and shops[/caption]\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\"><img class=\"alignnone wp-image-185 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-1bed-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n\r\n[caption id=\"attachment_1990\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1990 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-2pools-300x184.jpg\" alt=\"Estates pools\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Estates private pools[/caption]\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\"><img class=\"alignnone wp-image-184 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-1-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n\r\n[caption id=\"attachment_1993\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-1993 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-beachland-300x184.jpg\" alt=\"Estates only pool section\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Estates only pool section[/caption]\r\n<p class=\"mod-img\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12 col-lg-6\" style=\"padding-left: 2.6em;\">\r\n<p class=\"\" style=\"font-size: 18px; color: #000000; font-weight: 600; line-height: 1.5em;\" data-font-weight=\"600\">Reduced golf fees and 2 for 1 basic 50-minute massages plus use of all facilities of the gym and spa free of charge.&nbsp; This includes facilities only and does not include food and beverages, facial or other spa treatments, personal training or any other services available at the gym or spa.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Complimentary morning coffee/tea service. A safety deposit box in each bedroom. Daily maid service and chocolates on your pillow at night!</p>\r\n<p class=\"\" style=\"font-size: 18px; font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">All units are a minimum of 7 nights with check-ins Friday-Monday.</p>\r\n<p class=\"\" style=\"font-weight: 600; font-size: 18px; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\"><strong><a class=\"\" href=\" https://www.GrandLuxxe-Vacation.com/home/contact-us/\">E-mail </a></strong>for details and we will do our best to get you the unit you desire. Click the word e-mail for a link.</p>\r\n<p class=\"\"><iframe style=\"overflow: hidden; display: block; margin: 0 auto; width: 100%; max-width: 400px; min-height: 400px;\" src=\"https://www.houfy.com/embed/67716/pricing\" frameborder=\"“0&quot;\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n<p class=\"\" style=\"font-weight: 600;\" data-font-weight=\"600\">Please ask any questions prior to your reservation request.&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding-right: 2.4em;\">\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\"><span style=\"font-size: 17.5px;\">Free in-room Internet access.&nbsp;&nbsp;</span></p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Tennis Courts - Use of the courts free of charge includes se of facilities and use of towels only and not the cost of nighttime illumination, rental or purchase of equipment, food and beverages, or any other expenses associated with the use of tennis courts.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Butler Service - a butler is assigned to assist your every need. Making reservations, etc.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Restaurant Reservations - Advise concierge of where you would like to eat and at what time and how many in your party (Reservations must be made 24 hours in advance).</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Spa Services - Rest, Relax, and Rejuvenate. Take advantage of the many massage and body treatments offered at the BRIO Spa &amp; Fitness Center. (Reservations must be made 72 hours in advance).</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Tee Times/Golf Reservations - Enjoy advance booking for your rounds of golf. Call the Pro Shop 72 hours in advance to book your tee times.</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Check-in - Enjoy an exclusive check in experience, free of long lines and waiting time.</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred View - The most desirable views subject to space availability.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Estates 1 Bedroom','','inherit','closed','closed','','219-revision-v1','','','2022-04-16 16:47:24','2022-04-16 16:47:24','',219,'https://estatesatnuevo.com/?p=386',0,'revision','',0),(387,1,'2022-04-17 12:55:15','2022-04-17 12:55:15','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 text-center col-xs-12 col-sm-12 text-center col-lg-12\">\r\n<h1 class=\"intro__title color3-color\" style=\"font-weight: 600; font-size: 32px;\" data-font-weight=\"600\">Estates 3 Bedroom Luxury Condo</h1>\r\n<p class=\"color3-color\" style=\"text-align: left; font-weight: 600;\" data-font-weight=\"600\"><span style=\"font-size: 17.5px; text-align: center;\"><span>This beautiful space features a gourmet kitchen outfitted with a breakfast bar and all the finest appliances, a stylish dining area, a lounge area with TV, two bedrooms with a king bed and a TV, another bedroom with two twin beds and a TV, five bathrooms including three with a Jacuzzi tub, and a large terrace complete with beautiful outdoor furnishings and a private plunge pool.</span>&nbsp; The Estates 3 Bedroom Luxury Condo accommodates 10 adults and 2 children.</span></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\" style=\"padding-left: 11em;\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\" style=\"padding: 0em;\"><img class=\"alignnone wp-image-175 \" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3dining-300x184.jpg\" alt=\"\" width=\"703\" height=\"431\" data-imhwpb-built-photo-search=\"108|landscape\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\r\n<div class=\"image-gallery\">\r\n\r\n<img class=\"alignnone wp-image-176 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3deck-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\">\r\n<p class=\"\"><img class=\"alignnone wp-image-202 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3bath-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n\r\n[caption id=\"attachment_1995\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1995 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-walkway-300x184.jpg\" alt=\"Walkway to Estates pools and shops\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Walkway to Estates pools and shops[/caption]\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\r\n<div class=\"image-gallery\">\r\n\r\n<img class=\"alignnone wp-image-177 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3bed-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\">\r\n\r\n<img class=\"alignnone wp-image-208 size-medium\" style=\"text-align: center;\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3rooom-1-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\">\r\n\r\n[caption id=\"attachment_1990\" align=\"aligncenter\" width=\"300\"]<img class=\"wp-image-1990 size-medium\" style=\"text-align: center;\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-2pools-300x184.jpg\" alt=\"Estates pools\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Estates private pools[/caption]\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-sm-2 col-xs-4 text-center col-lg-4\">\r\n<div class=\"image-gallery\">\r\n<p class=\"\"><img class=\"alignnone wp-image-204 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates3bed2-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n\r\n\r\n[caption id=\"attachment_1993\" align=\"alignnone\" width=\"300\"]<img class=\"wp-image-1993 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2022/02/estates-beachland-300x184.jpg\" alt=\"Estates only pool section\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"> Estates only pool section[/caption]\r\n<p class=\"\"><img class=\"alignnone wp-image-193 size-medium\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/estates-pool-300x184.jpg\" alt=\"\" width=\"300\" height=\"184\" data-imhwpb-built-photo-search=\"108|square\"></p>\r\n<p class=\"mod-img\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, #ffffff, #ffffff);\" data-bg-color-1=\"#FFFFFF\" data-bg-color-2=\"#FFFFFF\" data-bg-direction=\"to left\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px; padding-bottom: 0px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12 col-lg-6\" style=\"padding-left: 2.6em;\">\r\n<p class=\"\" style=\"font-size: 18px; color: #000000; font-weight: 600; line-height: 1.5em;\" data-font-weight=\"600\">Reduced or free golf fees and 2 for 1 basic 50-minute massages plus use of all facilities of the gym and spa free of charge.&nbsp; This includes facilities only and does not include food and beverages, facial or other spa treatments, personal training or any other services available at the gym or spa.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Complimentary morning coffee/tea service. A safety deposit box in each bedroom. Daily maid service and chocolates on your pillow at night!</p>\r\n<p class=\"\" style=\"font-size: 18px; font-weight: 600; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\">All units are a minimum of 7 nights with check-ins Friday-Monday.</p>\r\n<p class=\"\" style=\"font-weight: 600; font-size: 18px; color: #000000; line-height: 1.4em;\" data-font-weight=\"600\"><strong><a class=\"\" href=\" https://www.GrandLuxxe-Vacation.com/home/contact-us/\">E-mail </a></strong>for details and we will do our best to get you the unit you desire. Click the word e-mail for a link.</p>\r\n<p class=\"\"><iframe style=\"overflow: hidden; display: block; margin: 0 auto; width: 100%; max-width: 400px; min-height: 400px;\" src=\"https://www.houfy.com/embed/67766/pricing\" frameborder=\"“0&quot;\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n<p class=\"\" style=\"font-weight: 600;\" data-font-weight=\"600\">Please ask any questions prior to your reservation request.&nbsp;</p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding-right: 2.4em;\">\r\n<p class=\"\" style=\"color: #000000; font-weight: 600;\" data-font-weight=\"600\"><span style=\"font-size: 17.5px;\">Free in-room Internet access.&nbsp;&nbsp;</span></p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Tennis Courts - Use of the courts free of charge includes se of facilities and use of towels only and not the cost of nighttime illumination, rental or purchase of equipment, food and beverages, or any other expenses associated with the use of tennis courts.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Butler Service - a butler is assigned to assist your every need. Making reservations, etc.</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Restaurant Reservations - Advise concierge of where you would like to eat and at what time and how many in your party (Reservations must be made 24 hours in advance).</p>\r\n<p class=\"\" style=\"line-height: 1.4em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Spa Services - Rest, Relax, and Rejuvenate. Take advantage of the many massage and body treatments offered at the BRIO Spa &amp; Fitness Center. (Reservations must be made 72 hours in advance).</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Tee Times/Golf Reservations - Enjoy advance booking for your rounds of golf. Call the Pro Shop 72 hours in advance to book your tee times.</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred Check-in - Enjoy an exclusive check in experience, free of long lines and waiting time.</p>\r\n<p class=\"\" style=\"line-height: 1.5em; color: #000000; font-size: 18px; font-weight: 600;\" data-font-weight=\"600\">Preferred View - The most desirable views subject to space availability.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Estates 3 Bedroom','','inherit','closed','closed','','173-revision-v1','','','2022-04-17 12:55:15','2022-04-17 12:55:15','',173,'https://estatesatnuevo.com/?p=387',0,'revision','',0),(392,1,'2022-11-18 15:20:09','2022-11-18 15:20:09','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"color: #ffffff; background-image: url(\'https://estatesatnuevo.com/wp-content/uploads/2022/04/estatescover.jpg\'); background-size: cover; background-position: 50% 100%;\" data-image-url=\"https://estatesatnuevo.com/wp-content/estatescover.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px; background-image: url(\'https://estatescover.jpg\'); background-size: cover; background-position: 50% 100%; padding-bottom: 287px;\" data-image-url=\"https://estatescover.jpg/1500x919\">\r\n<div class=\"col-md-8 col-sm-10 col-xs-12 align-column-center col-lg-4\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n<div class=\"\"></div>\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-12 col-lg-2\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<h2 class=\"intro__title\" style=\"font-weight: 600; font-size: 36px; color: #ffffff;\" align=\"center\" data-font-weight=\"600\">Ultimate Luxury Meets Ultimate Nature</h2>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">INFORMATION</h3>\r\n<p class=\"\" style=\"padding: 0em;\">Named as one of the Top Hotels in Mexico and Top Hotels in the World by Travel + Leisure\'s World\'s Best Awards, Vidanta Nuevo Vallarta offers the ultimate resort vacation. This expansive destination has been carefully curated to provide a high-end experience full of options, including endless restaurants and lounges, three golf courses and a golf academy, a shopping plaza, and entertainment plaza, two indulgent spas, countless pools, and the all-new Beachland.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/info\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">SUITES</h3>\r\n<p class=\"\">Discover the best that exclusive luxury vacationing has to offer at The Estates at Nuevo, a haven of high-end comfort sequestered in the sublime jungle landscape at Vidanta Nuevo Vallarta\'s 5-star resort.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-1-bedroom\">1 Bedroom</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-2-bedroom\">2 Bedrooms</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-3-bedroom\">3 Bedrooms</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-4-bedroom\">4 Bedrooms</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">ACTIVITIES</h3>\r\n<header class=\"intro__header\"></header>\r\n<div class=\"intro__lead\">\r\n<p class=\"boxcard__text\">It’s your vacation, so why not spend it doing the types of things you love to do? At Estates at Nuevo, you’ll find a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, all run by our amazing activities team, the Joy Squad.</p>\r\n<p class=\"boxcard__text\">Don’t forget to download the activities calendar and check out your resort hotel to see what activities are happening when!</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/activities\">Learn more</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">property photos</h3>\r\n<p class=\"\" style=\"padding: 0em;\">At the Estates at Nuevo you can kick back in a remote jungle oasis by your accommodations or enjoy a gorgeous exclusive pool and lounge area in Beachland. Ride the exclusive gondola, play golf, luxuriate in a spa setting or relax by the pool in your private sanctuary.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/photos\">See More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">DINING</h3>\r\n<p class=\"\">With over 40 restaurants and lounges to choose from, Estates at Nuevo gives guests the opportunity to dine however they like. Options range from high-end eateries to casual restaurants to authentic Mexican spots, and even a gourmet market filled with offerings from all over the world. One thing is for sure—an amazing culinary experience is always just a meal away.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/dining\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">BASK IN EXCEPTIONAL SERVICE</h3>\r\n<header class=\"intro__header\"></header>\r\n<div class=\"intro__lead\">\r\n<p class=\"intro__text\">Experience a higher level of service during your next vacation at Nuevo Vallarta. For the duration of your stay, you will have a personal butler and concierge to take care of everything needed to make your visit to paradise exceptional and unique. We want you to truly relax and cast your cares away, fully immerse yourself in our sumptuous accommodations and amenities, and focus on special moments with your loved ones—free of any burdens or distractions. &nbsp;</p>\r\n<p class=\"intro__text\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 1em;\">\r\n<div class=\"\">\r\n<div><span class=\"\">We are owners at the Estates at Nuevo Luxury Condo Suites at the Vidanta Resorts.&nbsp; We also own at the Grand Luxxe Vacation resort.&nbsp; There are several of the Vidanta resorts in Mexico but we love the Nuevo Vallarta site because it has the most to offer.&nbsp; &nbsp;</span></div>\r\n<p class=\"\">We work with other owners so we have a larger selection of rentals available. Some have already been secured with the resort and are ready to book.&nbsp; If not, then we can check on availability for your specific time frame.</p>\r\n<p class=\"\">Always happy to answer any questions you may have about the resort and ourselves.&nbsp;&nbsp;</p>\r\n<p class=\"\">Thanks!&nbsp; Linda and Frank Helman</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 align-column-center col-lg-6\"><span class=\"\">From the moment you arrive, you will sense the difference with personalized attention 24/7 and the exclusivity in private beach and pool areas that are intimate and tranquil. At Vidanta’s Estates at Nuevo Vacation Mexican resort, we invite you to explore the gardens and landscaping, enjoy the ocean breeze, the unparalleled panoramic view of the Pacific Ocean in a magnificent sunset, and the natural biodiversity of the Bandera’s bay. It is the kind of extraordinary Mexican vacation experience you want, and the kind of service you deserve and expect.</span></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 0em 3em 90px;\">\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-110\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"k8m4Uj5JJAQ\" data-imhwpb-asset-id=\"1111013\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-111\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"r1tjlHBnHzY\" data-imhwpb-asset-id=\"1111014\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-112\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"l5gzNmXTzIg\" data-imhwpb-asset-id=\"1111015\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-113\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"\" data-imhwpb-asset-id=\"1111016\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-114\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"sBtqOe23bd0\" data-imhwpb-asset-id=\"1111017\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-115\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"B8He4PJkMLg\" data-imhwpb-asset-id=\"1111018\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 2em;\">\r\n<div class=\"\">\r\n<h2 class=\"color3-color\">Our Location</h2>\r\n<p class=\"\">Because we put the customer first, we always have free transportation from the airport to the resort and to your living suite.&nbsp;</p>\r\n<p class=\"\">Review the room details and let us know how we can help you have the best vacation possible. <a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates/home/contact\">Contact Us</a></p>\r\n\r\n<h3 class=\"color3-color\" style=\"font-weight: 400; font-size: 25px;\" data-font-weight=\"400\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address&nbsp;</h3>\r\n<p class=\"color3-color\" style=\"font-weight: 400;\" data-font-weight=\"400\">Blvd Riviera Nayarit #254, 63735 Nuevo Vallarta, Nay., Mexico</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 bg-box-flush col-lg-6\">\r\n<p class=\"\"><img class=\"bg-img alignnone wp-image-1806 size-medium\" style=\"background-color: var(--color-neutral); color: var(--color-neutral-text-contrast);\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico.jpg-2-300x210.jpg\" alt=\"Resort area showing proximity to airport and Puerto Vallarta\" width=\"300\" height=\"210\"><img class=\"bg-img alignnone wp-image-1810 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico-1.jpg-2-1-300x239.jpg\" alt=\"Close up of resort area\" width=\"300\" height=\"239\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','97-revision-v1','','','2022-11-18 15:20:09','2022-11-18 15:20:09','',97,'https://estatesatnuevo.com/?p=392',0,'revision','',0),(388,1,'2022-04-18 13:31:57','2022-04-18 13:31:57','<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color2-background-color color-2-text-contrast bg-background-color\">\r\n<div class=\"container\"></div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"color: #ffffff; background-image: url(\'https://estatesatnuevo.com/wp-content/uploads/2022/04/estatescover.jpg\'); background-size: cover; background-position: 50% 100%;\" data-image-url=\"https://estatesatnuevo.com/wp-content/estatescover.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px; background-image: url(\'https://estatescover.jpg\'); background-size: cover; background-position: 50% 100%; padding-bottom: 287px;\" data-image-url=\"https://estatescover.jpg/1500x919\">\r\n<div class=\"col-md-8 col-sm-10 col-xs-12 align-column-center col-lg-4\">\r\n<p class=\"mod-reset\">&nbsp;</p>\r\n\r\n<div class=\"\"></div>\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-12 col-lg-2\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<h2 class=\"intro__title\" style=\"font-weight: 600; font-size: 36px; color: #ffffff;\" align=\"center\" data-font-weight=\"600\">Ultimate Luxury Meets Ultimate Nature</h2>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 0px;\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">INFORMATION</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>Named as one of the Top Hotels in Mexico and Top Hotels in the World by Travel + Leisure\'s World\'s Best Awards, Vidanta Nuevo Vallarta offers the ultimate resort vacation. This expansive destination has been carefully curated to provide a high-end experience full of options, including endless restaurants and lounges, three golf courses and a golf academy, a shopping plaza, and entertainment plaza, two indulgent spas, countless pools, and the all-new Beachland.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/info\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">SUITES</h3>\r\n<p class=\"\"><span>Discover the best that exclusive luxury vacationing has to offer at The Estates at Nuevo, a haven of high-end comfort sequestered in the sublime jungle landscape at Vidanta Nuevo Vallarta\'s 5-star resort.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-1-bedroom\">1 Bedroom</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-2-bedroom\">2 Bedrooms</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-3-bedroom\">3 Bedrooms</a></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates-4-bedroom\">4 Bedrooms</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">ACTIVITIES</h3>\r\n<header class=\"intro__header\"></header>\r\n<div class=\"intro__lead\">\r\n<p class=\"boxcard__text\">It’s your vacation, so why not spend it doing the types of things you love to do? At Estates at Nuevo, you’ll find a wide variety of activities, from sports tournaments and classes to arts and crafts or poolside trivia, all run by our amazing activities team, the Joy Squad.</p>\r\n<p class=\"boxcard__text\">Don’t forget to download the activities calendar and check out your resort hotel to see what activities are happening when!</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/activities\">Learn more</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">property photos</h3>\r\n<p class=\"\" style=\"padding: 0em;\"><span>At the Estates at Nuevo you can kick back in a remote jungle oasis by your accommodations or enjoy a gorgeous exclusive pool and lounge area in Beachland. Ride the exclusive gondola, play golf, luxuriate in a spa setting or relax by the pool in your private sanctuary. </span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/photos\">See More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">DINING</h3>\r\n<p class=\"\"><span>With over 40 restaurants and lounges to choose from, Estates at Nuevo gives guests the opportunity to dine however they like. Options range from high-end eateries to casual restaurants to authentic Mexican spots, and even a gourmet market filled with offerings from all over the world. One thing is for sure—an amazing culinary experience is always just a meal away.</span></p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/dining\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color2-background-color color-2-text-contrast bg-background-color col-lg-4\" style=\"padding: 2em 3em 3em;\">\r\n<h3 class=\"\">GOLF AND spa</h3>\r\n<header class=\"intro__header\"></header>\r\n<div class=\"intro__lead\">\r\n<p class=\"intro__text\"><span>With two of the region’s premier courses—The Nayar Course and the Norman Signature Course—plus a 10-hole, par-3 The Lakes Course, a Golf Academy, a beautiful new restaurant, and the longest golf cart suspension bridge in the world, there really is no vacation getaway for golfers that compares to Estates at Nuevo.</span></p>\r\n<p class=\"intro__text\"><span>Vacation is about restful and renewing relaxation. It’s about indulging in peace and taking a moment to enjoy the clarity of being removed from your busy home life. At Estates at Nuevo we help you embrace that serenity and harness the revitalizing powers of paradise with two beautiful, well-appointed spas.</span></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12 col-lg-12\"></div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 1em;\">\r\n<div class=\"\">\r\n<div><span class=\"\">We are owners at the Estates at Nuevo Luxury Condo Suites at the Vidanta Resorts.&nbsp; We also own at the Grand Luxxe Vacation resort.&nbsp; There are several of the Vidanta resorts in Mexico but we love the Nuevo Vallarta site because it has the most to offer.&nbsp; &nbsp;</span></div>\r\n<p class=\"\">We work with other owners so we have a larger selection of rentals available. Some have already been secured with the resort and are ready to book.&nbsp; If not, then we can check on availability for your specific time frame.</p>\r\n<p class=\"\">Always happy to answer any questions you may have about the resort and ourselves.&nbsp;&nbsp;</p>\r\n<p class=\"\">Thanks!&nbsp; Linda and Frank Helman</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 align-column-center col-lg-6\"><span class=\"\">From the moment you arrive, you will sense the difference with personalized attention 24/7 and the exclusivity in private beach and pool areas that are intimate and tranquil. At Vidanta’s Estates at Nuevo Vacation Mexican resort, we invite you to explore the gardens and landscaping, enjoy the ocean breeze, the unparalleled panoramic view of the Pacific Ocean in a magnificent sunset, and the natural biodiversity of the Bandera’s bay. It is the kind of extraordinary Mexican vacation experience you want, and the kind of service you deserve and expect.</span></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 0em 3em 90px;\">\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-110\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"k8m4Uj5JJAQ\" data-imhwpb-asset-id=\"1111013\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-111\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"r1tjlHBnHzY\" data-imhwpb-asset-id=\"1111014\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-112\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"l5gzNmXTzIg\" data-imhwpb-asset-id=\"1111015\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-113\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"\" data-imhwpb-asset-id=\"1111016\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-114\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"sBtqOe23bd0\" data-imhwpb-asset-id=\"1111017\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center col-lg-2\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-115\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\" alt=\"\" width=\"300\" height=\"450\" data-unsplash-id=\"B8He4PJkMLg\" data-imhwpb-asset-id=\"1111018\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 col-lg-6\" style=\"padding: 3em 4em 2em;\">\r\n<div class=\"\">\r\n<h2 class=\"color3-color\">Our Location</h2>\r\n<p class=\"\">Because we put the customer first, we always have free transportation from the airport to the resort and to your living suite.&nbsp;</p>\r\n<p class=\"\">Review the room details and let us know how we can help you have the best vacation possible. <a class=\"button-primary btn btn-color-1 btn btn-border-color-1\" href=\"/home/estates/home/contact\">Contact Us</a></p>\r\n\r\n<h3 class=\"color3-color\" style=\"font-weight: 400; font-size: 25px;\" data-font-weight=\"400\"><i class=\"fa fa-1x fa-map-marker\"><!-- icon --></i> Address&nbsp;</h3>\r\n<p class=\"color3-color\" style=\"font-weight: 400;\" data-font-weight=\"400\">Blvd Riviera Nayarit #254, 63735 Nuevo Vallarta, Nay., Mexico</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 bg-box-flush col-lg-6\">\r\n<p class=\"\"><img class=\"bg-img alignnone wp-image-1806 size-medium\" style=\"background-color: var(--color-neutral); color: var(--color-neutral-text-contrast);\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico.jpg-2-300x210.jpg\" alt=\"Resort area showing proximity to airport and Puerto Vallarta\" width=\"300\" height=\"210\"><img class=\"bg-img alignnone wp-image-1810 size-medium\" src=\"https://grandluxxe-vacation.com/wp-content/uploads/2019/06/Map_Mexico-1.jpg-2-1-300x239.jpg\" alt=\"Close up of resort area\" width=\"300\" height=\"239\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-lg-12 col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>','Home','','inherit','closed','closed','','97-revision-v1','','','2022-04-18 13:31:57','2022-04-18 13:31:57','',97,'https://estatesatnuevo.com/?p=388',0,'revision','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wp_posts` with 337 row(s)
--

--
-- Table structure for table `wp_weforms_entrymeta`
--

DROP TABLE IF EXISTS `wp_weforms_entrymeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_weforms_entrymeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `weforms_entry_id` bigint(20) unsigned DEFAULT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `meta_key` (`meta_key`(250)),
  KEY `entry_id` (`weforms_entry_id`)
) ENGINE=MyISAM AUTO_INCREMENT=1077 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_weforms_entrymeta`
--

LOCK TABLES `wp_weforms_entrymeta` WRITE;
/*!40000 ALTER TABLE `wp_weforms_entrymeta` DISABLE KEYS */;
INSERT INTO `wp_weforms_entrymeta` VALUES (1,1,'name_1','Linda| | Helman'),(2,1,'email_2','ljhelman@hotmail.com'),(3,1,'text_3',''),(4,1,'textarea_4','test'),(5,2,'name_1','Eric Jones| | Jones'),(6,2,'email_2','eric.jones.z.mail@gmail.com'),(7,2,'text_3','Why not TALK with your leads?'),(8,2,'textarea_4','My name’s Eric and I just found your site estatesatnuevo.com. It’s got a lot going for it, but here’s an idea to make it even MORE effective. Talk With Web Visitor – CLICK HERE https://jumboleadmagnet.com for a live demo now. Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. And once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE https://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Eric PS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://jumboleadmagnet.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(9,3,'name_1','Eric Jones| | Jones'),(10,3,'email_2','eric.jones.z.mail@gmail.com'),(11,3,'text_3','how to turn eyeballs into phone calls'),(12,3,'textarea_4','Hi, Eric here with a quick thought about your website estatesatnuevo.com... I’m on the internet a lot and I look at a lot of business websites. Like yours, many of them have great content. But all too often, they come up short when it comes to engaging and connecting with anyone who visits. I get it – it’s hard. Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace. You got the eyeball, but nothing else. Here’s a solution for you… Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site. CLICK HERE https://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. It could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later. Plus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE https://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more eyeballs into leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://jumboleadmagnet.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(13,4,'name_1','Mohammad| | Mohammad'),(14,4,'email_2','info@wwfp.net'),(15,4,'text_3','Best Offer For estatesatnuevo.com'),(16,4,'textarea_4','Hello there Don\'t you hate carrying a big bulky backpack when you are only going out for the day? This high quality shoulder bag solves that problem. Carry enough without bogging yourself down! Perfect for that fishing trip or day hike! 50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED time Buy now: https://fashionbag.sale Regards, Mohammad'),(17,5,'name_1','Eric Jones| | Jones'),(18,5,'email_2','eric.jones.z.mail@gmail.com'),(19,5,'text_3','Who needs eyeballs, you need BUSINESS'),(20,5,'textarea_4','My name’s Eric and I just came across your website - estatesatnuevo.com - in the search results. Here’s what that means to me… Your SEO’s working. You’re getting eyeballs – mine at least. Your content’s pretty good, wouldn’t change a thing. BUT… Eyeballs don’t pay the bills. CUSTOMERS do. And studies show that 7 out of 10 visitors to a site like estatesatnuevo.com will drop by, take a gander, and then head for the hills without doing anything else. It’s like they never were even there. You can fix this. You can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Talk With Web Visitor. Talk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills. CLICK HERE https://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. Now it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better! That’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you. This could change everything for you and your business. CLICK HERE https://jumboleadmagnet.com to learn more about everything Talk With Web Visitor can do and start turing eyeballs into money. Eric PS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! It even includes International Long Distance Calling. Paying customers are out there waiting. Starting connecting today by CLICKING HERE https://jumboleadmagnet.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(21,6,'name_1','Gertrude| | Gertrude'),(22,6,'email_2','office@metinoxpvm.com'),(23,6,'text_3','Estates at Nuevo at Vidanta Nuevo Vallarta'),(24,6,'textarea_4','Good day Defrost frozen foods in minutes safely and naturally with our THAW KING™. 50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED Buy now: https://thawking.store Kind Regards, Gertrude'),(25,7,'name_1','Paul| | Boddam-Whetham'),(26,7,'email_2','paulbw32@icloud.com'),(27,7,'text_3','4-bed Estates to let'),(28,7,'textarea_4','I have a booking in our 4-bed Estate at Nuevo Vallarta for 22-29 October 2022. Unfortunately our family can no longer join us. We are keeping the reservation so the accommodation is available to let. Can you help find an interested user for this?'),(29,8,'name_1','Quincy| | Quincy'),(30,8,'email_2','ventas@soukcorp.com'),(31,8,'text_3','Estates at Nuevo at Vidanta Nuevo Vallarta'),(32,8,'textarea_4','Hi there, I hope this email finds you well. I wanted to let you know about our new BANGE backpacks and sling bags that just released. The bags are waterproof and anti-theft, and have a built-in USB cable that can recharge your phone while you\'re on the go. Both bags are made of durable and high-quality materials, and are perfect for everyday use or travel. Order yours now at 50% OFF with FREE Shipping: https://bangeonline.shop Kind Regards, Quincy'),(33,9,'name_1','Norris| | Norris'),(34,9,'email_2','redacao@revistabemestar.com'),(35,9,'text_3','Estates at Nuevo at Vidanta Nuevo Vallarta'),(36,9,'textarea_4','Good Morning I understand that you are looking for ways to improve your posture and contribute to a healthy lifestyle. I think our product, Medico Postura™ Body Posture Corrector, can be of great help. Medico Postura™ helps improve your posture INSTANTLY. It is an easy-to-use device that you can wear at home, work, or even when you are sleeping. It is made of lightweight and breathable fabric, making it comfortable to wear all day long. Get it today while it\'s still 60% OFF: https://medicopostura.com FREE Shipping - TODAY ONLY! Thanks for your time, Norris'),(37,10,'name_1','Arianne| | Arianne'),(38,10,'email_2','sales@rapidtoolglobal.com'),(39,10,'text_3','Estates at Nuevo at Vidanta Nuevo Vallarta'),(40,10,'textarea_4','Good Morning, If you are one of the sufferers of the common problems nails have, then you are in luck! Our Toenail Clippers is here to help. It has a specially designed clip that can help those with troubles with winding nails, hard nails, two nails, nail cracks, deep nails, and thickened nails. We are confident that our Toenail Clippers will provide you with the results you are looking for. Get yours today with 60% OFF: https://thepodiatrist.shop Enjoy, Arianne'),(41,11,'name_1','Shanel| | Shanel'),(42,11,'email_2','elly.rosen@aisociety.com'),(43,11,'text_3','Shanel Abend'),(44,11,'textarea_4','EASE YOUR PAIN IN 10 MINUTES EFFORTLESSLY Be Free from Neck Pain Try NeckFlexer &amp; Relieve Neck Pain Effortlessly In 10 Min! Save 50% OFF + FREE Worldwide Shipping Shop Now: neckflexer.online Shanel Estates at Nuevo at Vidanta Nuevo Vallarta'),(45,12,'name_1','Eric Jones| | Jones'),(46,12,'email_2','eric.jones.z.mail@gmail.com'),(47,12,'text_3','Why not TALK with your leads?'),(48,12,'textarea_4','My name’s Eric and I just found your site estatesatnuevo.com. It’s got a lot going for it, but here’s an idea to make it even MORE effective. Talk With Web Visitor – CLICK HERE https://jumboleadmagnet.com for a live demo now. Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. And once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE https://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Eric PS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://jumboleadmagnet.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(49,13,'name_1','Glenda| | Glenda'),(50,13,'email_2','mark@cardnella.com'),(51,13,'text_3','Enjoy 50% off and Free shipping only Today'),(52,13,'textarea_4','Hi there, I hope you\'re well. I am excited to tell you about our Full Body Resistance Band Kit that can help you get an amazing workout without having to go to the gym. This is the best and cheapest athletic gear on the market. You can do a full body workout from the comfort of your home. I believe that this product can help you reach your fitness goals. Save 50% OFF + FREE Worldwide Shipping Shop Now: https://ametathletics.sale To your success, Glenda'),(53,14,'name_1','Eric Jones| | Jones'),(54,14,'email_2','eric.jones.z.mail@gmail.com'),(55,14,'text_3','Cool website!'),(56,14,'textarea_4','Cool website! My name’s Eric, and I just found your site - estatesatnuevo.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool. But if you don’t mind me asking – after someone like me stumbles across estatesatnuevo.com, what usually happens? Is your site generating leads for your business? I’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace. Not good. Here’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.” You can – Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE https://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! That’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation. Think about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Wouldn’t that be cool? CLICK HERE https://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://jumboleadmagnet.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(57,15,'name_1','June| | June'),(58,15,'email_2','jennifer@kenneallyandcompany.com'),(59,15,'text_3','Estates at Nuevo at Vidanta Nuevo Vallarta'),(60,15,'textarea_4','New Multifunction Anti-theft Waterproof Sling Bag The best ever SUPER Sling Bag: Drop-proof/Anti-theft/Scratch-resistant/USB Charging 50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED time Buy now: https://fashiondaily.shop Best, June Estates at Nuevo at Vidanta Nuevo Vallarta'),(61,16,'name_1','Shawnee| | Shawnee'),(62,16,'email_2','chris@lamontinsurance.com'),(63,16,'text_3','Estates at Nuevo at Vidanta Nuevo Vallarta'),(64,16,'textarea_4','Get The Worlds Greatest Magic Sand Free Beach Mat! Watch sand, dirt &amp; dust disappear right before your eyes! It\'s perfect for beach, picnic, camping or hiking. Act Now And Receive A Special Discount For Our Magic Mat! Get Yours Here: https://magicmat.biz All the best, Shawnee'),(65,17,'name_1','Brenton| | Brenton'),(66,17,'email_2','info-abomix@nmv-union.de'),(67,17,'text_3','Regarding estatesatnuevo.com'),(68,17,'textarea_4','Hey there The New Powerful LED Flashlight is The Perfect Flashlight For Any Situation! The 3,000 Lumens &amp; Adjustable Zoom gives you the wide field of view and brightness other flashlights don’t have. 50% OFF + Free Shipping! Get it Now: https://linternaonline.shop To your success, Brenton'),(69,18,'name_1','Eric Jones| | Jones'),(70,18,'email_2','eric.jones.z.mail@gmail.com'),(71,18,'text_3','Why not TALK with your leads?'),(72,18,'textarea_4','My name’s Eric and I just found your site estatesatnuevo.com. It’s got a lot going for it, but here’s an idea to make it even MORE effective. Talk With Web Visitor – CLICK HERE https://jumboleadmagnet.com for a live demo now. Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. And once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE https://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Eric PS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://jumboleadmagnet.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(73,19,'name_1','Joann| | Joann'),(74,19,'email_2','pol@sansprocuradores.com'),(75,19,'text_3','latest'),(76,19,'textarea_4','New Multifunction Waterproof Backpack The best ever SUPER Backpack: Drop-proof/Scratch-resistant/USB Charging/Large capacity storage 50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED time Buy now: https://thebackpack.sale Best Wishes, Joann'),(77,20,'name_1','Eric Jones| | Jones'),(78,20,'email_2','eric.jones.z.mail@gmail.com'),(79,20,'text_3','There they go…'),(80,20,'textarea_4','Hey, my name’s Eric and for just a second, imagine this… - Someone does a search and winds up at estatesatnuevo.com. - They hang out for a minute to check it out. “I’m interested… but… maybe…” - And then they hit the back button and check out the other search results instead. - Bottom line – you got an eyeball, but nothing else to show for it. - There they go. This isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace. But you CAN fix that. Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! Plus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Strong stuff. CLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(81,21,'name_1','Eric Jones| | Jones'),(82,21,'email_2','eric.jones.z.mail@gmail.com'),(83,21,'text_3','Your site – more leads?'),(84,21,'textarea_4','Hey, this is Eric and I ran across estatesatnuevo.com a few minutes ago. Looks great… but now what? By that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy? Honestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Here’s an idea… How about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site… You can – Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. You’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold. It gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation. That way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Pretty sweet – AND effective. CLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(85,22,'name_1','Kevin| | Walker'),(86,22,'email_2','kevinwalker01@yahoo.com'),(87,22,'text_3','Ownership'),(88,22,'textarea_4','My wife and I are considering purchasing a home in PV. Your grand luxxe/Estates property looks impressive. Please let me know what inventory is available. We’re also considering flying down in a few weeks to explore options'),(89,23,'name_1','Mohammed| | Mohammed'),(90,23,'email_2','s.rohling@hs-osnabrueck.de'),(91,23,'text_3','brand new'),(92,23,'textarea_4','Hey I wanted to reach out and let you know about our new dog harness. It\'s really easy to put on and take off - in just 2 seconds - and it\'s personalized for each dog. Plus, we offer a lifetime warranty so you can be sure your pet is always safe and stylish. We\'ve had a lot of success with it so far and I think your dog would love it. Get yours today with 50% OFF: caredogbest.com FREE Shipping - TODAY ONLY! Best Wishes, Mohammed'),(93,24,'name_1','Eric Jones| | Jones'),(94,24,'email_2','ericjonesmyemail@gmail.com'),(95,24,'text_3','Why not TALK with your leads?'),(96,24,'textarea_4','My name’s Eric and I just found your site estatesatnuevo.com. It’s got a lot going for it, but here’s an idea to make it even MORE effective. Talk With Web Visitor – CLICK HERE http://boostleadgeneration.com for a live demo now. Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site. And once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. CLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business. The difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today! Eric PS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(97,25,'name_1','Elsa| | Elsa'),(98,25,'email_2','info@bau-agentur-guntau.de'),(99,25,'text_3','Estates at Nuevo at Vidanta Nuevo Vallarta'),(100,25,'textarea_4','Do you have time to brush your dog\'s teeth every day? Let your dog clean his own teeth with our dog dental care brushing stick. Made of eco-friendly natural rubber, this toothbrush is sturdy. The soft design is safe for your dogs\' gums and helps to clean their teeth and protect them from oral diseases and dental decay. Act Now And Receive A Special Discount! Click here: https://dogcare.center Best, Elsa'),(101,26,'name_1','Rozella| | Rozella'),(102,26,'email_2','info@mainandwall.us.com'),(103,26,'text_3','Concerning estatesatnuevo.com'),(104,26,'textarea_4','Hello, Have you ever wanted to change the color of your swim shorts without having to buy a new pair? With our new swim shorts, you can do just that! Our swim shorts are made with a special material that allows you to change the color of the shorts with just a few drops of water. So, if you\'re ever in the mood for a new color, you can just change it yourself! They are AMAZING! It could be a great addition to your summer line-up. Get yours today with 50% OFF: https://myshorts.shop FREE Shipping - TODAY ONLY! Best Wishes, Rozella'),(105,27,'name_1','Email Influence| | Influence'),(106,27,'email_2','contact@emailinfluence.xyz'),(107,27,'text_3','Missing Out on Email Marketing?'),(108,27,'textarea_4','Are you missing out on email marketing for your site? Running a site is a full time job. With limited time and resources, it be difficult to put energy in marketing your business. But with email marketing, promoting your business becomes a whole lot easier. Receive your free guide here https://emailinfluence.xyz/email/?e8x2_jsvuai.io To remove your site from our list visit https://emailinfluence.xyz/unsubscribe/'),(109,28,'name_1','Terry| | Terry'),(110,28,'email_2','lohstraeter@druckpartner.de'),(111,28,'text_3','Estates at Nuevo at Vidanta Nuevo Vallarta'),(112,28,'textarea_4','Hi, I hope you\'re doing well. I wanted to let you know about our new BANGE backpacks and sling bags that just released. The bags are waterproof and anti-theft, and have a built-in USB cable that can recharge your phone while you\'re on the go. Both bags are made of durable and high-quality materials, and are perfect for everyday use or travel. Order yours now at 50% OFF with FREE Shipping: https://bangeonline.shop Enjoy, Terry'),(113,29,'name_1','Eric Jones| | Jones'),(114,29,'email_2','ericjonesmyemail@gmail.com'),(115,29,'text_3','Cool website!'),(116,29,'textarea_4','Cool website! My name’s Eric, and I just found your site - estatesatnuevo.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool. But if you don’t mind me asking – after someone like me stumbles across estatesatnuevo.com, what usually happens? Is your site generating leads for your business? I’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace. Not good. Here’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.” You can – Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! That’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation. Think about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Wouldn’t that be cool? CLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(117,30,'name_1','Eric Jones| | Jones'),(118,30,'email_2','ericjonesmyemail@gmail.com'),(119,30,'text_3','Who needs eyeballs, you need BUSINESS'),(120,30,'textarea_4','My name’s Eric and I just came across your website - estatesatnuevo.com - in the search results. Here’s what that means to me… Your SEO’s working. You’re getting eyeballs – mine at least. Your content’s pretty good, wouldn’t change a thing. BUT… Eyeballs don’t pay the bills. CUSTOMERS do. And studies show that 7 out of 10 visitors to a site like estatesatnuevo.com will drop by, take a gander, and then head for the hills without doing anything else. It’s like they never were even there. You can fix this. You can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Talk With Web Visitor. Talk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills. CLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. Now it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better! That’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you. This could change everything for you and your business. CLICK HERE http://boostleadgeneration.com to learn more about everything Talk With Web Visitor can do and start turing eyeballs into money. Eric PS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! It even includes International Long Distance Calling. Paying customers are out there waiting. Starting connecting today by CLICKING HERE http://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(121,31,'name_1','Mittie| | Mittie'),(122,31,'email_2','gaspe@paolopesaresi.com'),(123,31,'text_3','Estates at Nuevo at Vidanta Nuevo Vallarta'),(124,31,'textarea_4','Hello there Defrost frozen foods in minutes safely and naturally with our THAW KING™. 50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED Buy now: https://thawking.store Kind Regards, Mittie'),(125,32,'name_1','Eric Jones| | Jones'),(126,32,'email_2','ericjonesmyemail@gmail.com'),(127,32,'text_3','Turn Surf-Surf-Surf into Talk Talk Talk'),(128,32,'textarea_4','Hello, my name’s Eric and I just ran across your website at estatesatnuevo.com... I found it after a quick search, so your SEO’s working out… Content looks pretty good… One thing’s missing though… A QUICK, EASY way to connect with you NOW. Because studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever. I have the solution: Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site. CLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try… it could be huge for your business. Plus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later. The new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(129,33,'name_1','Kurt| | Kurt'),(130,33,'email_2','berufschance@geldpilot24.com'),(131,33,'text_3','Estates at Nuevo at Vidanta Nuevo Vallarta'),(132,33,'textarea_4','Good Morning, If you are one of the sufferers of the common problems nails have, then you are in luck! Our Toenail Clippers is here to help. It has a specially designed clip that can help those with troubles with winding nails, hard nails, two nails, nail cracks, deep nails, and thickened nails. We are confident that our Toenail Clippers will provide you with the results you are looking for. Get yours today with 60% OFF: https://thepodiatrist.shop Kind Regards, Kurt'),(133,34,'name_1','Jeannine| | Jeannine'),(134,34,'email_2','secretary@rhylgolfclub.co.uk'),(135,34,'text_3','Estates at Nuevo at Vidanta Nuevo Vallarta'),(136,34,'textarea_4','Hey Is your dog\'s nails getting too long? If you\'re tired of going to the vet or groomer to get them trimmed, why not try PawSafer™? With PawSafer™, you can trim your dog\'s nails from the comfort of your own home, and it only takes a few minutes! PawSafer™ is the safest and most convenient way to trim your dog\'s nails, and it\'s very affordable. Get it while it\'s still 50% OFF + FREE Shipping Buy here: https://pawsafer.sale Many Thanks, Jeannine'),(137,35,'name_1','Email Influence| | Influence'),(138,35,'email_2','contact@1csnhv.thewayofemail.buzz'),(139,35,'text_3','Missing Out on Email Marketing?'),(140,35,'textarea_4','Are you missing out on email marketing for your site? Running a site is a full time job. With limited time and resources, it be difficult to put energy in marketing your business. But with email marketing, promoting your business becomes a whole lot easier. Receive your free guide here https://thewayofemail.buzz/email/?lwhbd19@1csnhv_io To remove your site from our list visit https://thewayofemail.buzz/unsubscribe/?lwhbd19@1csnhv_io'),(141,36,'name_1','France| | France'),(142,36,'email_2','aleksandrs@kuldigasilt.lv'),(143,36,'text_3','Concerning estatesatnuevo.com'),(144,36,'textarea_4','Good Morning Don\'t you hate carrying a big bulky backpack when you are only going out for the day? Our hiking and trekking shoulder bag is perfect for day hikes and outdoor activities. It\'s comfortable, lightweight, and has plenty of room for all your essentials. We\'re confident that you\'ll love our shoulder bag, and we\'re offering a special discount for our first 20 customers. 50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED time Buy now: https://fashionbag.sale Best Wishes, France'),(145,37,'name_1','Eric Jones| | Jones'),(146,37,'email_2','ericjonesmyemail@gmail.com'),(147,37,'text_3','Instead, congrats'),(148,37,'textarea_4','Good day, My name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations What for? Part of my job is to check out websites and the work you’ve done with estatesatnuevo.com definitely stands out. It’s clear you took building a website seriously and made a real investment of time and resources into making it top quality. There is, however, a catch… more accurately, a question… So when someone like me happens to find your site – maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? More importantly, how do you make a connection with that person? Studies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind. Here’s a way to create INSTANT engagement that you may not have known about… Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know INSTANTLY that they’re interested – so that you can talk to that lead while they’re literally checking out estatesatnuevo.com. CLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. It could be a game-changer for your business – and it gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately (and there’s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.) Plus then, even if you don’t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is simple, easy, and effective. CLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(149,38,'name_1','Quinton| | Quinton'),(150,38,'email_2','office@caloria.biz'),(151,38,'text_3','Estates at Nuevo at Vidanta Nuevo Vallarta'),(152,38,'textarea_4','Hi, Do you ever worry about your belongings when you travel? I know I do. Our Sling Bags are drop-proof, anti-theft, scratch-resistant, and come with a USB charging port. They\'re perfect for keeping your belongings safe when you\'re on the go. I think these would make an excellent addition to your travel gear. I\'m confident you\'ll love them as much as I do. 50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED time Buy now: https://fashiondaily.shop Have a great time, Quinton'),(153,39,'name_1','Leanne| | Leanne'),(154,39,'email_2','info@logopaedie-goldbach.de'),(155,39,'text_3','Regarding estatesatnuevo.com'),(156,39,'textarea_4','New Multifunction Waterproof Backpack The best ever SUPER Backpack: Drop-proof/Scratch-resistant/USB Charging/Large capacity storage 50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED time Buy now: https://thebackpack.sale Many Thanks, Leanne'),(157,40,'name_1','Valentin Blaze| | Blaze'),(158,40,'email_2','hacker@vespella.com'),(159,40,'text_3','Your Site Has Been Hacked'),(160,40,'textarea_4','Your Site Has Been Hacked PLEASE FORWARD THIS EMAIL TO SOMEONE IN YOUR COMPANY WHO IS ALLOWED TO MAKE IMPORTANT DECISIONS! We have hacked your website https://estatesatnuevo.com and extracted your databases. How did this happen? Our team has found a vulnerability within your site that we were able to exploit. After finding the vulnerability we were able to get your database credentials and extract your entire database and move the information to an offshore server. What does this mean? We will systematically go through a series of steps of totally damaging your reputation. First your database will be leaked or sold to the highest bidder which they will use with whatever their intentions are. Next if there are e-mails found they will be e-mailed that their information has been sold or leaked and your https://estatesatnuevo.com was at fault thusly damaging your reputation and having angry customers/associates with whatever angry customers/associates do. Lastly any links that you have indexed in the search engines will be de-indexed based off of blackhat techniques that we used in the past to de-index our targets. How do I stop this? We are willing to refrain from destroying your site’s reputation for a small fee. The current fee is $2500 in bitcoins (BTC). Please send the bitcoin to the following Bitcoin address (Copy and paste as it is case sensitive): bc1qmghwkrrxlh62k4r530lgfxucum65087ya00wvz Once you have paid we will automatically get informed that it was your payment. Please note that you have to make payment within 7 days after receiving this e-mail or the database leak, e-mails dispatched, and de-index of your site WILL start! How do I get Bitcoins? You can easily buy bitcoins via several websites or even offline from a Bitcoin-ATM. What if I don’t pay? If you decide not to pay, we will start the attack at the indicated date and uphold it until you do, there’s no counter measure to this, you will only end up wasting more money trying to find a solution. We will completely destroy your reputation amongst google and your customers. This is not a hoax, do not reply to this email, don’t try to reason or negotiate, we will not read any replies. Once you have paid we will stop what we were doing and you will never hear from us again! Please note that Bitcoin is anonymous and no one will find out that you have complied.'),(161,41,'name_1','Delbert| | Delbert'),(162,41,'email_2','supportotecnico@cosicilia.it'),(163,41,'text_3','Concerning estatesatnuevo.com'),(164,41,'textarea_4','Hi there! I understand that you are looking for ways to improve your posture and contribute to a healthy lifestyle. I think our product, Medico Postura™ Body Posture Corrector, can be of great help. Medico Postura™ helps improve your posture INSTANTLY. It is an easy-to-use device that you can wear at home, work, or even when you are sleeping. It is made of lightweight and breathable fabric, making it comfortable to wear all day long. Get it today while it\'s still 60% OFF: https://medicopostura.com FREE Shipping - TODAY ONLY! All the best, Delbert'),(165,42,'name_1','Marjorie| | Marjorie'),(166,42,'email_2','support@shopperla.com'),(167,42,'text_3','Estates at Nuevo at Vidanta Nuevo Vallarta'),(168,42,'textarea_4','Hey there I wanted to reach out and let you know about our new dog harness. It\'s really easy to put on and take off - in just 2 seconds - and it\'s personalized for each dog. Plus, we offer a lifetime warranty so you can be sure your pet is always safe and stylish. We\'ve had a lot of success with it so far and I think your dog would love it. Get yours today with 50% OFF: https://caredogbest.com FREE Shipping - TODAY ONLY! Enjoy, Marjorie'),(169,43,'name_1','Gregory Ashton| | Ashton'),(170,43,'email_2','no-reply@cairo7.net'),(171,43,'text_3','Your Website Has Been Hacked'),(172,43,'textarea_4','PLEASE F0RWARD THiS EMAiL To SoMEoNE iN Y0UR CoMPANY WH0 iS ALLoWED To MAKE iMP0RTANT DECiSi0NS! We have hacked y0ur website https://estatesatnuevo.com and extracted y0ur databases. H0w did this happen? 0ur team has f0und a vulnerability within y0ur site that we were able to exploit. After finding the vulnerability we were able t0 get y0ur database credentials and extract your entire database and m0ve the inf0rmati0n to an 0ffshore server. What does this mean? We will systematically go thr0ugh a series 0f steps 0f totally damaging your reputati0n. First your database will be leaked 0r s0ld t0 the highest bidder which they will use with whatever their intenti0ns are. Next if there are e-mails found they will be e-mailed that their inf0rmation has been s0ld or leaked and your site https://estatesatnuevo.com was at fault thusly damaging y0ur reputati0n and having angry cust0mers/associates with whatever angry cust0mers/associates do. Lastly any links that y0u have indexed in the search engines will be de-indexed based off of blackhat techniques that we used in the past t0 de-index 0ur targets. H0w do i stop this? We are willing to refrain from destr0ying your site’s reputation for a small fee. The current fee is $3000 in bitc0ins (BTC). Please send the bitcoin to the following Bitcoin address (Make sure t0 c0py and paste): 34TxCdQ6U1ZaeN47dCpedNN7R85V4jo55M 0nce y0u have paid we will automatically get informed that it was your payment. Please n0te that you have to make payment within 5 days after receiving this e-mail 0r the database leak, e-mails dispatched, and de-index 0f y0ur site WiLL start! H0w d0 i get Bitc0ins? You can easily buy bitcoins via several websites or even 0ffline fr0m a Bitc0in-ATM. What if i d0n’t pay? if you decide not t0 pay, we will start the attack at the indicated date and uphold it until y0u d0, there’s n0 counter measure t0 this, you will only end up wasting m0re money trying to find a s0lution. We will completely destroy your reputation amongst g0ogle and y0ur customers. This is n0t a hoax, d0 not reply t0 this email, d0n’t try to reas0n 0r neg0tiate, we will not read any replies. once you have paid we will stop what we were d0ing and y0u will never hear fr0m us again! Please note that Bitc0in is an0nymous and n0 one will find 0ut that y0u have complied.'),(173,44,'name_1','Gertie| | Gertie'),(174,44,'email_2','bookings@pomofreakshow.com'),(175,44,'text_3','Estates at Nuevo at Vidanta Nuevo Vallarta'),(176,44,'textarea_4','Hi, If you are one of the sufferers of the common problems nails have, then you are in luck! Our Toenail Clippers is here to help. It has a specially designed clip that can help those with troubles with winding nails, hard nails, two nails, nail cracks, deep nails, and thickened nails. We are confident that our Toenail Clippers will provide you with the results you are looking for. Get yours today with 60% OFF: https://thepodiatrist.shop All the best, Gertie'),(177,45,'name_1','Eric Jones| | Jones'),(178,45,'email_2','ericjonesmyemail@gmail.com'),(179,45,'text_3','There they go…'),(180,45,'textarea_4','Hey, my name’s Eric and for just a second, imagine this… - Someone does a search and winds up at estatesatnuevo.com. - They hang out for a minute to check it out. “I’m interested… but… maybe…” - And then they hit the back button and check out the other search results instead. - Bottom line – you got an eyeball, but nothing else to show for it. - There they go. This isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace. But you CAN fix that. Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site. CLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! Plus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Strong stuff. CLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(181,46,'name_1','Bradly| | Bradly'),(182,46,'email_2','info@musgoycristal.com'),(183,46,'text_3','Estates at Nuevo at Vidanta Nuevo Vallarta'),(184,46,'textarea_4','World\'s Best Neck Massager Get it Now 50% OFF + Free Shipping! Wellness Enthusiasts! There has never been a better time to take care of your neck pain! Our clinical-grade TENS technology will ensure you have neck relief in as little as 20 minutes. Get Yours: https://hineck.shop Best regards, Bradly Estates at Nuevo at Vidanta Nuevo Vallarta'),(185,47,'name_1','Eric Jones| | Jones'),(186,47,'email_2','ericjonesmyemail@gmail.com'),(187,47,'text_3','Strike when the iron’s hot'),(188,47,'textarea_4','Hey there, I just found your site, quick question… My name’s Eric, I found estatesatnuevo.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well. So here’s my question – what happens AFTER someone lands on your site? Anything? Research tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever. That means that all the work and effort you put into getting them to show up, goes down the tubes. Why would you want all that good work – and the great site you’ve built – go to waste? Because the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry. But here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket? You can – thanks to revolutionary new software that can literally make that first call happen NOW. Talk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site. You know, strike when the iron’s hot! CLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. When targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better! That’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. Imagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility. Just this alone could be a game changer to make your website even more effective. Strike when the iron’s hot! CLICK HERE http://boostleadgeneration.com to learn more about everything Talk With Web Visitor can do for your business – you’ll be amazed. Thanks and keep up the great work! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! It even includes International Long Distance Calling. Stop wasting money chasing eyeballs that don’t turn into paying customers. CLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(189,48,'name_1','Tayla| | Tayla'),(190,48,'email_2','info@mpbfunding.com'),(191,48,'text_3','Estates at Nuevo at Vidanta Nuevo Vallarta'),(192,48,'textarea_4','World\'s Best Neck Massager Get it Now 50% OFF + Free Shipping! Wellness Enthusiasts! There has never been a better time to take care of your neck pain! Our clinical-grade TENS technology will ensure you have neck relief in as little as 20 minutes. Get Yours: https://hineck.shop To your success, Tayla Estates at Nuevo at Vidanta Nuevo Vallarta'),(193,49,'name_1','Inge| | Inge'),(194,49,'email_2','info@fuji-pharma.com'),(195,49,'text_3','Lead For estatesatnuevo.com'),(196,49,'textarea_4','Hey there Defrost frozen foods in minutes safely and naturally with our THAW KING™. 50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED Buy now: https://thawking.store Have a great time, Inge'),(197,50,'name_1','Genevieve Lozano| | Lozano'),(198,50,'email_2','lozano.genevieve@outlook.com'),(199,50,'text_3','Hi!'),(200,50,'textarea_4','Hello!'),(201,51,'name_1','Eric Jones| | Jones'),(202,51,'email_2','ericjonesmyemail@gmail.com'),(203,51,'text_3','how to turn eyeballs into phone calls'),(204,51,'textarea_4','Hi, Eric here with a quick thought about your website estatesatnuevo.com... I’m on the internet a lot and I look at a lot of business websites. Like yours, many of them have great content. But all too often, they come up short when it comes to engaging and connecting with anyone who visits. I get it – it’s hard. Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace. You got the eyeball, but nothing else. Here’s a solution for you… Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site. CLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. It could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later. Plus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more eyeballs into leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(205,52,'name_1','Lisette| | Lisette'),(206,52,'email_2','karen@drkarenperkins.com'),(207,52,'text_3','Lead For estatesatnuevo.com'),(208,52,'textarea_4','Hey Defrost frozen foods in minutes safely and naturally with our THAW KING™. 50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED Buy now: https://thawking.store Cheers, Lisette'),(209,53,'name_1','Kristi| | Kristi'),(210,53,'email_2','g.sauer@radiokombi-cpmedia.de'),(211,53,'text_3','Estates at Nuevo at Vidanta Nuevo Vallarta'),(212,53,'textarea_4','Hello, I hope you\'re doing well. I wanted to let you know about our new BANGE backpacks and sling bags that just released. Bange is perfect for students, professionals and travelers. The backpacks and sling bags feature a built-in USB charging port, making it easy to charge your devices on the go. Also they are waterproof and anti-theft design, making it ideal for carrying your valuables. Both bags are made of durable and high-quality materials, and are perfect for everyday use or travel. Order yours now at 50% OFF with FREE Shipping: https://bangeshop.com The Best, Kristi'),(213,54,'name_1','Eric Jones| | Jones'),(214,54,'email_2','ericjonesmyemail@gmail.com'),(215,54,'text_3','Turn Surf-Surf-Surf into Talk Talk Talk'),(216,54,'textarea_4','Hello, my name’s Eric and I just ran across your website at estatesatnuevo.com... I found it after a quick search, so your SEO’s working out… Content looks pretty good… One thing’s missing though… A QUICK, EASY way to connect with you NOW. Because studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever. I have the solution: Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site. CLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try… it could be huge for your business. Plus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later. The new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship. Everything I’ve just described is extremely simple to implement, cost-effective, and profitable. CLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(217,55,'name_1','Eric Jones| | Jones'),(218,55,'email_2','ericjonesmyemail@gmail.com'),(219,55,'text_3','Cool website!'),(220,55,'textarea_4','Cool website! My name’s Eric, and I just found your site - estatesatnuevo.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool. But if you don’t mind me asking – after someone like me stumbles across estatesatnuevo.com, what usually happens? Is your site generating leads for your business? I’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace. Not good. Here’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.” You can – Talk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site. CLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works. Time is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better! That’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation. Think about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship. Wouldn’t that be cool? CLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business. You could be converting up to 100X more leads today! Eric PS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. You have customers waiting to talk with you right now… don’t keep them waiting. CLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now. If you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(221,56,'name_1','Sanford| | Sanford'),(222,56,'email_2','autorelax@seznam.cz'),(223,56,'text_3','Estates at Nuevo at Vidanta Nuevo Vallarta'),(224,56,'textarea_4','Hi, I hope you\'re doing well. I wanted to let you know about our new BANGE backpacks and sling bags that just released. The bags are waterproof and anti-theft, and have a built-in USB cable that can recharge your phone while you\'re on the go. Both bags are made of durable and high-quality materials, and are perfect for everyday use or travel. Order yours now at 50% OFF with FREE Shipping: https://bangeshop.com The Best, Sanford'),(225,57,'name_1','Samual| | Samual'),(226,57,'email_2','samual.cardillo@outlook.com'),(227,57,'text_3','Estates at Nuevo at Vidanta Nuevo Vallarta'),(228,57,'textarea_4','Hi there Do you have time to brush your dog\'s teeth every day? Let your dog clean his own teeth with our dog dental care brushing stick. Made of eco-friendly natural rubber, this toothbrush is sturdy. The soft design is safe for your dogs\' gums and helps to clean their teeth and protect them from oral diseases and dental decay. Act Now And Receive A Special Discount! Click here: https://dogcare.center Kind Regards, Samual'),(229,58,'name_1','Eric Jones| | Jones'),(230,58,'email_2','ericjonesmyemail@gmail.com'),(231,58,'text_3','Strike when the iron’s hot'),(232,58,'textarea_4','Hey there, I just found your site, quick question…\r\n\r\nMy name’s Eric, I found estatesatnuevo.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site.\r\n  \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron’s hot!\r\n\r\nCLICK HERE https://boostleadgeneration.com to learn more about everything Talk With Web Visitor can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(233,59,'name_1','Eric Jones| | Jones'),(234,59,'email_2','ericjonesmyemail@gmail.com'),(235,59,'text_3','Try this, get more leads'),(236,59,'textarea_4','Hi, my name is Eric and I’m betting you’d like your website estatesatnuevo.com to generate more leads.\r\n\r\nHere’s how:\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at estatesatnuevo.com.\r\n\r\nTalk With Web Visitor – CLICK HERE http://boostleadgeneration.com for a live demo now.\r\n\r\nAnd now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way.\r\n\r\nIf they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Talk With Web Visitor and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them!\r\nTalk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(237,60,'name_1','Eric Jones| | Jones'),(238,60,'email_2','ericjonesmyemail@gmail.com'),(239,60,'text_3','instead, congrats'),(240,60,'textarea_4','Good day, \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for?  \r\n\r\nPart of my job is to check out websites and the work you’ve done with estatesatnuevo.com definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo when someone like me happens to find your site – maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know INSTANTLY that they’re interested – so that you can talk to that lead while they’re literally checking out estatesatnuevo.com.\r\n\r\nCLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business – and it gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately (and there’s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don’t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(241,61,'name_1','Eric Jones| | Jones'),(242,61,'email_2','ericjonesmyemail@gmail.com'),(243,61,'text_3','Your site – more leads?'),(244,61,'textarea_4','Hey, this is Eric and I ran across estatesatnuevo.com a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next?  Do you get a lot of leads from your site, or at least enough to make you happy?\r\n\r\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment.\r\n\r\nHere’s an idea…\r\n \r\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site…\r\n \r\nYou can –\r\n  \r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\r\n  \r\nThat way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(245,62,'name_1','Sadye| | Sadye'),(246,62,'email_2','info@newporteyephysicians.com'),(247,62,'text_3','Estates at Nuevo at Vidanta Nuevo Vallarta'),(248,62,'textarea_4','New Multifunction Waterproof Backpack\r\n\r\nThe best ever SUPER Backpack: Drop-proof/Scratch-resistant/USB Charging/Large capacity storage\r\n\r\n50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED time\r\n\r\nBuy now: https://thebackpack.co\r\n\r\nCheers, \r\n\r\nSadye'),(249,63,'name_1','Frankie| | Frankie'),(250,63,'email_2','joaquin@maspowergroup.com'),(251,63,'text_3','Estates at Nuevo at Vidanta Nuevo Vallarta'),(252,63,'textarea_4','World\'s Best Neck Massager Get it Now 50% OFF + Free Shipping!\r\n\r\nWellness Enthusiasts! There has never been a better time to take care of your neck pain! \r\nOur clinical-grade TENS technology will ensure you have neck relief in as little as 20 minutes.\r\n\r\nGet Yours: https://hineck.shop\r\n\r\nMany Thanks,\r\n\r\nFrankie\r\nEstates at Nuevo at Vidanta Nuevo Vallarta'),(253,64,'name_1','Eric Jones| | Jones'),(254,64,'email_2','ericjonesmyemail@gmail.com'),(255,64,'text_3','how to turn eyeballs into phone calls'),(256,64,'textarea_4','Hi, Eric here with a quick thought about your website estatesatnuevo.com...\r\n\r\nI’m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI get it – it’s hard.  Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace.  You got the eyeball, but nothing else.\r\n\r\nHere’s a solution for you…\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(257,65,'name_1','Eric Jones| | Jones'),(258,65,'email_2','ericjonesmyemail@gmail.com'),(259,65,'text_3','Who needs eyeballs, you need BUSINESS'),(260,65,'textarea_4','My name’s Eric and I just came across your website - estatesatnuevo.com - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like estatesatnuevo.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Talk With Web Visitor.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills.\r\n  \r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nNow it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://boostleadgeneration.com to learn more about everything Talk With Web Visitor can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(261,66,'name_1','Eric Jones| | Jones'),(262,66,'email_2','ericjonesmyemail@gmail.com'),(263,66,'text_3','Why not TALK with your leads?'),(264,66,'textarea_4','My name’s Eric and I just found your site estatesatnuevo.com.\r\n\r\nIt’s got a lot going for it, but here’s an idea to make it even MORE effective.\r\n\r\nTalk With Web Visitor – CLICK HERE https://boostleadgeneration.com for a live demo now.\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nAnd once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. \r\nTalk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(265,67,'name_1','Eric Jones| | Jones'),(266,67,'email_2','ericjonesmyemail@gmail.com'),(267,67,'text_3','Cool website!'),(268,67,'textarea_4','Cool website!\r\n\r\nMy name’s Eric, and I just found your site - estatesatnuevo.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool.\r\n \r\nBut if you don’t mind me asking – after someone like me stumbles across estatesatnuevo.com, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace.\r\n\r\nNot good.\r\n\r\nHere’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.”\r\n\r\nYou can –\r\n  \r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nThat’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation.\r\n  \r\nThink about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nWouldn’t that be cool?\r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(269,68,'name_1','Eric Jones| | Jones'),(270,68,'email_2','ericjonesmyemail@gmail.com'),(271,68,'text_3','Instead, congrats'),(272,68,'textarea_4','Good day, \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for?  \r\n\r\nPart of my job is to check out websites and the work you’ve done with estatesatnuevo.com definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo when someone like me happens to find your site – maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know INSTANTLY that they’re interested – so that you can talk to that lead while they’re literally checking out estatesatnuevo.com.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business – and it gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately (and there’s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don’t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(273,69,'name_1','Eric Jones| | Jones'),(274,69,'email_2','ericjonesmyemail@gmail.com'),(275,69,'text_3','Your site – more leads?'),(276,69,'textarea_4','Hey, this is Eric and I ran across estatesatnuevo.com a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next?  Do you get a lot of leads from your site, or at least enough to make you happy?\r\n\r\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment.\r\n\r\nHere’s an idea…\r\n \r\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site…\r\n \r\nYou can –\r\n  \r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\r\n  \r\nThat way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(277,70,'name_1','Eric Jones| | Jones'),(278,70,'email_2','ericjonesmyemail@gmail.com'),(279,70,'text_3','There they go…'),(280,70,'textarea_4','Hey, my name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at estatesatnuevo.com.\r\n\r\n- They hang out for a minute to check it out.  “I’m interested… but… maybe…”\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(281,71,'name_1','Amber| | Amber'),(282,71,'email_2','info@escuadraenhierro.com'),(283,71,'text_3','Estates at Nuevo at Vidanta Nuevo Vallarta'),(284,71,'textarea_4','World\'s Best Neck Massager Get it Now 50% OFF + Free Shipping!\r\n\r\nWellness Enthusiasts! There has never been a better time to take care of your neck pain! \r\nOur clinical-grade TENS technology will ensure you have neck relief in as little as 20 minutes.\r\n\r\nGet Yours: https://hineck.shop\r\n\r\nMany Thanks,\r\n\r\nAmber\r\nEstates at Nuevo at Vidanta Nuevo Vallarta'),(285,72,'name_1','Eric Jones| | Jones'),(286,72,'email_2','ericjonesmyemail@gmail.com'),(287,72,'text_3','Turn Surf-Surf-Surf into Talk Talk Talk'),(288,72,'textarea_4','Hello, my name’s Eric and I just ran across your website at estatesatnuevo.com...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever.\r\n\r\nI have the solution:\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try… it could be huge for your business.\r\n\r\nPlus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(289,73,'name_1','Bryce| | Bryce'),(290,73,'email_2','webmaster@diamondathleticslv.com'),(291,73,'text_3','Bryce Maloney'),(292,73,'textarea_4','Hello there \r\n\r\nI wanted to reach out and let you know about our new dog harness. It\'s really easy to put on and take off - in just 2 seconds - and it\'s personalized for each dog. \r\nPlus, we offer a lifetime warranty so you can be sure your pet is always safe and stylish.\r\n\r\nWe\'ve had a lot of success with it so far and I think your dog would love it. \r\n\r\nGet yours today with 50% OFF:   https://caredogbest.com\r\n\r\nFREE Shipping - TODAY ONLY! \r\n\r\nBest Wishes, \r\n\r\nBryce'),(293,74,'name_1','Eric Jones| | Jones'),(294,74,'email_2','eric.jones.z.mail@gmail.com'),(295,74,'text_3','Why not TALK with your leads?'),(296,74,'textarea_4','My name’s Eric and I just found your site estatesatnuevo.com.\r\n\r\nIt’s got a lot going for it, but here’s an idea to make it even MORE effective.\r\n\r\nTalk With Web Visitor – CLICK HERE http://boostleadgeneration.com for a live demo now.\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nAnd once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. \r\nTalk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(297,75,'name_1','Joseph Joseph| | Smith'),(298,75,'email_2','free@freeaiwriting.com'),(299,75,'text_3','Are you still in business?'),(300,75,'textarea_4','Dear, \r\n\r\nI came across estatesatnuevo.com and wanted to share this great free AI tool. \r\nWith this tool you write content 10 times faster and with much higher conversion rates. \r\nYou can use the tool for free via freeaiwriting.com \r\n\r\nThe AI can write blogs, advertising copy, youtube videos and even entire books. \r\nWe would love to hear your feedback. \r\n\r\n\r\nKind regards, \r\nBram \r\nFreeaiwriting.com'),(301,76,'name_1','Eric Jones| | Jones'),(302,76,'email_2','ericjonesmyemail@gmail.com'),(303,76,'text_3','Turn Surf-Surf-Surf into Talk Talk Talk'),(304,76,'textarea_4','Hello, my name’s Eric and I just ran across your website at estatesatnuevo.com...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever.\r\n\r\nI have the solution:\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try… it could be huge for your business.\r\n\r\nPlus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(305,77,'name_1','Dianna| | Dianna'),(306,77,'email_2','jesper@metamorf.se'),(307,77,'text_3','Dianna Kaufman'),(308,77,'textarea_4','Hey there \r\n\r\nI wanted to reach out and let you know about our new dog harness. It\'s really easy to put on and take off - in just 2 seconds - and it\'s personalized for each dog. \r\nPlus, we offer a lifetime warranty so you can be sure your pet is always safe and stylish.\r\n\r\nWe\'ve had a lot of success with it so far and I think your dog would love it. \r\n\r\nGet yours today with 50% OFF:   https://caredogbest.com\r\n\r\nFREE Shipping - TODAY ONLY! \r\n\r\nHave a great time, \r\n\r\nDianna'),(309,78,'name_1','Virgie| | Virgie'),(310,78,'email_2','virgie.mclellan@t-online.com'),(311,78,'text_3','Virgie McLellan'),(312,78,'textarea_4','Hi,\r\n\r\nDo you ever worry about your belongings when you travel? I know I do.  Our Sling Bags are drop-proof, anti-theft, scratch-resistant, and come with a USB charging port. They\'re perfect for keeping your belongings safe when you\'re on the go.\r\n\r\nI think these would make an excellent addition to your travel gear. I\'m confident you\'ll love them as much as I do.\r\n\r\n50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED time\r\n\r\nBuy now: https://fashiondaily.shop\r\n\r\nKind Regards, \r\n\r\nVirgie'),(313,79,'name_1','Eric Jones| | Jones'),(314,79,'email_2','ericjonesmyemail@gmail.com'),(315,79,'text_3','Try this, get more leads'),(316,79,'textarea_4','Hi, my name is Eric and I’m betting you’d like your website estatesatnuevo.com to generate more leads.\r\n\r\nHere’s how:\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at estatesatnuevo.com.\r\n\r\nTalk With Web Visitor – CLICK HERE http://jumboleadmagnet.com for a live demo now.\r\n\r\nAnd now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way.\r\n\r\nIf they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Talk With Web Visitor and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them!\r\nTalk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(317,80,'name_1','Eric Jones| | Jones'),(318,80,'email_2','ericjonesmyemail@gmail.com'),(319,80,'text_3','Why not TALK with your leads?'),(320,80,'textarea_4','My name’s Eric and I just found your site estatesatnuevo.com.\r\n\r\nIt’s got a lot going for it, but here’s an idea to make it even MORE effective.\r\n\r\nTalk With Web Visitor – CLICK HERE http://jumboleadmagnet.com for a live demo now.\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nAnd once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. \r\nTalk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(321,81,'name_1','Eric Jones| | Jones'),(322,81,'email_2','ericjonesmyemail@gmail.com'),(323,81,'text_3','Cool website!'),(324,81,'textarea_4','Cool website!\r\n\r\nMy name’s Eric, and I just found your site - estatesatnuevo.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool.\r\n \r\nBut if you don’t mind me asking – after someone like me stumbles across estatesatnuevo.com, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace.\r\n\r\nNot good.\r\n\r\nHere’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.”\r\n\r\nYou can –\r\n  \r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nThat’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation.\r\n  \r\nThink about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nWouldn’t that be cool?\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(325,82,'name_1','QGW200OU7HOJINHWXF www.yahoo.com Bardolph| | Bardolph'),(326,82,'email_2','mikhail-kolesnikov-91@bk.ru'),(327,82,'text_3','Hello!'),(328,82,'textarea_4','Hi! Please tell me the number of your office, I will come to you tomorrow.   QGW200OU7HOJINHWXF   www.yahoo.com'),(329,83,'name_1','Eula Considen| | Considen'),(330,83,'email_2','considen.eula32@outlook.com'),(331,83,'text_3',''),(332,83,'textarea_4','Good job on the new site! Now go ahead and submit it to our free directory here https://bit.ly/submit_site_l1aa2sZgZ1G6'),(333,84,'name_1','Eric Jones| | Jones'),(334,84,'email_2','ericjonesmyemail@gmail.com'),(335,84,'text_3','Try this, get more leads'),(336,84,'textarea_4','Hi, my name is Eric and I’m betting you’d like your website estatesatnuevo.com to generate more leads.\r\n\r\nHere’s how:\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at estatesatnuevo.com.\r\n\r\nTalk With Web Visitor – CLICK HERE http://boostleadgeneration.com for a live demo now.\r\n\r\nAnd now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way.\r\n\r\nIf they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Talk With Web Visitor and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them!\r\nTalk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(337,85,'name_1','Eric Jones| | Jones'),(338,85,'email_2','ericjonesmyemail@gmail.com'),(339,85,'text_3','Turn Surf-Surf-Surf into Talk Talk Talk'),(340,85,'textarea_4','Hello, my name’s Eric and I just ran across your website at estatesatnuevo.com...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever.\r\n\r\nI have the solution:\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try… it could be huge for your business.\r\n\r\nPlus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(341,86,'name_1','Duane| | Duane'),(342,86,'email_2','info@estatesatnuevo.com'),(343,86,'text_3','Duane Devaney'),(344,86,'textarea_4','Hi,\r\n\r\nDo you ever worry about your belongings when you travel? I know I do.  Our Sling Bags are drop-proof, anti-theft, scratch-resistant, and come with a USB charging port. They\'re perfect for keeping your belongings safe when you\'re on the go.\r\n\r\nI think these would make an excellent addition to your travel gear. I\'m confident you\'ll love them as much as I do.\r\n\r\n50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED time\r\n\r\nBuy now: https://fashiondaily.shop\r\n\r\nAll the best, \r\nDuane'),(345,87,'name_1','Eric Jones| | Jones'),(346,87,'email_2','ericjonesmyemail@gmail.com'),(347,87,'text_3','Try this, get more leads'),(348,87,'textarea_4','Hi, my name is Eric and I’m betting you’d like your website estatesatnuevo.com to generate more leads.\r\n\r\nHere’s how:\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at estatesatnuevo.com.\r\n\r\nTalk With Web Visitor – CLICK HERE https://boostleadgeneration.com for a live demo now.\r\n\r\nAnd now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way.\r\n\r\nIf they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Talk With Web Visitor and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them!\r\nTalk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(349,88,'name_1','Eunice| | Eunice'),(350,88,'email_2','eunice@estatesatnuevo.com'),(351,88,'text_3','Concerning estatesatnuevo.com'),(352,88,'textarea_4','Hi \r\n \r\nIs your dog\'s nails getting too long? If you\'re tired of going to the vet or groomer to get them trimmed, why not try PawSafer™? \r\nWith PawSafer™, you can trim your dog\'s nails from the comfort of your own home, and it only takes a few minutes!\r\n\r\nPawSafer™ is the safest and most convenient way to trim your dog\'s nails, and it\'s very affordable. \r\n\r\nGet it while it\'s still 50% OFF + FREE Shipping\r\n\r\nBuy here: https://pawsafer.sale\r\n \r\nEnjoy, \r\n \r\nEunice'),(353,89,'name_1','Lisa Hytten| | Hytten'),(354,89,'email_2','jo616858@gmail.com'),(355,89,'text_3','Found Some Issues in Your Website'),(356,89,'textarea_4','Hi,\r\n\r\nI came across your website and noticed that your website is not ranking as well as it could be for certain keywords that I assume you\'re targeting particularly in your local area.\r\n\r\nWith your permission, I would like to send you an audit report showing you where you\'re currently ranking amongst your competitors.\r\n\r\nWould you be interested; I can send you a report &amp; price list?\r\n\r\nHave a great day!\r\n\r\nThanks &amp; Regards,\r\nLisa\r\n\r\n\r\n\r\n\r\n\r\n\r\nNote: - If you are not interested then you can reply with a simple \"NO\".'),(357,90,'name_1','Eric Jones| | Jones'),(358,90,'email_2','ericjonesmyemail@gmail.com'),(359,90,'text_3','Turn Surf-Surf-Surf into Talk Talk Talk'),(360,90,'textarea_4','Hello, my name’s Eric and I just ran across your website at estatesatnuevo.com...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever.\r\n\r\nI have the solution:\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try… it could be huge for your business.\r\n\r\nPlus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(361,91,'name_1','Eric Jones| | Jones'),(362,91,'email_2','ericjonesmyemail@gmail.com'),(363,91,'text_3','how to turn eyeballs into phone calls'),(364,91,'textarea_4','Hi, Eric here with a quick thought about your website estatesatnuevo.com...\r\n\r\nI’m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI get it – it’s hard.  Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace.  You got the eyeball, but nothing else.\r\n\r\nHere’s a solution for you…\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(365,92,'name_1','Eric Jones| | Jones'),(366,92,'email_2','ericjonesmyemail@gmail.com'),(367,92,'text_3','Strike when the iron’s hot'),(368,92,'textarea_4','Hey there, I just found your site, quick question…\r\n\r\nMy name’s Eric, I found estatesatnuevo.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site.\r\n  \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron’s hot!\r\n\r\nCLICK HERE https://boostleadgeneration.com to learn more about everything Talk With Web Visitor can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(369,93,'name_1','Eric Jones| | Jones'),(370,93,'email_2','ericjonesmyemail@gmail.com'),(371,93,'text_3','Strike when the iron’s hot'),(372,93,'textarea_4','Hey there, I just found your site, quick question…\r\n\r\nMy name’s Eric, I found estatesatnuevo.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site.\r\n  \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron’s hot!\r\n\r\nCLICK HERE http://jumboleadmagnet.com to learn more about everything Talk With Web Visitor can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(373,94,'name_1','Eric Jones| | Jones'),(374,94,'email_2','ericjonesmyemail@gmail.com'),(375,94,'text_3','There they go…'),(376,94,'textarea_4','Hey, my name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at estatesatnuevo.com.\r\n\r\n- They hang out for a minute to check it out.  “I’m interested… but… maybe…”\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(377,95,'name_1','Lela Schaefer| | Schaefer'),(378,95,'email_2','lela.schaefer@yahoo.com'),(379,95,'text_3','Volunteering'),(380,95,'textarea_4','Hello,\r\n\r\nMy name is Jeff from SimplyBuiltDigital.com, and I am fixing website errors for free. For real.\r\n\r\nI have built hundreds of websites and came across yours and think it is a great candidate to be rejuvenated!\r\n\r\nI am only volunteering for three more websites, so lock in yours below.\r\n\r\nhttps://fwf.wikiiapp.com/fwf-7229\r\n\r\nTalk to you soon!\r\n\r\nJeff\r\nwww.simplybuiltdigital.com'),(381,96,'name_1','Eric Jones| | Jones'),(382,96,'email_2','ericjonesmyemail@gmail.com'),(383,96,'text_3','Who needs eyeballs, you need BUSINESS'),(384,96,'textarea_4','My name’s Eric and I just came across your website - estatesatnuevo.com - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like estatesatnuevo.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Talk With Web Visitor.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills.\r\n  \r\nCLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nNow it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE http://boostleadgeneration.com to learn more about everything Talk With Web Visitor can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(385,97,'name_1','Eric Jones| | Jones'),(386,97,'email_2','ericjonesmyemail@gmail.com'),(387,97,'text_3','There they go…'),(388,97,'textarea_4','Hey, my name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at estatesatnuevo.com.\r\n\r\n- They hang out for a minute to check it out.  “I’m interested… but… maybe…”\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(389,98,'name_1','Eric Jones| | Jones'),(390,98,'email_2','ericjonesmyemail@gmail.com'),(391,98,'text_3','Your site – more leads?'),(392,98,'textarea_4','Hey, this is Eric and I ran across estatesatnuevo.com a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next?  Do you get a lot of leads from your site, or at least enough to make you happy?\r\n\r\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment.\r\n\r\nHere’s an idea…\r\n \r\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site…\r\n \r\nYou can –\r\n  \r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\r\n  \r\nThat way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(393,99,'name_1','Inez| | Inez'),(394,99,'email_2','inez@estatesatnuevo.com'),(395,99,'text_3','Lead For estatesatnuevo.com'),(396,99,'textarea_4','Is your dog\'s nails getting too long? If you\'re tired of going to the vet or groomer to get them trimmed, why not try PawSafer™? \r\nWith PawSafer™, you can trim your dog\'s nails from the comfort of your own home, and it only takes a few minutes!\r\n\r\nPawSafer™ is the safest and most convenient way to trim your dog\'s nails, and it\'s very affordable. \r\n\r\nGet it while it\'s still 50% OFF + FREE Shipping\r\n\r\nBuy here: https://pawsafer.sale\r\n \r\nThe Best, \r\n \r\nInez'),(397,100,'name_1','Ezequiel| | Ezequiel'),(398,100,'email_2','ezequiel@estatesatnuevo.com'),(399,100,'text_3','Ezequiel Fairbank'),(400,100,'textarea_4','Hello \r\n\r\nThe New Powerful LED Flashlight is The Perfect Flashlight For Any Situation!\r\n\r\nThe 3,000 Lumens &amp; Adjustable Zoom gives you the wide field of view and brightness other flashlights don’t have.\r\n\r\n50% OFF + Free Shipping!  Get it Now: https://linternaonline.shop\r\n\r\nThanks and Best Regards, \r\n\r\nEzequiel'),(401,101,'name_1','Eric Jones| | Jones'),(402,101,'email_2','ericjonesmyemail@gmail.com'),(403,101,'text_3','instead, congrats'),(404,101,'textarea_4','Good day, \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for?  \r\n\r\nPart of my job is to check out websites and the work you’ve done with estatesatnuevo.com definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo when someone like me happens to find your site – maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know INSTANTLY that they’re interested – so that you can talk to that lead while they’re literally checking out estatesatnuevo.com.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business – and it gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately (and there’s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don’t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(405,102,'name_1','Oliva Boxer| | Boxer'),(406,102,'email_2','boxer.oliva8@msn.com'),(407,102,'text_3','RE: estatesatnuevo.com FINAL-NOTICE'),(408,102,'textarea_4','*INFO SERVICE EXPIRATION FOR estatesatnuevo.com\r\n\r\nAttention: Accounts Payable / Domain Owner / Contact | Estates at Nuevo \r\n\r\nYour Domain: www.estatesatnuevo.com \r\nExpected Reply before: January 6th,2023.\r\n\r\nThis Notice for: www.estatesatnuevo.com will expire on January 6th,2023. \r\n\r\n\r\n\r\n*For details and to make a payment for estatesatnuevo.com services by credit card: \r\n  Visit: https://whats-ip.com/'),(409,103,'name_1','Edward Robe| | Robe'),(410,103,'email_2','heatraffic@gmail.com'),(411,103,'text_3','Get High Quality Website Traffic - 2,000 Page Views Free Trial'),(412,103,'textarea_4','Hello,\r\n\r\nWe offer high quality website traffic guaranteed. \r\n\r\nWe guarantee results| Receive millions of visitors everyday.\r\n\r\nChoose from over 213 countries including your Country for Geo-Targeting. Better yet, choose from hundreds of cities across the world, for City-Targeting. We guarantee that it will be demonstrated in your Google Analytics.\r\n\r\nFor Demo, we can give you 2000 Page Views in 1 day FREE.\r\n\r\nClick here for more information: https://heatraffic.online\r\n\r\nJust reply with your website and I will give you 2000 Page Views which will show in your Google Analytics.\r\n\r\nThanks\r\n\r\n\r\n\r\n\r\n\r\nNote: - If you are not interested then you can reply with a simple \"NO\".'),(413,104,'name_1','Eric Jones| | Jones'),(414,104,'email_2','ericjonesmyemail@gmail.com'),(415,104,'text_3','how to turn eyeballs into phone calls'),(416,104,'textarea_4','Hi, Eric here with a quick thought about your website estatesatnuevo.com...\r\n\r\nI’m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI get it – it’s hard.  Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace.  You got the eyeball, but nothing else.\r\n\r\nHere’s a solution for you…\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(417,105,'name_1','Eric Jones| | Jones'),(418,105,'email_2','ericjonesmyemail@gmail.com'),(419,105,'text_3','Cool website!'),(420,105,'textarea_4','Cool website!\r\n\r\nMy name’s Eric, and I just found your site - estatesatnuevo.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool.\r\n \r\nBut if you don’t mind me asking – after someone like me stumbles across estatesatnuevo.com, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace.\r\n\r\nNot good.\r\n\r\nHere’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.”\r\n\r\nYou can –\r\n  \r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nThat’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation.\r\n  \r\nThink about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nWouldn’t that be cool?\r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(421,106,'name_1','Eric Jones| | Jones'),(422,106,'email_2','ericjonesmyemail@gmail.com'),(423,106,'text_3','Your site – more leads?'),(424,106,'textarea_4','Hey, this is Eric and I ran across estatesatnuevo.com a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next?  Do you get a lot of leads from your site, or at least enough to make you happy?\r\n\r\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment.\r\n\r\nHere’s an idea…\r\n \r\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site…\r\n \r\nYou can –\r\n  \r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\r\n  \r\nThat way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(425,107,'name_1','Eric Jones| | Jones'),(426,107,'email_2','ericjonesmyemail@gmail.com'),(427,107,'text_3','Why not TALK with your leads?'),(428,107,'textarea_4','My name’s Eric and I just found your site estatesatnuevo.com.\r\n\r\nIt’s got a lot going for it, but here’s an idea to make it even MORE effective.\r\n\r\nTalk With Web Visitor – CLICK HERE https://boostleadgeneration.com for a live demo now.\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nAnd once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. \r\nTalk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(429,108,'name_1','Lenora| | Lenora'),(430,108,'email_2','lenora@estatesatnuevo.com'),(431,108,'text_3','Lenora Strickland'),(432,108,'textarea_4','Hello \r\n\r\nThe New Powerful LED Flashlight is The Perfect Flashlight For Any Situation!\r\n\r\nThe 3,000 Lumens &amp; Adjustable Zoom gives you the wide field of view and brightness other flashlights don’t have.\r\n\r\n50% OFF + Free Shipping!  Get it Now: https://linternaonline.shop\r\n\r\nBest, \r\n\r\nLenora'),(433,109,'name_1','Eric Jones| | Jones'),(434,109,'email_2','ericjonesmyemail@gmail.com'),(435,109,'text_3','Who needs eyeballs, you need BUSINESS'),(436,109,'textarea_4','My name’s Eric and I just came across your website - estatesatnuevo.com - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like estatesatnuevo.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Talk With Web Visitor.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills.\r\n  \r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nNow it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to learn more about everything Talk With Web Visitor can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(437,110,'name_1','Mia| | Mia'),(438,110,'email_2','mia@estatesatnuevo.com'),(439,110,'text_3','Estates at Nuevo at Vidanta Nuevo Vallarta'),(440,110,'textarea_4','Hey,\r\n\r\nIf you are one of the sufferers of the common problems nails have, then you are in luck! Our Toenail Clippers is here to help. It has a specially designed clip that can help those with troubles with winding nails, hard nails, two nails, nail cracks, deep nails, and thickened nails.\r\n\r\nWe are confident that our Toenail Clippers will provide you with the results you are looking for.\r\n\r\nGet yours today with 60% OFF: https://thepodiatrist.shop\r\n\r\nThe Best,\r\n\r\nMia'),(441,111,'name_1','Eric Jones| | Jones'),(442,111,'email_2','ericjonesmyemail@gmail.com'),(443,111,'text_3','Instead, congrats'),(444,111,'textarea_4','Good day, \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for?  \r\n\r\nPart of my job is to check out websites and the work you’ve done with estatesatnuevo.com definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo when someone like me happens to find your site – maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know INSTANTLY that they’re interested – so that you can talk to that lead while they’re literally checking out estatesatnuevo.com.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business – and it gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately (and there’s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don’t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(445,112,'name_1','Eric Jones| | Jones'),(446,112,'email_2','ericjonesmyemail@gmail.com'),(447,112,'text_3','Why not TALK with your leads?'),(448,112,'textarea_4','My name’s Eric and I just found your site estatesatnuevo.com.\r\n\r\nIt’s got a lot going for it, but here’s an idea to make it even MORE effective.\r\n\r\nTalk With Web Visitor – CLICK HERE http://jumboleadmagnet.com for a live demo now.\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nAnd once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. \r\nTalk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(449,113,'name_1','Eric Jones| | Jones'),(450,113,'email_2','ericjonesmyemail@gmail.com'),(451,113,'text_3','Why not TALK with your leads?'),(452,113,'textarea_4','My name’s Eric and I just found your site estatesatnuevo.com.\r\n\r\nIt’s got a lot going for it, but here’s an idea to make it even MORE effective.\r\n\r\nTalk With Web Visitor – CLICK HERE http://jumboleadmagnet.com for a live demo now.\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nAnd once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. \r\nTalk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(453,114,'name_1','Shay Hudgens| | Hudgens'),(454,114,'email_2','hudgens.shay@outlook.com'),(455,114,'text_3',''),(456,114,'textarea_4','You can submit your site to over 1000 different business/advertising directories for free with one click https://bit.ly/submit_site_1'),(457,115,'name_1','Eric Jones| | Jones'),(458,115,'email_2','ericjonesmyemail@gmail.com'),(459,115,'text_3','Try this, get more leads'),(460,115,'textarea_4','Hi, my name is Eric and I’m betting you’d like your website estatesatnuevo.com to generate more leads.\r\n\r\nHere’s how:\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at estatesatnuevo.com.\r\n\r\nTalk With Web Visitor – CLICK HERE http://jumboleadmagnet.com for a live demo now.\r\n\r\nAnd now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way.\r\n\r\nIf they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Talk With Web Visitor and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them!\r\nTalk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(461,116,'name_1','Eric Jones| | Jones'),(462,116,'email_2','ericjonesmyemail@gmail.com'),(463,116,'text_3','Cool website!'),(464,116,'textarea_4','Cool website!\r\n\r\nMy name’s Eric, and I just found your site - estatesatnuevo.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool.\r\n \r\nBut if you don’t mind me asking – after someone like me stumbles across estatesatnuevo.com, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace.\r\n\r\nNot good.\r\n\r\nHere’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.”\r\n\r\nYou can –\r\n  \r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nThat’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation.\r\n  \r\nThink about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nWouldn’t that be cool?\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(465,117,'name_1','Mona Crumley| | Crumley'),(466,117,'email_2','crumley.mona@gmail.com'),(467,117,'text_3',''),(468,117,'textarea_4','Free submission of your new website to over 1000 business directories here https://bit.ly/g5tig5'),(469,118,'name_1','Dyan| | Dyan'),(470,118,'email_2','dyan@estatesatnuevo.com'),(471,118,'text_3','Lead For estatesatnuevo.com'),(472,118,'textarea_4','Hello,\r\n\r\nIf you are one of the sufferers of the common problems nails have, then you are in luck! Our Toenail Clippers is here to help. It has a specially designed clip that can help those with troubles with winding nails, hard nails, two nails, nail cracks, deep nails, and thickened nails.\r\n\r\nWe are confident that our Toenail Clippers will provide you with the results you are looking for.\r\n\r\nGet yours today with 60% OFF: https://thepodiatrist.shop\r\n\r\nSincerely,\r\n\r\nDyan'),(473,119,'name_1','Eric Jones| | Jones'),(474,119,'email_2','ericjonesmyemail@gmail.com'),(475,119,'text_3','Turn Surf-Surf-Surf into Talk Talk Talk'),(476,119,'textarea_4','Hello, my name’s Eric and I just ran across your website at estatesatnuevo.com...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever.\r\n\r\nI have the solution:\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try… it could be huge for your business.\r\n\r\nPlus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(477,120,'name_1','Eric Jones| | Jones'),(478,120,'email_2','ericjonesmyemail@gmail.com'),(479,120,'text_3','There they go…'),(480,120,'textarea_4','Hey, my name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at estatesatnuevo.com.\r\n\r\n- They hang out for a minute to check it out.  “I’m interested… but… maybe…”\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(481,121,'name_1','Marvin| | Marvin'),(482,121,'email_2','info@estatesatnuevo.com'),(483,121,'text_3','Marvin Gell'),(484,121,'textarea_4','New Multifunction Waterproof Backpack\r\n\r\nThe best ever SUPER Backpack: Drop-proof/Scratch-resistant/USB Charging/Large capacity storage\r\n\r\n50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED time\r\n\r\nBuy now: https://thebackpack.co\r\n\r\nKind Regards, \r\n\r\nMarvin'),(485,122,'name_1','Bernardo Palos| | Palos'),(486,122,'email_2','marsha.illingworth85@gmail.com'),(487,122,'text_3','Have you heard about the new Ai technologies that are coming out?'),(488,122,'textarea_4','It is said by yahoo finance that by 2030 90 percent of content on the web will be created by Ai, the other 10 percent will agmented content with Ai\r\nthere is a new Ai tool called Jasper that helps create content for you with a click of a button for your blog or business\r\n\r\nClick the Link here to start your free trial -&gt; https://tinyurl.com/Jasper-Free-Trial-Ai-Writer\r\n\r\nFrom\r\nBernardo Palos\r\n\r\nIf you dont want to hear about jasper anymore from me fill out this form correctly: https://tinyurl.com/Jasper-Contact-Removal'),(489,123,'name_1','Eric Jones| | Jones'),(490,123,'email_2','eric.jones.z.mail@gmail.com'),(491,123,'text_3','Why not TALK with your leads?'),(492,123,'textarea_4','My name’s Eric and I just found your site estatesatnuevo.com.\r\n\r\nIt’s got a lot going for it, but here’s an idea to make it even MORE effective.\r\n\r\nTalk With Web Visitor – CLICK HERE http://boostleadgeneration.com for a live demo now.\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nAnd once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. \r\nTalk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(493,124,'name_1','Eric Jones| | Jones'),(494,124,'email_2','ericjonesmyemail@gmail.com'),(495,124,'text_3','Who needs eyeballs, you need BUSINESS'),(496,124,'textarea_4','My name’s Eric and I just came across your website - estatesatnuevo.com - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like estatesatnuevo.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Talk With Web Visitor.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills.\r\n  \r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nNow it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://boostleadgeneration.com to learn more about everything Talk With Web Visitor can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(497,125,'name_1','Leroy MacDonnell| | MacDonnell'),(498,125,'email_2','hacker@sigalsport.com'),(499,125,'text_3','Your Site Has Been Hacked'),(500,125,'textarea_4','Your Site Has Been Hacked\r\n\r\nPLEASE FORWARD THIS EMAIL TO SOMEONE IN YOUR COMPANY WHO IS ALLOWED TO MAKE IMPORTANT DECISIONS!\r\n\r\nWe have hacked your website https://estatesatnuevo.com and extracted your databases.\r\n\r\nHow did this happen?\r\n\r\nOur team has found a vulnerability within your site that we were able to exploit. After finding the vulnerability we were able to get your database credentials and extract your entire database and move the information to an offshore server.\r\n\r\nWhat does this mean?\r\n\r\nWe will systematically go through a series of steps of totally damaging your reputation. First your database will be leaked or sold to the highest bidder which they will use with whatever their intentions are. Next if there are e-mails found they will be e-mailed that their information has been sold or leaked and your https://estatesatnuevo.com was at fault thusly damaging your reputation and having angry customers/associates with whatever angry customers/associates do. Lastly any links that you have indexed in the search engines will be de-indexed based off of blackhat techniques that we used in the past to de-index our targets.\r\n\r\nHow do I stop this?\r\n\r\nWe are willing to refrain from destroying your site’s reputation for a small fee. The current fee is $3000 in bitcoins (0.14 BTC).\r\n\r\nThe amount(approximately): $3000 (0.14 BTC)\r\nThe Address Part 1: bc1qj9u7gmjk5kznnnjgs\r\nThe Address Part 2: fvs35fftmtfh7n6wk6jt2\r\n\r\nSo, you have to manually copy + paste Part1 and Part2 in one string made of 42 characters with no space between the parts that start with \"b\" and end with \"2\" is the actually address where you should send the money to.\r\n\r\n Once you have paid we will automatically get informed that it was your payment. Please note that you have to make payment within 72 hours after receiving this message or the database leak, e-mails dispatched, and de-index of your site WILL start!\r\n\r\nHow do I get Bitcoins?\r\n\r\nYou can easily buy bitcoins via several websites or even offline from a Bitcoin-ATM. \r\n\r\nWhat if I don’t pay?\r\n\r\nIf you decide not to pay, we will start the attack at the indicated date and uphold it until you do, there’s no counter measure to this, you will only end up wasting more money trying to find a solution. We will completely destroy your reputation amongst google and your customers.\r\n\r\nThis is not a hoax, do not reply to this email, don’t try to reason or negotiate, we will not read any replies. Once you have paid we will stop what we were doing and you will never hear from us again!\r\n\r\nPlease note that Bitcoin is anonymous and no one will find out that you have complied.'),(501,126,'name_1','Eric Jones| | Jones'),(502,126,'email_2','ericjonesmyemail@gmail.com'),(503,126,'text_3','Cool website!'),(504,126,'textarea_4','Cool website!\r\n\r\nMy name’s Eric, and I just found your site - estatesatnuevo.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool.\r\n \r\nBut if you don’t mind me asking – after someone like me stumbles across estatesatnuevo.com, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace.\r\n\r\nNot good.\r\n\r\nHere’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.”\r\n\r\nYou can –\r\n  \r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nThat’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation.\r\n  \r\nThink about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nWouldn’t that be cool?\r\n\r\nCLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(505,127,'name_1','Eric Jones| | Jones'),(506,127,'email_2','ericjonesmyemail@gmail.com'),(507,127,'text_3','Cool website!'),(508,127,'textarea_4','Cool website!\r\n\r\nMy name’s Eric, and I just found your site - estatesatnuevo.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool.\r\n \r\nBut if you don’t mind me asking – after someone like me stumbles across estatesatnuevo.com, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace.\r\n\r\nNot good.\r\n\r\nHere’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.”\r\n\r\nYou can –\r\n  \r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nThat’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation.\r\n  \r\nThink about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nWouldn’t that be cool?\r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(509,128,'name_1','Sonya| | Sonya'),(510,128,'email_2','info@estatesatnuevo.com'),(511,128,'text_3','Sonya Clisby'),(512,128,'textarea_4','New Multifunction Waterproof Backpack\r\n\r\nThe best ever SUPER Backpack: Drop-proof/Scratch-resistant/USB Charging/Large capacity storage\r\n\r\n50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED time\r\n\r\nBuy now: https://thebackpack.co\r\n\r\nRegards, \r\n\r\nSonya'),(513,129,'name_1','Tasha| | Tasha'),(514,129,'email_2','tasha@estatesatnuevo.com'),(515,129,'text_3','Tasha Alber'),(516,129,'textarea_4','Good day \r\n\r\nI wanted to reach out and let you know about our new dog harness. It\'s really easy to put on and take off - in just 2 seconds - and it\'s personalized for each dog. \r\nPlus, we offer a lifetime warranty so you can be sure your pet is always safe and stylish.\r\n\r\nWe\'ve had a lot of success with it so far and I think your dog would love it. \r\n\r\nGet yours today with 50% OFF: https://caredogbest.com\r\n\r\nFREE Shipping - TODAY ONLY! \r\n\r\nBest, \r\n\r\nTasha'),(517,130,'name_1','Dirk McGill| | McGill'),(518,130,'email_2','dirk.mcgill@gmail.com'),(519,130,'text_3','Zqk xjzb Kji'),(520,130,'textarea_4','Great new website! Submit it to our directory for a chance to get more clients. http://bit.ly/3JjLZe1'),(521,131,'name_1','Eric Jones| | Jones'),(522,131,'email_2','ericjonesmyemail@gmail.com'),(523,131,'text_3','Strike when the iron’s hot'),(524,131,'textarea_4','Hey there, I just found your site, quick question…\r\n\r\nMy name’s Eric, I found estatesatnuevo.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site.\r\n  \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron’s hot!\r\n\r\nCLICK HERE http://jumboleadmagnet.com to learn more about everything Talk With Web Visitor can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(525,132,'name_1','Eric Jones| | Jones'),(526,132,'email_2','ericjonesmyemail@gmail.com'),(527,132,'text_3','Your site – more leads?'),(528,132,'textarea_4','Hey, this is Eric and I ran across estatesatnuevo.com a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next?  Do you get a lot of leads from your site, or at least enough to make you happy?\r\n\r\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment.\r\n\r\nHere’s an idea…\r\n \r\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site…\r\n \r\nYou can –\r\n  \r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\r\n  \r\nThat way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(529,133,'name_1','Eric Jones| | Jones'),(530,133,'email_2','ericjonesmyemail@gmail.com'),(531,133,'text_3','Why not TALK with your leads?'),(532,133,'textarea_4','My name’s Eric and I just found your site estatesatnuevo.com.\r\n\r\nIt’s got a lot going for it, but here’s an idea to make it even MORE effective.\r\n\r\nTalk With Web Visitor – CLICK HERE http://jumboleadmagnet.com for a live demo now.\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nAnd once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. \r\nTalk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(533,134,'name_1','Eric Jones| | Jones'),(534,134,'email_2','ericjonesmyemail@gmail.com'),(535,134,'text_3','Try this, get more leads'),(536,134,'textarea_4','Hi, my name is Eric and I’m betting you’d like your website estatesatnuevo.com to generate more leads.\r\n\r\nHere’s how:\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at estatesatnuevo.com.\r\n\r\nTalk With Web Visitor – CLICK HERE http://jumboleadmagnet.com for a live demo now.\r\n\r\nAnd now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way.\r\n\r\nIf they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Talk With Web Visitor and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them!\r\nTalk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(537,135,'name_1','Eric Jones| | Jones'),(538,135,'email_2','ericjonesmyemail@gmail.com'),(539,135,'text_3','Strike when the iron’s hot'),(540,135,'textarea_4','Hey there, I just found your site, quick question…\r\n\r\nMy name’s Eric, I found estatesatnuevo.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site.\r\n  \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron’s hot!\r\n\r\nCLICK HERE https://boostleadgeneration.com to learn more about everything Talk With Web Visitor can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(541,136,'name_1','Eric Jones| | Jones'),(542,136,'email_2','ericjonesmyemail@gmail.com'),(543,136,'text_3','Cool website!'),(544,136,'textarea_4','Cool website!\r\n\r\nMy name’s Eric, and I just found your site - estatesatnuevo.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool.\r\n \r\nBut if you don’t mind me asking – after someone like me stumbles across estatesatnuevo.com, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace.\r\n\r\nNot good.\r\n\r\nHere’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.”\r\n\r\nYou can –\r\n  \r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nThat’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation.\r\n  \r\nThink about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nWouldn’t that be cool?\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(545,137,'name_1','Eric Jones| | Jones'),(546,137,'email_2','ericjonesmyemail@gmail.com'),(547,137,'text_3','Who needs eyeballs, you need BUSINESS'),(548,137,'textarea_4','My name’s Eric and I just came across your website - estatesatnuevo.com - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like estatesatnuevo.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Talk With Web Visitor.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills.\r\n  \r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nNow it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://boostleadgeneration.com to learn more about everything Talk With Web Visitor can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(549,138,'name_1','Eric Jones| | Jones'),(550,138,'email_2','ericjonesmyemail@gmail.com'),(551,138,'text_3','Turn Surf-Surf-Surf into Talk Talk Talk'),(552,138,'textarea_4','Hello, my name’s Eric and I just ran across your website at estatesatnuevo.com...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever.\r\n\r\nI have the solution:\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try… it could be huge for your business.\r\n\r\nPlus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(553,139,'name_1','Chastity| | Chastity'),(554,139,'email_2','posagie6@netscape.net'),(555,139,'text_3','Concerning estatesatnuevo.com'),(556,139,'textarea_4','Hi there!\r\n\r\nI understand that you are looking for ways to improve your posture and contribute to a healthy lifestyle. I think our product, Medico Postura™ Body Posture Corrector, can be of great help.\r\n\r\nMedico Postura™ helps improve your posture INSTANTLY. It is an easy-to-use device that you can wear at home, work, or even when you are sleeping.\r\n\r\nIt is made of lightweight and breathable fabric, making it comfortable to wear all day long.\r\n\r\nGet it today while it\'s still 60% OFF: https://medicopostura.com   \r\n\r\nFREE Shipping - TODAY ONLY!\r\n\r\nThank You, \r\n\r\nChastity'),(557,140,'name_1','Dena| | Dena'),(558,140,'email_2','dena@estatesatnuevo.com'),(559,140,'text_3','Dena Nibbi'),(560,140,'textarea_4','Hello there \r\n\r\nI wanted to reach out and let you know about our new dog harness. It\'s really easy to put on and take off - in just 2 seconds - and it\'s personalized for each dog. \r\nPlus, we offer a lifetime warranty so you can be sure your pet is always safe and stylish.\r\n\r\nWe\'ve had a lot of success with it so far and I think your dog would love it. \r\n\r\nGet yours today with 50% OFF:   https://caredogbest.com\r\n\r\nFREE Shipping - TODAY ONLY! \r\n\r\nCheers, \r\n\r\nDena'),(561,141,'name_1','Eric Jones| | Jones'),(562,141,'email_2','ericjonesmyemail@gmail.com'),(563,141,'text_3','Why not TALK with your leads?'),(564,141,'textarea_4','To the estatesatnuevo.com Owner.\r\n\r\nMy name’s Eric and I just found your site estatesatnuevo.com.\r\n\r\nIt’s got a lot going for it, but here’s an idea to make it even MORE effective.\r\n\r\nWeb Visitors Into Leads – CLICK HERE http://jumboleadmagnet.com for a live demo now.\r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nAnd once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. \r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(565,142,'name_1','Eric Jones| | Jones'),(566,142,'email_2','ericjonesmyemail@gmail.com'),(567,142,'text_3','Try this, get more leads'),(568,142,'textarea_4','To the estatesatnuevo.com Webmaster. my name is Eric and I’m betting you’d like your website estatesatnuevo.com to generate more leads.\r\n\r\nHere’s how:\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at estatesatnuevo.com.\r\n\r\nWeb Visitors Into Leads – CLICK HERE http://advanceleadgeneration.com for a live demo now.\r\n\r\nAnd now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way.\r\n\r\nIf they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Web Visitors Into Leads and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them!\r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(569,143,'name_1','Eric Jones| | Jones'),(570,143,'email_2','ericjonesmyemail@gmail.com'),(571,143,'text_3','Strike when the iron’s hot'),(572,143,'textarea_4','To the estatesatnuevo.com Administrator! I just found your site, quick question…\r\n\r\nMy name’s Eric, I found estatesatnuevo.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nWeb Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site.\r\n  \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron’s hot!\r\n\r\nCLICK HERE https://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(573,144,'name_1','Eric Jones| | Jones'),(574,144,'email_2','ericjonesmyemail@gmail.com'),(575,144,'text_3','Try this, get more leads'),(576,144,'textarea_4','Dear estatesatnuevo.com Administrator!\r\n\r\nMy name is Eric and I’m betting you’d like your website estatesatnuevo.com to generate more leads.\r\n\r\nHere’s how:\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at estatesatnuevo.com.\r\n\r\nWeb Visitors Into Leads – CLICK HERE http://jumboleadmagnet.com for a live demo now.\r\n\r\nAnd now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way.\r\n\r\nIf they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Web Visitors Into Leads and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them!\r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(577,145,'name_1','Kaylene Schlenker| | Schlenker'),(578,145,'email_2','kaylene.schlenker@googlemail.com'),(579,145,'text_3','Imbjblyx Vam'),(580,145,'textarea_4','Submit your new website to our directory and start reaching a wider audience. http://bit.ly/3IkL2Rx'),(581,146,'name_1','Eric Jones| | Jones'),(582,146,'email_2','ericjonesmyemail@gmail.com'),(583,146,'text_3','Cool website!'),(584,146,'textarea_4','Dear estatesatnuevo.com Administrator.\r\n\r\nCool website!\r\n\r\nMy name’s Eric, and I just found your site - estatesatnuevo.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool.\r\n \r\nBut if you don’t mind me asking – after someone like me stumbles across estatesatnuevo.com, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace.\r\n\r\nNot good.\r\n\r\nHere’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.”\r\n\r\nYou can –\r\n  \r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nThat’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation.\r\n  \r\nThink about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nWouldn’t that be cool?\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(585,147,'name_1','Eric Jones| | Jones'),(586,147,'email_2','ericjonesmyemail@gmail.com'),(587,147,'text_3','instead, congrats'),(588,147,'textarea_4','Dear estatesatnuevo.com Owner. \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for?  \r\n\r\nPart of my job is to check out websites and the work you’ve done with estatesatnuevo.com definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo when someone like me happens to find your site – maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know INSTANTLY that they’re interested – so that you can talk to that lead while they’re literally checking out estatesatnuevo.com.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business – and it gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately (and there’s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don’t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(589,148,'name_1','Karol| | Karol'),(590,148,'email_2','info@waywardmuseretreats.com'),(591,148,'text_3','Estates at Nuevo at Vidanta Nuevo Vallarta'),(592,148,'textarea_4','Hi there!\r\n\r\nI understand that you are looking for ways to improve your posture and contribute to a healthy lifestyle. I think our product, Medico Postura™ Body Posture Corrector, can be of great help.\r\n\r\nMedico Postura™ helps improve your posture INSTANTLY. It is an easy-to-use device that you can wear at home, work, or even when you are sleeping.\r\n\r\nIt is made of lightweight and breathable fabric, making it comfortable to wear all day long.\r\n\r\nGet it today while it\'s still 60% OFF: https://medicopostura.com   \r\n\r\nFREE Shipping - TODAY ONLY!\r\n\r\nHave a great time, \r\n\r\nKarol'),(593,149,'name_1','Boris| | Boris'),(594,149,'email_2','boris@estatesatnuevo.com'),(595,149,'text_3','Boris Wellish'),(596,149,'textarea_4','New Multifunction Waterproof Backpack\r\n\r\nThe best ever SUPER Backpack: Drop-proof/Scratch-resistant/USB Charging/Large capacity storage\r\n\r\n50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED time\r\n\r\nBuy now: https://thebackpack.co\r\n\r\nAll the best, \r\n\r\nBoris'),(597,150,'name_1','Eric Jones| | Jones'),(598,150,'email_2','ericjonesmyemail@gmail.com'),(599,150,'text_3','Your site – more leads?'),(600,150,'textarea_4','Dear estatesatnuevo.com Webmaster! this is Eric and I ran across estatesatnuevo.com a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next?  Do you get a lot of leads from your site, or at least enough to make you happy?\r\n\r\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment.\r\n\r\nHere’s an idea…\r\n \r\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site…\r\n \r\nYou can –\r\n  \r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\r\n  \r\nThat way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(601,151,'name_1','Eric Jones| | Jones'),(602,151,'email_2','ericjonesmyemail@gmail.com'),(603,151,'text_3','Turn Surf-Surf-Surf into Talk Talk Talk'),(604,151,'textarea_4','To the estatesatnuevo.com Administrator!\r\n\r\nMy name’s Eric and I just ran across your website at estatesatnuevo.com...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever.\r\n\r\nI have the solution:\r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works and even give it a try… it could be huge for your business.\r\n\r\nPlus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(605,152,'name_1','Eric Jones| | Jones'),(606,152,'email_2','ericjonesmyemail@gmail.com'),(607,152,'text_3','Who needs eyeballs, you need BUSINESS'),(608,152,'textarea_4','Hi estatesatnuevo.com Webmaster!\r\n\r\nMy name’s Eric and I just came across your website - estatesatnuevo.com - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like estatesatnuevo.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Web Visitors Into Leads.\r\n\r\nWeb Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills.\r\n  \r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nNow it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(609,153,'name_1','Eric Jones| | Jones'),(610,153,'email_2','ericjonesmyemail@gmail.com'),(611,153,'text_3','how to turn eyeballs into phone calls'),(612,153,'textarea_4','Dear estatesatnuevo.com Webmaster. \r\n\r\nEric here with a quick thought about your website estatesatnuevo.com...\r\n\r\nI’m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI get it – it’s hard.  Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace.  You got the eyeball, but nothing else.\r\n\r\nHere’s a solution for you…\r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(613,154,'name_1','Eric Jones| | Jones'),(614,154,'email_2','ericjonesmyemail@gmail.com'),(615,154,'text_3','Cool website!'),(616,154,'textarea_4','To the estatesatnuevo.com Webmaster! Cool website!\r\n\r\nMy name’s Eric, and I just found your site - estatesatnuevo.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool.\r\n \r\nBut if you don’t mind me asking – after someone like me stumbles across estatesatnuevo.com, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace.\r\n\r\nNot good.\r\n\r\nHere’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.”\r\n\r\nYou can –\r\n  \r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nThat’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation.\r\n  \r\nThink about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nWouldn’t that be cool?\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(617,155,'name_1','Eric Jones| | Jones'),(618,155,'email_2','ericjonesmyemail@gmail.com'),(619,155,'text_3','Instead, congrats'),(620,155,'textarea_4','Dear estatesatnuevo.com Admin. \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for?  \r\n\r\nPart of my job is to check out websites and the work you’ve done with estatesatnuevo.com definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo when someone like me happens to find your site – maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know INSTANTLY that they’re interested – so that you can talk to that lead while they’re literally checking out estatesatnuevo.com.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business – and it gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately (and there’s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don’t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(621,156,'name_1','Russel Cockram| | Cockram'),(622,156,'email_2','russel.cockram@googlemail.com'),(623,156,'text_3','Dear estatesatnuevo.com Webmaster!'),(624,156,'textarea_4','Hi, I sent you this message via your contact form. I can generate leads for your business using this same method, if you\'re interested please reply to: karinavb@vipremium.xyz'),(625,157,'name_1','Eric Jones| | Jones'),(626,157,'email_2','ericjonesmyemail@gmail.com'),(627,157,'text_3','Strike when the iron’s hot'),(628,157,'textarea_4','Hi estatesatnuevo.com Owner!\r\n\r\nI just found your site, quick question…\r\n\r\nMy name’s Eric, I found estatesatnuevo.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nWeb Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site.\r\n  \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron’s hot!\r\n\r\nCLICK HERE http://jumboleadmagnet.com to learn more about everything Web Visitors Into Leads can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(629,158,'name_1','Eric Jones| | Jones'),(630,158,'email_2','ericjonesmyemail@gmail.com'),(631,158,'text_3','Your site – more leads?'),(632,158,'textarea_4','Hi estatesatnuevo.com Administrator! this is Eric and I ran across estatesatnuevo.com a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next?  Do you get a lot of leads from your site, or at least enough to make you happy?\r\n\r\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment.\r\n\r\nHere’s an idea…\r\n \r\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site…\r\n \r\nYou can –\r\n  \r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\r\n  \r\nThat way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(633,159,'name_1','Eric Jones| | Jones'),(634,159,'email_2','ericjonesmyemail@gmail.com'),(635,159,'text_3','Your site – more leads?'),(636,159,'textarea_4','Hi estatesatnuevo.com Owner.\r\n\r\nThis is Eric and I ran across estatesatnuevo.com a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next?  Do you get a lot of leads from your site, or at least enough to make you happy?\r\n\r\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment.\r\n\r\nHere’s an idea…\r\n \r\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site…\r\n \r\nYou can –\r\n  \r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\r\n  \r\nThat way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(637,160,'name_1','Eric Jones| | Jones'),(638,160,'email_2','ericjonesmyemail@gmail.com'),(639,160,'text_3','There they go…'),(640,160,'textarea_4','Hello estatesatnuevo.com Webmaster. my name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at estatesatnuevo.com.\r\n\r\n- They hang out for a minute to check it out.  “I’m interested… but… maybe…”\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(641,161,'name_1','Eric Jones| | Jones'),(642,161,'email_2','ericjonesmyemail@gmail.com'),(643,161,'text_3','Your site – more leads?'),(644,161,'textarea_4','Hello estatesatnuevo.com Administrator! this is Eric and I ran across estatesatnuevo.com a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next?  Do you get a lot of leads from your site, or at least enough to make you happy?\r\n\r\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment.\r\n\r\nHere’s an idea…\r\n \r\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site…\r\n \r\nYou can –\r\n  \r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\r\n  \r\nThat way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(645,162,'name_1','Eric Jones| | Jones'),(646,162,'email_2','ericjonesmyemail@gmail.com'),(647,162,'text_3','There they go…'),(648,162,'textarea_4','Hi estatesatnuevo.com Admin!\r\n\r\nMy name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at estatesatnuevo.com.\r\n\r\n- They hang out for a minute to check it out.  “I’m interested… but… maybe…”\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(649,163,'name_1','Kathie| | Kathie'),(650,163,'email_2','kathie@estatesatnuevo.com'),(651,163,'text_3','Kathie Dupre'),(652,163,'textarea_4','New Multifunction Waterproof Backpack\r\n\r\nThe best ever SUPER Backpack: Drop-proof/Scratch-resistant/USB Charging/Large capacity storage\r\n\r\n50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED time\r\n\r\nBuy now: https://thebackpack.co\r\n\r\nBest, \r\n\r\nKathie'),(653,164,'name_1','Eric Jones| | Jones'),(654,164,'email_2','ericjonesmyemail@gmail.com'),(655,164,'text_3','Who needs eyeballs, you need BUSINESS'),(656,164,'textarea_4','Hi estatesatnuevo.com Webmaster.\r\n\r\nMy name’s Eric and I just came across your website - estatesatnuevo.com - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like estatesatnuevo.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Web Visitors Into Leads.\r\n\r\nWeb Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills.\r\n  \r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nNow it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(657,165,'name_1','Nereida Finney| | Finney'),(658,165,'email_2','nereida.finney@gmail.com'),(659,165,'text_3','Dear estatesatnuevo.com Webmaster!'),(660,165,'textarea_4','When I look for a business online, the first thing I do is check their reviews and number of positive feedback. This is why I\'m reaching out to you now – in order to help you boost the number of genuine 5-star reviews you have, which can eventually result in more calls from your existing ads or listings. Visit here for more information: https://tinyurl.com/53waxne9'),(661,166,'name_1','Eric Jones| | Jones'),(662,166,'email_2','ericjonesmyemail@gmail.com'),(663,166,'text_3','Turn Surf-Surf-Surf into Talk Talk Talk'),(664,166,'textarea_4','To the estatesatnuevo.com Owner! my name’s Eric and I just ran across your website at estatesatnuevo.com...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever.\r\n\r\nI have the solution:\r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works and even give it a try… it could be huge for your business.\r\n\r\nPlus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(665,167,'name_1','Lucas| | Lucas'),(666,167,'email_2','info@whitecardio.com'),(667,167,'text_3','Estates at Nuevo at Vidanta Nuevo Vallarta'),(668,167,'textarea_4','World\'s Best Neck Massager Get it Now 50% OFF + Free Shipping!\r\n\r\nWellness Enthusiasts! There has never been a better time to take care of your neck pain! \r\nOur clinical-grade TENS technology will ensure you have neck relief in as little as 20 minutes.\r\n\r\nGet Yours: https://hineck.shop\r\n\r\nThe Best,\r\n\r\nLucas\r\nEstates at Nuevo at Vidanta Nuevo Vallarta'),(669,168,'name_1','Eric Jones| | Jones'),(670,168,'email_2','eric.jones.z.mail@gmail.com'),(671,168,'text_3','Why not TALK with your leads?'),(672,168,'textarea_4','Hi estatesatnuevo.com Admin!\r\n\r\nMy name’s Eric and I just found your site estatesatnuevo.com.\r\n\r\nIt’s got a lot going for it, but here’s an idea to make it even MORE effective.\r\n\r\nWeb Visitors Into Leads – CLICK HERE http://advanceleadgeneration.com for a live demo now.\r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nAnd once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. \r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(673,169,'name_1','Eric Jones| | Jones'),(674,169,'email_2','ericjonesmyemail@gmail.com'),(675,169,'text_3','Why not TALK with your leads?'),(676,169,'textarea_4','Hello estatesatnuevo.com Admin!\r\n\r\nMy name’s Eric and I just found your site estatesatnuevo.com.\r\n\r\nIt’s got a lot going for it, but here’s an idea to make it even MORE effective.\r\n\r\nWeb Visitors Into Leads – CLICK HERE http://jumboleadmagnet.com for a live demo now.\r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nAnd once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. \r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(677,170,'name_1','Eric Jones| | Jones'),(678,170,'email_2','ericjonesmyemail@gmail.com'),(679,170,'text_3','Try this, get more leads'),(680,170,'textarea_4','To the estatesatnuevo.com Administrator! my name is Eric and I’m betting you’d like your website estatesatnuevo.com to generate more leads.\r\n\r\nHere’s how:\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at estatesatnuevo.com.\r\n\r\nWeb Visitors Into Leads – CLICK HERE http://advanceleadgeneration.com for a live demo now.\r\n\r\nAnd now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way.\r\n\r\nIf they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Web Visitors Into Leads and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them!\r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(681,171,'name_1','Eric Jones| | Jones'),(682,171,'email_2','ericjonesmyemail@gmail.com'),(683,171,'text_3','Why not TALK with your leads?'),(684,171,'textarea_4','Dear estatesatnuevo.com Administrator!\r\n\r\nMy name’s Eric and I just found your site estatesatnuevo.com.\r\n\r\nIt’s got a lot going for it, but here’s an idea to make it even MORE effective.\r\n\r\nWeb Visitors Into Leads – CLICK HERE http://jumboleadmagnet.com for a live demo now.\r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nAnd once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. \r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(685,172,'name_1','Eric Jones| | Jones'),(686,172,'email_2','ericjonesmyemail@gmail.com'),(687,172,'text_3','Strike when the iron’s hot'),(688,172,'textarea_4','To the estatesatnuevo.com Owner. I just found your site, quick question…\r\n\r\nMy name’s Eric, I found estatesatnuevo.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nWeb Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site.\r\n  \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron’s hot!\r\n\r\nCLICK HERE https://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(689,173,'name_1','Eric Jones| | Jones'),(690,173,'email_2','ericjonesmyemail@gmail.com'),(691,173,'text_3','instead, congrats'),(692,173,'textarea_4','Hello estatesatnuevo.com Administrator! \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for?  \r\n\r\nPart of my job is to check out websites and the work you’ve done with estatesatnuevo.com definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo when someone like me happens to find your site – maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know INSTANTLY that they’re interested – so that you can talk to that lead while they’re literally checking out estatesatnuevo.com.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business – and it gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately (and there’s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don’t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(693,174,'name_1','Caroline| | Caroline'),(694,174,'email_2','info@estatesatnuevo.com'),(695,174,'text_3','Estates at Nuevo at Vidanta Nuevo Vallarta'),(696,174,'textarea_4','World\'s Best Neck Massager Get it Now 50% OFF + Free Shipping!\r\n\r\nWellness Enthusiasts! There has never been a better time to take care of your neck pain! \r\nOur clinical-grade TENS technology will ensure you have neck relief in as little as 20 minutes.\r\n\r\nGet Yours: https://hineck.shop\r\n\r\nRegards,\r\n\r\nCaroline\r\nEstates at Nuevo at Vidanta Nuevo Vallarta'),(697,175,'name_1','Eric Jones| | Jones'),(698,175,'email_2','ericjonesmyemail@gmail.com'),(699,175,'text_3','Your site – more leads?'),(700,175,'textarea_4','Dear estatesatnuevo.com Webmaster! this is Eric and I ran across estatesatnuevo.com a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next?  Do you get a lot of leads from your site, or at least enough to make you happy?\r\n\r\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment.\r\n\r\nHere’s an idea…\r\n \r\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site…\r\n \r\nYou can –\r\n  \r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\r\n  \r\nThat way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(701,176,'name_1','Eric Jones| | Jones'),(702,176,'email_2','ericjonesmyemail@gmail.com'),(703,176,'text_3','Cool website!'),(704,176,'textarea_4','Hello estatesatnuevo.com Owner.\r\n\r\nCool website!\r\n\r\nMy name’s Eric, and I just found your site - estatesatnuevo.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool.\r\n \r\nBut if you don’t mind me asking – after someone like me stumbles across estatesatnuevo.com, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace.\r\n\r\nNot good.\r\n\r\nHere’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.”\r\n\r\nYou can –\r\n  \r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nThat’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation.\r\n  \r\nThink about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nWouldn’t that be cool?\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(705,177,'name_1','Eric Jones| | Jones'),(706,177,'email_2','ericjonesmyemail@gmail.com'),(707,177,'text_3','Try this, get more leads'),(708,177,'textarea_4','Dear estatesatnuevo.com Administrator!\r\n\r\nMy name is Eric and I’m betting you’d like your website estatesatnuevo.com to generate more leads.\r\n\r\nHere’s how:\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at estatesatnuevo.com.\r\n\r\nWeb Visitors Into Leads – CLICK HERE http://jumboleadmagnet.com for a live demo now.\r\n\r\nAnd now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way.\r\n\r\nIf they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Web Visitors Into Leads and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them!\r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(709,178,'name_1','Cindy Bussell| | Bussell'),(710,178,'email_2','hacker@liwdesign.co.uk'),(711,178,'text_3','We Found Holes In Your Website'),(712,178,'textarea_4','We are a group of highly qualified ethical hackers who scan tens of thousands of sites every day for critical vulnerabilities and patch them for a small fee.\r\n\r\nOn your site estatesatnuevo.com - we have discovered 5 critical vulnerabilities, each of which can give attackers full access to your site, databases and the server as a whole.\r\n\r\nPay $3000 (0.15 BTC) by visiting this site where you will be able to copy our bitcoin (btc) address or scan the QR code with your device https://www.blockchain.com/explorer/addresses/btc/3EHaAP48q9kkbRaQTrATuQ3UB14EFQQL55\r\n And after payment within 12 hours we will fix all the vulnerabilities on your site and you can sleep peacefully without worrying about the safety of your site and server.\r\n \r\nIf we are hired by well-known corporations, then we charge from $50000 for our services, so you are lucky that we offer you the same service for $3000 (0.15 BTC)'),(713,179,'name_1','Eric Jones| | Jones'),(714,179,'email_2','ericjonesmyemail@gmail.com'),(715,179,'text_3','Why not TALK with your leads?'),(716,179,'textarea_4','To the estatesatnuevo.com Owner!\r\n\r\nMy name’s Eric and I just found your site estatesatnuevo.com.\r\n\r\nIt’s got a lot going for it, but here’s an idea to make it even MORE effective.\r\n\r\nWeb Visitors Into Leads – CLICK HERE https://advanceleadgeneration.com for a live demo now.\r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nAnd once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. \r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(717,180,'name_1','Eric Jones| | Jones'),(718,180,'email_2','ericjonesmyemail@gmail.com'),(719,180,'text_3','Turn Surf-Surf-Surf into Talk Talk Talk'),(720,180,'textarea_4','To the estatesatnuevo.com Webmaster!\r\n\r\nMy name’s Eric and I just ran across your website at estatesatnuevo.com...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever.\r\n\r\nI have the solution:\r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works and even give it a try… it could be huge for your business.\r\n\r\nPlus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(721,181,'name_1','Eric Jones| | Jones'),(722,181,'email_2','ericjonesmyemail@gmail.com'),(723,181,'text_3','There they go…'),(724,181,'textarea_4','Dear estatesatnuevo.com Owner! my name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at estatesatnuevo.com.\r\n\r\n- They hang out for a minute to check it out.  “I’m interested… but… maybe…”\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(725,182,'name_1','Eric Jones| | Jones'),(726,182,'email_2','ericjonesmyemail@gmail.com'),(727,182,'text_3','how to turn eyeballs into phone calls'),(728,182,'textarea_4','Dear estatesatnuevo.com Owner. \r\n\r\nEric here with a quick thought about your website estatesatnuevo.com...\r\n\r\nI’m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI get it – it’s hard.  Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace.  You got the eyeball, but nothing else.\r\n\r\nHere’s a solution for you…\r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(729,183,'name_1','Eric Jones| | Jones'),(730,183,'email_2','ericjonesmyemail@gmail.com'),(731,183,'text_3','Who needs eyeballs, you need BUSINESS'),(732,183,'textarea_4','Dear estatesatnuevo.com Administrator.\r\n\r\nMy name’s Eric and I just came across your website - estatesatnuevo.com - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like estatesatnuevo.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Web Visitors Into Leads.\r\n\r\nWeb Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills.\r\n  \r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nNow it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(733,184,'name_1','Eric Jones| | Jones'),(734,184,'email_2','ericjonesmyemail@gmail.com'),(735,184,'text_3','Turn Surf-Surf-Surf into Talk Talk Talk'),(736,184,'textarea_4','Hi estatesatnuevo.com Owner! my name’s Eric and I just ran across your website at estatesatnuevo.com...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever.\r\n\r\nI have the solution:\r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works and even give it a try… it could be huge for your business.\r\n\r\nPlus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(737,185,'name_1','Adrian| | Adrian'),(738,185,'email_2','info@wicklownews.net'),(739,185,'text_3','Estates at Nuevo at Vidanta Nuevo Vallarta'),(740,185,'textarea_4','Morning \r\n\r\nDefrost frozen foods in minutes safely and naturally with our THAW KING™. \r\n\r\n50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED time.\r\n\r\nBuy now: https://thawking.co\r\n\r\nThanks and Best Regards, \r\n\r\nAdrian'),(741,186,'name_1','Sallie| | Sallie'),(742,186,'email_2','sallie@estatesatnuevo.com'),(743,186,'text_3','Sallie Baber'),(744,186,'textarea_4','New Multifunction Anti-theft Waterproof Sling Bag\r\n\r\nThe best ever SUPER Sling Bag: Drop-proof/Anti-theft/Scratch-resistant/USB Charging\r\n\r\n50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED time\r\n\r\nBuy now: https://fashiondaily.shop\r\n\r\nAll the best, \r\n\r\nSallie\r\nEstates at Nuevo at Vidanta Nuevo Vallarta'),(745,187,'name_1','Eric Jones| | Jones'),(746,187,'email_2','eric.jones.z.mail@gmail.com'),(747,187,'text_3','Why not TALK with your leads?'),(748,187,'textarea_4','Hi estatesatnuevo.com Owner!\r\n\r\nMy name’s Eric and I just found your site estatesatnuevo.com.\r\n\r\nIt’s got a lot going for it, but here’s an idea to make it even MORE effective.\r\n\r\nWeb Visitors Into Leads – CLICK HERE http://advanceleadgeneration.com for a live demo now.\r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nAnd once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. \r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(749,188,'name_1','Eric Jones| | Jones'),(750,188,'email_2','ericjonesmyemail@gmail.com'),(751,188,'text_3','Instead, congrats'),(752,188,'textarea_4','Hello estatesatnuevo.com Webmaster. \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for?  \r\n\r\nPart of my job is to check out websites and the work you’ve done with estatesatnuevo.com definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo when someone like me happens to find your site – maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know INSTANTLY that they’re interested – so that you can talk to that lead while they’re literally checking out estatesatnuevo.com.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business – and it gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately (and there’s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don’t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(753,189,'name_1','Davis Tolley| | Tolley'),(754,189,'email_2','hacker@pctour.com.sg'),(755,189,'text_3','Your Site Has Been Compromised'),(756,189,'textarea_4','We have hacked your website estatesatnuevo.com and extracted your databases. This was due to the security holes you had in your your site/server which have gained us remote control of pretty much everything that was on the server. \r\n\r\nOur team is mostly interested in customer, administrative, and employee information which we have extracted through your databases once we got remote control over the server. It still needs to be sorted out but it will be well-organized once finished. First, we will be going through the emails/sms information and contacting the recipient how you held in disregard about their information being exposed to a hacking group when you could have stopped it. This would be detrimental to your personal image with these relationships with these people. Lastly, now that we have information not only will we be monetizing off it with our methods but made public or sold to other people that will do whatever they wish with the information also after we are done.\r\n\r\nNow you can put a stop to this by paying a $3000 fee (0.11 BTC) in bitcoin to the address 3Any6DgGwds919fQuoSXB1VsGmZRQDkkWM We will be notified of payment which we will then delete the information we have obtained, patch the hole in the site/server which we got in and remove you from any future targeting in the future. You have 72 hours in doing so after viewing this message or the series of steps will commence. You can obtain bitcoin through such services such as paxful.com or do a search on bing.com'),(757,190,'name_1','Eric Jones| | Jones'),(758,190,'email_2','ericjonesmyemail@gmail.com'),(759,190,'text_3','Turn Surf-Surf-Surf into Talk Talk Talk'),(760,190,'textarea_4','Hello estatesatnuevo.com Administrator. my name’s Eric and I just ran across your website at estatesatnuevo.com...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever.\r\n\r\nI have the solution:\r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works and even give it a try… it could be huge for your business.\r\n\r\nPlus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(761,191,'name_1','Mohammad Biggs| | Biggs'),(762,191,'email_2','biggs.mohammad@googlemail.com'),(763,191,'text_3','To the estatesatnuevo.com Webmaster.'),(764,191,'textarea_4','Tired of paying for advertising that doesn\'t work? With our service, you can send your ad text to millions of website contact forms for one flat rate. People will read your message just like you\'re reading this one - and there are no per click costs. Get started today and watch your business grow. Get in touch with me via email here for additional information: : whermi41@mailsnail.xyz'),(765,192,'name_1','Matthew| | Matthew'),(766,192,'email_2','contact@l33jets.com'),(767,192,'text_3','Best Offer For estatesatnuevo.com'),(768,192,'textarea_4','Good day \r\n \r\nDefrost frozen foods in minutes safely and naturally with our THAW KING™. \r\n\r\n50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED \r\n\r\nBuy now: https://thawking.co\r\n \r\nTo your success, \r\n \r\nMatthew'),(769,193,'name_1','Eric Jones| | Jones'),(770,193,'email_2','ericjonesmyemail@gmail.com'),(771,193,'text_3','Your site – more leads?'),(772,193,'textarea_4','Hi estatesatnuevo.com Admin! this is Eric and I ran across estatesatnuevo.com a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next?  Do you get a lot of leads from your site, or at least enough to make you happy?\r\n\r\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment.\r\n\r\nHere’s an idea…\r\n \r\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site…\r\n \r\nYou can –\r\n  \r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\r\n  \r\nThat way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(773,194,'name_1','Eric Jones| | Jones'),(774,194,'email_2','ericjonesmyemail@gmail.com'),(775,194,'text_3','Strike when the iron’s hot'),(776,194,'textarea_4','Dear estatesatnuevo.com Administrator! I just found your site, quick question…\r\n\r\nMy name’s Eric, I found estatesatnuevo.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nWeb Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site.\r\n  \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron’s hot!\r\n\r\nCLICK HERE http://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(777,195,'name_1','Phillipp| | Phillipp'),(778,195,'email_2','phillipp@estatesatnuevo.com'),(779,195,'text_3','Phillipp Maclanachan'),(780,195,'textarea_4','Hi \r\n\r\nThe New Powerful LED Flashlight is The Perfect Flashlight For Any Situation!\r\n\r\nThe 3,000 Lumens &amp; Adjustable Zoom gives you the wide field of view and brightness other flashlights don’t have.\r\n\r\n50% OFF + Free Shipping!  Get it Now: https://linternaonline.shop\r\n\r\nSincerely, \r\n\r\nPhillipp'),(781,196,'name_1','Eric Jones| | Jones'),(782,196,'email_2','ericjonesmyemail@gmail.com'),(783,196,'text_3','Your site – more leads?'),(784,196,'textarea_4','Hello estatesatnuevo.com Administrator!\r\n\r\nThis is Eric and I ran across estatesatnuevo.com a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next?  Do you get a lot of leads from your site, or at least enough to make you happy?\r\n\r\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment.\r\n\r\nHere’s an idea…\r\n \r\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site…\r\n \r\nYou can –\r\n  \r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\r\n  \r\nThat way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(785,197,'name_1','Eric Jones| | Jones'),(786,197,'email_2','ericjonesmyemail@gmail.com'),(787,197,'text_3','There they go…'),(788,197,'textarea_4','Hi estatesatnuevo.com Webmaster.\r\n\r\nMy name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at estatesatnuevo.com.\r\n\r\n- They hang out for a minute to check it out.  “I’m interested… but… maybe…”\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(789,198,'name_1','Victorina| | Victorina'),(790,198,'email_2','victorina@estatesatnuevo.com'),(791,198,'text_3','Victorina Praed'),(792,198,'textarea_4','Hey there,\r\n\r\nIf you are one of the sufferers of the common problems nails have, then you are in luck! Our Toenail Clippers is here to help. It has a specially designed clip that can help those with troubles with winding nails, hard nails, two nails, nail cracks, deep nails, and thickened nails.\r\n\r\nWe are confident that our Toenail Clippers will provide you with the results you are looking for.\r\n\r\nGet yours today with 60% OFF: https://podiatristusa.com\r\n\r\nBest regards,\r\n\r\nVictorina'),(793,199,'name_1','Eric Jones| | Jones'),(794,199,'email_2','ericjonesmyemail@gmail.com'),(795,199,'text_3','Who needs eyeballs, you need BUSINESS'),(796,199,'textarea_4','Hello estatesatnuevo.com Owner.\r\n\r\nMy name’s Eric and I just came across your website - estatesatnuevo.com - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like estatesatnuevo.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Web Visitors Into Leads.\r\n\r\nWeb Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills.\r\n  \r\nCLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nNow it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(797,200,'name_1','Eric Jones| | Jones'),(798,200,'email_2','ericjonesmyemail@gmail.com'),(799,200,'text_3','instead, congrats'),(800,200,'textarea_4','Hi estatesatnuevo.com Admin. \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for?  \r\n\r\nPart of my job is to check out websites and the work you’ve done with estatesatnuevo.com definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo when someone like me happens to find your site – maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know INSTANTLY that they’re interested – so that you can talk to that lead while they’re literally checking out estatesatnuevo.com.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business – and it gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately (and there’s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don’t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(801,201,'name_1','Eric Jones| | Jones'),(802,201,'email_2','ericjonesmyemail@gmail.com'),(803,201,'text_3','Strike when the iron’s hot'),(804,201,'textarea_4','Dear estatesatnuevo.com Owner! I just found your site, quick question…\r\n\r\nMy name’s Eric, I found estatesatnuevo.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nWeb Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site.\r\n  \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron’s hot!\r\n\r\nCLICK HERE https://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(805,202,'name_1','Keenan Stingley| | Stingley'),(806,202,'email_2','keenan.stingley@outlook.com'),(807,202,'text_3','Transform Your Website\'s SEO with Premium Aged Domains from Odys - The Game-Changing Answer to Ranking Higher Instantly!'),(808,202,'textarea_4','As someone who has struggled to enhance my website\'s SEO position, I was excited to discover about Odys and their top-quality aged domains (https://bit.ly/40F6siC).\r\n\r\nIt\'s refreshing to know that each domain they offer goes through thorough due diligence to ensure its high standard and relevance.\r\nThe horror stories of businesses unknowingly purchasing domains that were previously used for malicious activity, resulting in significant penalties and setbacks, are all too familiar. \r\n\r\nThe fact that the domains offered by Odys are clean and penalty-free gives me confidence in my purchase. \r\nThe added bonus of high-quality backlinks is also a game-changer.\r\n\r\nIt can take months, if not years, to build up a strong backlink profile.\r\nWith a premium aged domain from Odys (https://bit.ly/40F6siC), I can instantly give my website the boost it needs to rank higher in search results and stand out in my niche.\r\n\r\nOverall, I think Odys is a great option for businesses looking to establish themselves as leaders in their industry.\r\nThe power of a premium aged domain cannot be overstated, and I am excited to see the positive impact it can have on my own website\'s growth.'),(809,203,'name_1','Eric Jones| | Jones'),(810,203,'email_2','ericjonesmyemail@gmail.com'),(811,203,'text_3','Your site – more leads?'),(812,203,'textarea_4','Hello estatesatnuevo.com Owner! this is Eric and I ran across estatesatnuevo.com a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next?  Do you get a lot of leads from your site, or at least enough to make you happy?\r\n\r\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment.\r\n\r\nHere’s an idea…\r\n \r\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site…\r\n \r\nYou can –\r\n  \r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\r\n  \r\nThat way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(813,204,'name_1','Asa| | Asa'),(814,204,'email_2','info@vdge.de'),(815,204,'text_3','Asa Ferres'),(816,204,'textarea_4','World\'s Best Neck Massager Get it Now 50% OFF + Free Shipping!\r\n\r\nWellness Enthusiasts! There has never been a better time to take care of your neck pain! \r\n\r\nOur clinical-grade TENS technology will ensure you have neck relief in as little as 20 minutes.\r\n\r\nGet Yours: https://hineck.shop\r\n\r\nBest,\r\n\r\nAsa\r\nEstates at Nuevo at Vidanta Nuevo Vallarta'),(817,205,'name_1','Eric Jones| | Jones'),(818,205,'email_2','ericjonesmyemail@gmail.com'),(819,205,'text_3','Who needs eyeballs, you need BUSINESS'),(820,205,'textarea_4','To the estatesatnuevo.com Admin.\r\n\r\nMy name’s Eric and I just came across your website - estatesatnuevo.com - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like estatesatnuevo.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Web Visitors Into Leads.\r\n\r\nWeb Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills.\r\n  \r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nNow it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(821,206,'name_1','Eric Jones| | Jones'),(822,206,'email_2','ericjonesmyemail@gmail.com'),(823,206,'text_3','Try this, get more leads'),(824,206,'textarea_4','Hi estatesatnuevo.com Admin! my name is Eric and I’m betting you’d like your website estatesatnuevo.com to generate more leads.\r\n\r\nHere’s how:\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at estatesatnuevo.com.\r\n\r\nWeb Visitors Into Leads – CLICK HERE https://advanceleadgeneration.com for a live demo now.\r\n\r\nAnd now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way.\r\n\r\nIf they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Web Visitors Into Leads and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them!\r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(825,207,'name_1','Aleisha| | Aleisha'),(826,207,'email_2','aleisha@estatesatnuevo.com'),(827,207,'text_3','Aleisha Reaves'),(828,207,'textarea_4','Hi,\r\n\r\nDo you ever worry about your belongings when you travel? I know I do.  Our Sling Bags are drop-proof, anti-theft, scratch-resistant, and come with a USB charging port. They\'re perfect for keeping your belongings safe when you\'re on the go.\r\n\r\nI think these would make an excellent addition to your travel gear. I\'m confident you\'ll love them as much as I do.\r\n\r\n50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED time\r\n\r\nBuy now: https://fashiondaily.shop\r\n\r\nThank You, \r\nAleisha'),(829,208,'name_1','Eric Jones| | Jones'),(830,208,'email_2','ericjonesmyemail@gmail.com'),(831,208,'text_3','Why not TALK with your leads?'),(832,208,'textarea_4','Hi estatesatnuevo.com Owner.\r\n\r\nMy name’s Eric and I just found your site estatesatnuevo.com.\r\n\r\nIt’s got a lot going for it, but here’s an idea to make it even MORE effective.\r\n\r\nWeb Visitors Into Leads – CLICK HERE http://jumboleadmagnet.com for a live demo now.\r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nAnd once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. \r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(833,209,'name_1','Eric Jones| | Jones'),(834,209,'email_2','ericjonesmyemail@gmail.com'),(835,209,'text_3','Turn Surf-Surf-Surf into Talk Talk Talk'),(836,209,'textarea_4','Hello estatesatnuevo.com Administrator! my name’s Eric and I just ran across your website at estatesatnuevo.com...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever.\r\n\r\nI have the solution:\r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works and even give it a try… it could be huge for your business.\r\n\r\nPlus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(837,210,'name_1','Siobhan Kashiwagi| | Kashiwagi'),(838,210,'email_2','siobhan.kashiwagi59@googlemail.com'),(839,210,'text_3','Dear estatesatnuevo.com Administrator! Looking for a reliable dedicated server provider?'),(840,210,'textarea_4','At PowerVPS https://tinyurl.com/2d4t9v82, we offer powerful dedicated servers starting from just $50.\r\n\r\n- Our VPS configurations can offer you up to 4 vCPUs cores and 8 GB RAM.\r\n\r\n- For those who need more power, our dedicated servers come with new processors like AMD Ryzen and EPYC, or Intel Xeon and Core i9, i7.\r\n\r\n- For those who require a bespoke solution, we offer custom-made dedicated servers with up to 64 CPU cores and 512 GB RAM.\r\n\r\nWhat are you waiting for? https://tinyurl.com/2d4t9v82 Choose PowerVPS for reliable and affordable dedicated servers.'),(841,211,'name_1','Eric Jones| | Jones'),(842,211,'email_2','ericjonesmyemail@gmail.com'),(843,211,'text_3','how to turn eyeballs into phone calls'),(844,211,'textarea_4','Hi estatesatnuevo.com Admin! \r\n\r\nEric here with a quick thought about your website estatesatnuevo.com...\r\n\r\nI’m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI get it – it’s hard.  Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace.  You got the eyeball, but nothing else.\r\n\r\nHere’s a solution for you…\r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(845,212,'name_1','Eric Jones| | Jones'),(846,212,'email_2','ericjonesmyemail@gmail.com'),(847,212,'text_3','Cool website!'),(848,212,'textarea_4','Dear estatesatnuevo.com Administrator!\r\n\r\nCool website!\r\n\r\nMy name’s Eric, and I just found your site - estatesatnuevo.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool.\r\n \r\nBut if you don’t mind me asking – after someone like me stumbles across estatesatnuevo.com, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace.\r\n\r\nNot good.\r\n\r\nHere’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.”\r\n\r\nYou can –\r\n  \r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nThat’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation.\r\n  \r\nThink about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nWouldn’t that be cool?\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(849,213,'name_1','Eric Jones| | Jones'),(850,213,'email_2','ericjonesmyemail@gmail.com'),(851,213,'text_3','Instead, congrats'),(852,213,'textarea_4','Hello estatesatnuevo.com Administrator! \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for?  \r\n\r\nPart of my job is to check out websites and the work you’ve done with estatesatnuevo.com definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo when someone like me happens to find your site – maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know INSTANTLY that they’re interested – so that you can talk to that lead while they’re literally checking out estatesatnuevo.com.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business – and it gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately (and there’s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don’t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(853,214,'name_1','Hong| | Hong'),(854,214,'email_2','hong.klinger@icloud.com'),(855,214,'text_3','Estates at Nuevo at Vidanta Nuevo Vallarta'),(856,214,'textarea_4','Get The Worlds Greatest Magic Sand Free Beach Mat!\r\n\r\nWatch sand, dirt &amp; dust disappear right before your eyes! It\'s perfect for beach, picnic, camping or hiking.\r\n\r\nAct Now And Receive A Special Discount For Our Magic Mat!\r\n\r\nGet Yours Here:  https://magicmat.biz\r\n\r\nKind Regards, \r\n \r\nHong'),(857,215,'name_1','Eric Jones| | Jones'),(858,215,'email_2','ericjonesmyemail@gmail.com'),(859,215,'text_3','There they go…'),(860,215,'textarea_4','Dear estatesatnuevo.com Webmaster! my name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at estatesatnuevo.com.\r\n\r\n- They hang out for a minute to check it out.  “I’m interested… but… maybe…”\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(861,216,'name_1','Eric Jones| | Jones'),(862,216,'email_2','ericjonesmyemail@gmail.com'),(863,216,'text_3','Cool website!'),(864,216,'textarea_4','To the estatesatnuevo.com Webmaster. Cool website!\r\n\r\nMy name’s Eric, and I just found your site - estatesatnuevo.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool.\r\n \r\nBut if you don’t mind me asking – after someone like me stumbles across estatesatnuevo.com, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace.\r\n\r\nNot good.\r\n\r\nHere’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.”\r\n\r\nYou can –\r\n  \r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nThat’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation.\r\n  \r\nThink about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nWouldn’t that be cool?\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(865,217,'name_1','Eric Jones| | Jones'),(866,217,'email_2','eric.jones.z.mail@gmail.com'),(867,217,'text_3','Why not TALK with your leads?'),(868,217,'textarea_4','Dear estatesatnuevo.com Webmaster!\r\n\r\nMy name’s Eric and I just found your site estatesatnuevo.com.\r\n\r\nIt’s got a lot going for it, but here’s an idea to make it even MORE effective.\r\n\r\nWeb Visitors Into Leads – CLICK HERE http://advanceleadgeneration.com for a live demo now.\r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nAnd once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. \r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(869,218,'name_1','Eric Jones| | Jones'),(870,218,'email_2','ericjonesmyemail@gmail.com'),(871,218,'text_3','Cool website!'),(872,218,'textarea_4','Dear estatesatnuevo.com Owner.\r\n\r\nCool website!\r\n\r\nMy name’s Eric, and I just found your site - estatesatnuevo.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool.\r\n \r\nBut if you don’t mind me asking – after someone like me stumbles across estatesatnuevo.com, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace.\r\n\r\nNot good.\r\n\r\nHere’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.”\r\n\r\nYou can –\r\n  \r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nThat’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation.\r\n  \r\nThink about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nWouldn’t that be cool?\r\n\r\nCLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(873,219,'name_1','Eric Jones| | Jones'),(874,219,'email_2','ericjonesmyemail@gmail.com'),(875,219,'text_3','There they go…'),(876,219,'textarea_4','Dear estatesatnuevo.com Owner. my name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at estatesatnuevo.com.\r\n\r\n- They hang out for a minute to check it out.  “I’m interested… but… maybe…”\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(877,220,'name_1','Eric Jones| | Jones'),(878,220,'email_2','ericjonesmyemail@gmail.com'),(879,220,'text_3','Who needs eyeballs, you need BUSINESS'),(880,220,'textarea_4','Dear estatesatnuevo.com Webmaster.\r\n\r\nMy name’s Eric and I just came across your website - estatesatnuevo.com - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like estatesatnuevo.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Web Visitors Into Leads.\r\n\r\nWeb Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills.\r\n  \r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nNow it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(881,221,'name_1','Eric Jones| | Jones'),(882,221,'email_2','ericjonesmyemail@gmail.com'),(883,221,'text_3','Turn Surf-Surf-Surf into Talk Talk Talk'),(884,221,'textarea_4','To the estatesatnuevo.com Administrator.\r\n\r\nMy name’s Eric and I just ran across your website at estatesatnuevo.com...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever.\r\n\r\nI have the solution:\r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works and even give it a try… it could be huge for your business.\r\n\r\nPlus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(885,222,'name_1','Eric Jones| | Jones'),(886,222,'email_2','ericjonesmyemail@gmail.com'),(887,222,'text_3','how to turn eyeballs into phone calls'),(888,222,'textarea_4','To the estatesatnuevo.com Admin. Eric here with a quick thought about your website estatesatnuevo.com...\r\n\r\nI’m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI get it – it’s hard.  Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace.  You got the eyeball, but nothing else.\r\n\r\nHere’s a solution for you…\r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(889,223,'name_1','Eric Jones| | Jones'),(890,223,'email_2','ericjonesmyemail@gmail.com'),(891,223,'text_3','instead, congrats'),(892,223,'textarea_4','Hello estatesatnuevo.com Administrator. \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for?  \r\n\r\nPart of my job is to check out websites and the work you’ve done with estatesatnuevo.com definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo when someone like me happens to find your site – maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know INSTANTLY that they’re interested – so that you can talk to that lead while they’re literally checking out estatesatnuevo.com.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business – and it gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately (and there’s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don’t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(893,224,'name_1','Eric Jones| | Jones'),(894,224,'email_2','ericjonesmyemail@gmail.com'),(895,224,'text_3','Your site – more leads?'),(896,224,'textarea_4','To the estatesatnuevo.com Admin. this is Eric and I ran across estatesatnuevo.com a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next?  Do you get a lot of leads from your site, or at least enough to make you happy?\r\n\r\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment.\r\n\r\nHere’s an idea…\r\n \r\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site…\r\n \r\nYou can –\r\n  \r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\r\n  \r\nThat way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(897,225,'name_1','Eric Jones| | Jones'),(898,225,'email_2','ericjonesmyemail@gmail.com'),(899,225,'text_3','Try this, get more leads'),(900,225,'textarea_4','To the estatesatnuevo.com Administrator! my name is Eric and I’m betting you’d like your website estatesatnuevo.com to generate more leads.\r\n\r\nHere’s how:\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at estatesatnuevo.com.\r\n\r\nWeb Visitors Into Leads – CLICK HERE http://advanceleadgeneration.com for a live demo now.\r\n\r\nAnd now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way.\r\n\r\nIf they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Web Visitors Into Leads and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them!\r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(901,226,'name_1','Eric Jones| | Jones'),(902,226,'email_2','ericjonesmyemail@gmail.com'),(903,226,'text_3','There they go…'),(904,226,'textarea_4','Dear estatesatnuevo.com Owner. my name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at estatesatnuevo.com.\r\n\r\n- They hang out for a minute to check it out.  “I’m interested… but… maybe…”\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(905,227,'name_1','Eric Jones| | Jones'),(906,227,'email_2','ericjonesmyemail@gmail.com'),(907,227,'text_3','Try this, get more leads'),(908,227,'textarea_4','To the estatesatnuevo.com Owner!\r\n\r\nMy name is Eric and I’m betting you’d like your website estatesatnuevo.com to generate more leads.\r\n\r\nHere’s how:\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at estatesatnuevo.com.\r\n\r\nWeb Visitors Into Leads – CLICK HERE http://jumboleadmagnet.com for a live demo now.\r\n\r\nAnd now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way.\r\n\r\nIf they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Web Visitors Into Leads and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them!\r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(909,228,'name_1','Dan Fallis| | Fallis'),(910,228,'email_2','dan.fallis72@msn.com'),(911,228,'text_3','Say Goodbye to Fad Diets and Hello to Our Custom 8-Week Keto Meal Plan - Try it for Free Today!'),(912,228,'textarea_4','Hey there! Are you tired of dieting and not seeing the results you want? Well, it\'s time to say goodbye to restrictive diets and hello to a custom 8-week keto meal plan tailored just for you!\r\n\r\nhttps://tinyurl.com/37y3rssx\r\n\r\nAre you ready to get started on your journey to a healthier you? Then look no further! Our Complete Custom 8-Week Keto Meal Plan is exactly what you need to achieve permanent fat loss and a complete health transformation without giving up your favorite foods or starving yourself.\r\n\r\nPicture yourself losing weight and feeling great while still being able to indulge in your favorite meals. With our custom 8-week keto meal plan, you\'ll know exactly what to eat to lose fat and get healthy, all while enjoying delicious, satisfying meals.\r\n\r\nWith our meal plan, you\'ll get a personalized approach that takes into account your body parameters and age, so you can rest assured that you\'re getting the perfect balance of nutrients to support your weight loss and health goals.\r\n\r\nAnd that\'s not all - with our Complete Custom 8-Week Keto Meal Plan, you\'ll also receive:\r\n- A complete keto food list\r\n- 77 keto dessert recipes\r\n- 100 keto carb recipes, so you can mix and match to create delicious meals that satisfy your cravings and support your weight loss goals.\r\n\r\nSo, what are you waiting for? Stop the endless cycle of fad diets and embrace a sustainable, enjoyable approach to weight loss. Get your custom 8-week keto meal plan today and start your journey towards a healthier, happier you!\r\n\r\nGET YOUR CUSTOM DIET NOW! https://tinyurl.com/37y3rssx'),(913,229,'name_1','Eric Jones| | Jones'),(914,229,'email_2','ericjonesmyemail@gmail.com'),(915,229,'text_3','Why not TALK with your leads?'),(916,229,'textarea_4','Dear estatesatnuevo.com Administrator.\r\n\r\nMy name’s Eric and I just found your site estatesatnuevo.com.\r\n\r\nIt’s got a lot going for it, but here’s an idea to make it even MORE effective.\r\n\r\nWeb Visitors Into Leads – CLICK HERE https://advanceleadgeneration.com for a live demo now.\r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nAnd once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. \r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(917,230,'name_1','Eric Jones| | Jones'),(918,230,'email_2','ericjonesmyemail@gmail.com'),(919,230,'text_3','Cool website!'),(920,230,'textarea_4','Hello estatesatnuevo.com Owner. Cool website!\r\n\r\nMy name’s Eric, and I just found your site - estatesatnuevo.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool.\r\n \r\nBut if you don’t mind me asking – after someone like me stumbles across estatesatnuevo.com, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace.\r\n\r\nNot good.\r\n\r\nHere’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.”\r\n\r\nYou can –\r\n  \r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nThat’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation.\r\n  \r\nThink about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nWouldn’t that be cool?\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(921,231,'name_1','Eric Jones| | Jones'),(922,231,'email_2','ericjonesmyemail@gmail.com'),(923,231,'text_3','Turn Surf-Surf-Surf into Talk Talk Talk'),(924,231,'textarea_4','Hi estatesatnuevo.com Owner! my name’s Eric and I just ran across your website at estatesatnuevo.com...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever.\r\n\r\nI have the solution:\r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works and even give it a try… it could be huge for your business.\r\n\r\nPlus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(925,232,'name_1','Eric Jones| | Jones'),(926,232,'email_2','ericjonesmyemail@gmail.com'),(927,232,'text_3','Why not TALK with your leads?'),(928,232,'textarea_4','Dear estatesatnuevo.com Owner!\r\n\r\nMy name’s Eric and I just found your site estatesatnuevo.com.\r\n\r\nIt’s got a lot going for it, but here’s an idea to make it even MORE effective.\r\n\r\nWeb Visitors Into Leads – CLICK HERE https://advanceleadgeneration.com for a live demo now.\r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nAnd once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. \r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(929,233,'name_1','Eric Jones| | Jones'),(930,233,'email_2','ericjonesmyemail@gmail.com'),(931,233,'text_3','Turn Surf-Surf-Surf into Talk Talk Talk'),(932,233,'textarea_4','Hello estatesatnuevo.com Webmaster. my name’s Eric and I just ran across your website at estatesatnuevo.com...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever.\r\n\r\nI have the solution:\r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works and even give it a try… it could be huge for your business.\r\n\r\nPlus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(933,234,'name_1','Lindsay Sherrard| | Sherrard'),(934,234,'email_2','sherrard.lindsay@gmail.com'),(935,234,'text_3','RE: estatesatnuevo.com Info'),(936,234,'textarea_4','*INFO SERVICE EXPIRATION FOR estatesatnuevo.com\r\n\r\nAttention: Accounts Payable / Domain Owner / Contact | Estates at Nuevo \r\n\r\nYour Domain: www.estatesatnuevo.com \r\nExpected Reply before: May 14, 2023.\r\n\r\nThis Notice for: www.estatesatnuevo.com will expire on May 14, 2023. \r\n\r\n\r\n\r\n*For details and to make a payment for estatesatnuevo.com services by credit card:\r\n\r\nVisit: https://hostingsrl.com/?web=estatesatnuevo.com\r\n\r\n\r\n05142023043620052 297 48 16'),(937,235,'name_1','Eric Jones| | Jones'),(938,235,'email_2','ericjonesmyemail@gmail.com'),(939,235,'text_3','Cool website!'),(940,235,'textarea_4','Dear estatesatnuevo.com Webmaster!\r\n\r\nCool website!\r\n\r\nMy name’s Eric, and I just found your site - estatesatnuevo.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool.\r\n \r\nBut if you don’t mind me asking – after someone like me stumbles across estatesatnuevo.com, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace.\r\n\r\nNot good.\r\n\r\nHere’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.”\r\n\r\nYou can –\r\n  \r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nThat’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation.\r\n  \r\nThink about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nWouldn’t that be cool?\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(941,236,'name_1','Eric Jones| | Jones'),(942,236,'email_2','ericjonesmyemail@gmail.com'),(943,236,'text_3','Strike when the iron’s hot'),(944,236,'textarea_4','Dear estatesatnuevo.com Admin! I just found your site, quick question…\r\n\r\nMy name’s Eric, I found estatesatnuevo.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nWeb Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site.\r\n  \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron’s hot!\r\n\r\nCLICK HERE http://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(945,237,'name_1','Eric Jones| | Jones'),(946,237,'email_2','ericjonesmyemail@gmail.com'),(947,237,'text_3','There they go…'),(948,237,'textarea_4','Dear estatesatnuevo.com Administrator.\r\n\r\nMy name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at estatesatnuevo.com.\r\n\r\n- They hang out for a minute to check it out.  “I’m interested… but… maybe…”\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(949,238,'name_1','Sven McCauley| | McCauley'),(950,238,'email_2','hacker@magnatherm.eu'),(951,238,'text_3','Your Website Is Vulnerable'),(952,238,'textarea_4','We have hacked your website estatesatnuevo.com and extracted your databases. This was due to the security holes you had in your your site/server which have gained us remote control of everything that was on the server. \r\n\r\nOur team is mostly interested in customer, administrative, and employee information which we have extracted through your databases once we got remote control over the server. It still needs to be sorted out but it will be well-organized once finished. First, we will be going through the emails/sms information and contacting the recipient how you held in disregard about their information being exposed to a hacking group when you could have stopped it. This would be detrimental to your personal image with these relationships with these people. Lastly, now that we have information not only will we be monetizing off it with our methods but made public or sold to other people that will do whatever they wish with the information also after we are done.\r\n\r\nNow you can put a stop to this by paying a $3000 fee (0.11 BTC) in bitcoin. You can find our address by visiting https://blockchair.com/bitcoin/address/31o29SdN5c5fpPuy4WvHzkyT37RHUSA36Q where you can copy and paste the address or scan the QR code. We will be notified of payment which we will then delete the information we have obtained, patch the hole in the site/server which we got in and remove you from any future targeting in the future. You have 72 hours in doing so after viewing this message or the series of steps will commence. You can obtain bitcoin through such services such as paxful.com or do a search on bing.com'),(953,239,'name_1','Eric Jones| | Jones'),(954,239,'email_2','ericjonesmyemail@gmail.com'),(955,239,'text_3','how to turn eyeballs into phone calls'),(956,239,'textarea_4','Hi estatesatnuevo.com Admin!\r\n\r\nEric here with a quick thought about your website estatesatnuevo.com...\r\n\r\nI’m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI get it – it’s hard.  Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace.  You got the eyeball, but nothing else.\r\n\r\nHere’s a solution for you…\r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(957,240,'name_1','Eric Jones| | Jones'),(958,240,'email_2','ericjonesmyemail@gmail.com'),(959,240,'text_3','Strike when the iron’s hot'),(960,240,'textarea_4','Hello estatesatnuevo.com Admin!\r\n\r\nI just found your site, quick question…\r\n\r\nMy name’s Eric, I found estatesatnuevo.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nWeb Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site.\r\n  \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron’s hot!\r\n\r\nCLICK HERE http://jumboleadmagnet.com to learn more about everything Web Visitors Into Leads can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(961,241,'name_1','Eric Jones| | Jones'),(962,241,'email_2','ericjonesmyemail@gmail.com'),(963,241,'text_3','instead, congrats'),(964,241,'textarea_4','Dear estatesatnuevo.com Admin! \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for?  \r\n\r\nPart of my job is to check out websites and the work you’ve done with estatesatnuevo.com definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo when someone like me happens to find your site – maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know INSTANTLY that they’re interested – so that you can talk to that lead while they’re literally checking out estatesatnuevo.com.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business – and it gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately (and there’s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don’t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(965,242,'name_1','Ahmad Denehy| | Denehy'),(966,242,'email_2','ahmad.denehy58@outlook.com'),(967,242,'text_3','Hello estatesatnuevo.com Administrator!'),(968,242,'textarea_4','No more gambling with your advertising dollars, we guarantee results! Check out: https://bit.ly/45C9SWD'),(969,243,'name_1','Eric Jones| | Jones'),(970,243,'email_2','ericjonesmyemail@gmail.com'),(971,243,'text_3','There they go…'),(972,243,'textarea_4','Hi estatesatnuevo.com Webmaster. my name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at estatesatnuevo.com.\r\n\r\n- They hang out for a minute to check it out.  “I’m interested… but… maybe…”\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(973,244,'name_1','Eric Jones| | Jones'),(974,244,'email_2','ericjonesmyemail@gmail.com'),(975,244,'text_3','Strike when the iron’s hot'),(976,244,'textarea_4','To the estatesatnuevo.com Admin! I just found your site, quick question…\r\n\r\nMy name’s Eric, I found estatesatnuevo.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nWeb Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site.\r\n  \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron’s hot!\r\n\r\nCLICK HERE https://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(977,245,'name_1','Eric Jones| | Jones'),(978,245,'email_2','eric.jones.z.mail@gmail.com'),(979,245,'text_3','Why not TALK with your leads?'),(980,245,'textarea_4','Hello estatesatnuevo.com Administrator!\r\n\r\nMy name’s Eric and I just found your site estatesatnuevo.com.\r\n\r\nIt’s got a lot going for it, but here’s an idea to make it even MORE effective.\r\n\r\nWeb Visitors Into Leads – CLICK HERE http://advanceleadgeneration.com for a live demo now.\r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nAnd once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. \r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(981,246,'name_1','Eric Jones| | Jones'),(982,246,'email_2','ericjonesmyemail@gmail.com'),(983,246,'text_3','Who needs eyeballs, you need BUSINESS'),(984,246,'textarea_4','Hello estatesatnuevo.com Administrator!\r\n\r\nMy name’s Eric and I just came across your website - estatesatnuevo.com - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like estatesatnuevo.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Web Visitors Into Leads.\r\n\r\nWeb Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills.\r\n  \r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nNow it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(985,247,'name_1','Flynn| | Flynn'),(986,247,'email_2','flynn@estatesatnuevo.com'),(987,247,'text_3','Flynn Saul'),(988,247,'textarea_4','Hello \r\n\r\nI wanted to reach out and let you know about our new dog harness. It\'s really easy to put on and take off - in just 2 seconds - and it\'s personalized for each dog. \r\nPlus, we offer a lifetime warranty so you can be sure your pet is always safe and stylish.\r\n\r\nWe\'ve had a lot of success with it so far and I think your dog would love it. \r\n\r\nGet yours today with 50% OFF:   https://caredogbest.shop\r\n\r\nFREE Shipping - TODAY ONLY! \r\n\r\nCheers, \r\n\r\nFlynn'),(989,248,'name_1','Eric Jones| | Jones'),(990,248,'email_2','ericjonesmyemail@gmail.com'),(991,248,'text_3','Who needs eyeballs, you need BUSINESS'),(992,248,'textarea_4','Hi estatesatnuevo.com Admin.\r\n\r\nMy name’s Eric and I just came across your website - estatesatnuevo.com - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like estatesatnuevo.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Web Visitors Into Leads.\r\n\r\nWeb Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills.\r\n  \r\nCLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nNow it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(993,249,'name_1','Quinton Leggo| | Leggo'),(994,249,'email_2','leggo.quinton@gmail.com'),(995,249,'text_3','Secure Your Financial Future with a Free Crypto Wallet!'),(996,249,'textarea_4','Hi,\r\n\r\nAre you ready to embark on an exciting journey into the world of cryptocurrency? We are thrilled to invite you to register for a free crypto wallet, where you can securely store and manage your digital assets.\r\n\r\nHere at Binance, we believe that cryptocurrency has the potential to revolutionize the way we transact, invest, and build wealth. Whether you\'re a seasoned crypto enthusiast or just curious about this emerging technology, our free crypto wallet is the perfect starting point to explore the possibilities and take control of your financial future.\r\n\r\nWhy should you register for our free crypto wallet?\r\n\r\n► Secure and User-Friendly: Our wallet incorporates state-of-the-art security features to safeguard your digital assets. With a user-friendly interface, it\'s easy to navigate, even if you\'re new to the world of cryptocurrencies.\r\n\r\n► Convenience: Enjoy instant access to your funds anytime, anywhere. Say goodbye to the limitations of traditional banking hours and complicated procedures. Our wallet is designed to simplify your crypto experience.\r\n\r\n► Versatile Asset Support: Store and manage a wide range of cryptocurrencies in one place. Bitcoin, Ethereum, Ripple, Litecoin, and many more are supported, ensuring you have the flexibility to diversify your portfolio.\r\n\r\n► Peace of Mind: We prioritize the safety and security of your funds. Our wallet utilizes advanced encryption techniques, two-factor authentication, and cold storage to provide you with peace of mind and protect your assets from unauthorized access.\r\n\r\n► Exclusive Benefits: As a registered user, you\'ll gain access to exclusive benefits, including early access to new features, educational resources, and exclusive promotions. Stay ahead of the curve and maximize your crypto potential.\r\n\r\nDon\'t miss out on this incredible opportunity to step into the world of cryptocurrencies. Register for your free crypto wallet today and take control of your financial destiny!\r\n\r\nClick the link below to create your free crypto wallet:\r\nGet Started here &gt;&gt;&gt; https://bit.ly/cryptowalletreg\r\n\r\n* Limited Time $100 FREE BONUS for any new account that Completes Account Verification. (Expires on 15th June 2023)\r\n\r\nJoin the millions of individuals who are already harnessing the power of cryptocurrencies. Secure your financial future with our free crypto wallet today!\r\n\r\nTo your financial success\r\n\r\nRonald D\r\n99 Manhatten Road, TX\r\n87845\r\n=====\r\nClick here to unsubscribe\r\nhttps://bit.ly/stop69'),(997,250,'name_1','Eric Jones| | Jones'),(998,250,'email_2','ericjonesmyemail@gmail.com'),(999,250,'text_3','Why not TALK with your leads?'),(1000,250,'textarea_4','Hello estatesatnuevo.com Webmaster.\r\n\r\nMy name’s Eric and I just found your site estatesatnuevo.com.\r\n\r\nIt’s got a lot going for it, but here’s an idea to make it even MORE effective.\r\n\r\nWeb Visitors Into Leads – CLICK HERE http://jumboleadmagnet.com for a live demo now.\r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nAnd once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. \r\nWeb Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(1001,251,'name_1','Ashleigh Guess| | Guess'),(1002,251,'email_2','contact@webscraft.live'),(1003,251,'text_3','Buy Website Traffic'),(1004,251,'textarea_4','Dear Sir,\r\n\r\nWe provide country targeted website visitors and social media services.\r\nWebsite Traffic, SEO Services, Backlinks, Classified ADS, Social Followers\r\nGoogle Reviews, Trustpilot Reviews etc\r\n\r\nIf you are interested then please visit our website.\r\n\r\nhttps://www.websboost.com/\r\n\r\n\r\nThanks\r\nWebs Boost'),(1005,252,'name_1','Eric Jones| | Jones'),(1006,252,'email_2','ericjonesmyemail@gmail.com'),(1007,252,'text_3','Your site – more leads?'),(1008,252,'textarea_4','Dear estatesatnuevo.com Admin.\r\n\r\nThis is Eric and I ran across estatesatnuevo.com a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next?  Do you get a lot of leads from your site, or at least enough to make you happy?\r\n\r\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment.\r\n\r\nHere’s an idea…\r\n \r\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site…\r\n \r\nYou can –\r\n  \r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\r\n  \r\nThat way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=estatesatnuevo.com'),(1009,253,'name_1','Sherry Matthew| | Matthew'),(1010,253,'email_2','contact@webscraft.live'),(1011,253,'text_3','Get Google Visitors'),(1012,253,'textarea_4','We provide country targeted website visitors and social media services.\r\nWebsite Traffic, SEO Services, Backlinks, Classified ADS, Social Followers\r\nGoogle Reviews, Trustpilot Reviews etc\r\n\r\nIf you are interested then please visit our website.\r\n\r\nhttps://www.websboost.com/\r\n\r\nThanks\r\nWebs Boost'),(1013,254,'name_1','Lucille Bartel| | Bartel'),(1014,254,'email_2','contact@webscraft.live'),(1015,254,'text_3','Buy Website Traffic'),(1016,254,'textarea_4','GET USA, CANADA, UNITED KINGDOM AND WORLDWIDE TARGETED WEBSITE TRAFFIC\r\n\r\n30% Extra On Orders $100 and Above\r\n\r\nBOOST YOUR WEBSITE VISITORS FROM ANY COUNTRY\r\nYOU WANT WITH TARGETED NICHE.\r\n\r\nVISIT :  https://cutt.ly/cweRe2fA\r\n\r\nThanks\r\nWebs Boost'),(1017,255,'name_1','Emmanuel Espinal| | Espinal'),(1018,255,'email_2','contact@webscraft.live'),(1019,255,'text_3','Get Responssive Website Design'),(1020,255,'textarea_4','We will create a custom website design tailored to your specific business needs,\r\nwhich are of the highest quality at affordable prices.\r\n\r\nFREE BASIC MOCK-UP DESIGN BEFORE WORK JUST MESSAGE ME\r\n\r\nServices Offered by us :-\r\n\r\n1. Website Design\r\n2. Graphics Design\r\n3. Seo Services\r\n4. eCommerce Development\r\n5. Mobile App development\r\n6. Explainer Video\r\n7. Article Writing\r\n8. Website Fixing\r\n9. Website Traffic\r\n\r\nAre you looking for a new website, or you want to revamp your old one to a modern,\r\nfresh look with a responsive mobile layout? We are here to help you out.\r\n\r\nJust Reply to this message or contact us @ WebsCraft.com\r\n\r\nOr Just Message Me in Whatsapp https://wa.me/qr/S5JFE6ID6XAWA1\r\n\r\nThanks\r\nWebs Craft'),(1021,256,'name_1','Eric Jones| | Jones'),(1022,256,'email_2','ericjonesmyemail@gmail.com'),(1023,256,'text_3','Your site – more leads?'),(1024,256,'textarea_4','Hi estatesatnuevo.com Administrator. this is Eric and I ran across estatesatnuevo.com a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next?  Do you get a lot of leads from your site, or at least enough to make you happy?\r\n\r\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment.\r\n\r\nHere’s an idea…\r\n \r\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site…\r\n \r\nYou can –\r\n  \r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\r\n  \r\nThat way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(1025,257,'name_1','Nadia| | Nadia'),(1026,257,'email_2','nadia@bohn.medicopostura.com'),(1027,257,'text_3','Nadia Bohn'),(1028,257,'textarea_4','Hello there \r\n\r\nLooking to improve your posture and live a healthier life? Our Medico Postura™ Body Posture Corrector is here to help!\r\n\r\nExperience instant posture improvement with Medico Postura™. This easy-to-use device can be worn anywhere, anytime – at home, work, or even while you sleep.\r\n\r\nMade from lightweight, breathable fabric, it ensures comfort all day long.\r\n\r\nGrab it today at a fantastic 60% OFF: https://medicopostura.com\r\n\r\nPlus, enjoy FREE shipping for today only!\r\n\r\nDon\'t miss out on this amazing deal. Get yours now and start transforming your posture!\r\n\r\nThanks for your time, \r\n\r\nNadia'),(1029,258,'name_1','Pete Fairbank| | Fairbank'),(1030,258,'email_2','pete.fairbank53@gmail.com'),(1031,258,'text_3','To the estatesatnuevo.com Webmaster!'),(1032,258,'textarea_4','Do you do contact form blasting to get sales? If you do I can provide you with lists of millions of verified contact forms. If you don\'t I can show you how I did it on your website contact form just now and it\'s easy for you to do it too. For details add me on Skype and let\'s chat, my ID is:  live:.cid.7aad4787a72a11d0'),(1033,259,'name_1','Eric Jones| | Jones'),(1034,259,'email_2','ericjonesmyemail@gmail.com'),(1035,259,'text_3','Instead, congrats'),(1036,259,'textarea_4','Hi estatesatnuevo.com Admin. \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for?  \r\n\r\nPart of my job is to check out websites and the work you’ve done with estatesatnuevo.com definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo when someone like me happens to find your site – maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know INSTANTLY that they’re interested – so that you can talk to that lead while they’re literally checking out estatesatnuevo.com.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business – and it gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately (and there’s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don’t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(1037,260,'name_1','Mitzi Saulsbury| | Saulsbury'),(1038,260,'email_2','contact@webscraft.live'),(1039,260,'text_3','WordPress malware removal service'),(1040,260,'textarea_4','Never worry about your WordPress security again.\r\nWe are experts in cleaning, securing, fixing and maintaining WordPress websites.\r\nWe quickly clean hacked websites\r\n\r\nWordPress hardening\r\nOngoing WordPress protection\r\nEnterprise-level 24/7 WordPress security\r\n\r\nWe charge a one-off $75 to cleanup a hack on any WordPress site, or can provide \r\ncomplete maintenance and security on our maintenance plans. We start immediately.\r\n\r\nReply to the message if you are interested\r\n\r\nOr Live chat with us below link\r\n\r\nhttps://tawk.to/chat/646e623aad80445890eeea92/1h17ive8p\r\n\r\nOr Whatsapp US : https://wa.me/qr/S5JFE6ID6XAWA1\r\n\r\nThanks'),(1041,261,'name_1','Wilhelmina Casanova| | Casanova'),(1042,261,'email_2','contact@webscraft.live'),(1043,261,'text_3','Get Responssive Website Design'),(1044,261,'textarea_4','We will create a custom website design tailored to your specific business needs,\r\nwhich are of the highest quality at affordable prices.\r\n\r\nFREE BASIC MOCK-UP DESIGN BEFORE WORK JUST MESSAGE ME\r\n\r\nServices Offered by us :-\r\n\r\n1. Website Design\r\n2. Graphics Design\r\n3. Seo Services\r\n4. eCommerce Development\r\n5. Mobile App development\r\n6. Explainer Video\r\n7. Article Writing\r\n8. Website Fixing\r\n9. Website Traffic\r\n\r\nAre you looking for a new website, or you want to revamp your old one to a modern,\r\nfresh look with a responsive mobile layout? We are here to help you out.\r\n\r\nJust Reply to this message\r\n\r\nOr Just Message Me in Whatsapp https://wa.me/qr/S5JFE6ID6XAWA1\r\n\r\nThanks'),(1045,262,'name_1','Tammara Camacho| | Camacho'),(1046,262,'email_2','contact@webscraft.live'),(1047,262,'text_3','Boost Your Website Ranking'),(1048,262,'textarea_4','Buy Backlinks With High Pagerank, High Domain Authority to Boost Your SERPs Real Quick!\r\nAfter Google updates for high Google ranking, we require quality backlinks \r\nAnd we will provide high quality backlinks.\r\n\r\nWe are expert in link building and we know how to build quality link that Google loves.\r\n\r\nWhy backlinks important for you?\r\n\r\nImproves Organic Ranking and Website visitors.\r\nFaster Indexing\r\nBuild Your Brand Authority\r\nLong Term Resource Links\r\n\r\nWhat exactly are you getting?\r\n\r\nHigh DA PA Backlinks\r\nGoogle updates safe\r\n100% manual work\r\nDripfed Links\r\n\r\nOrder Here https://buytraffics.net/order/backlinkservices.php\r\n\r\nThanks\r\nBuy Traffics'),(1049,263,'name_1','Susanna Mcgrath| | Mcgrath'),(1050,263,'email_2','contact@webscraft.live'),(1051,263,'text_3','Get Responssive Website Design'),(1052,263,'textarea_4','We will create a custom website design tailored to your specific business needs,\r\nwhich are of the highest quality at affordable prices.\r\n\r\nFREE BASIC MOCK-UP DESIGN BEFORE WORK JUST MESSAGE ME\r\n\r\nServices Offered by us :-\r\n\r\n1. Website Design\r\n2. Graphics Design\r\n3. Seo Services\r\n4. eCommerce Development\r\n5. Mobile App development\r\n6. Explainer Video\r\n7. Article Writing\r\n8. Website Fixing\r\n9. Website Traffic\r\n\r\nAre you looking for a new website, or you want to revamp your old one to a modern,\r\nfresh look with a responsive mobile layout? We are here to help you out.\r\n\r\nJust Reply to this message\r\n\r\nOr Live Chat with us : https://tawk.to/chat/646e623aad80445890eeea92/1h17ive8p\r\n\r\nOr Just Message Me in Whatsapp https://wa.me/qr/S5JFE6ID6XAWA1\r\n\r\nThanks'),(1053,264,'name_1','Winnie Millington| | Millington'),(1054,264,'email_2','contact@webscraft.live'),(1055,264,'text_3','Get Google Visitors'),(1056,264,'textarea_4','Get SEO services to drive organic traffic and boost \r\nyour online visibility in major search engines. \r\nIncrease your revenue with our proven \r\nstrategies and experienced team.\r\n\r\nWe provide backlinks with DA PA only manually.\r\nReport every 10 Days in Exel Sheet\r\n\r\nPlease check https://buytraffics.net/order/package.php\r\n\r\nThanks\r\nBuy Traffics'),(1057,265,'name_1','Eric Jones| | Jones'),(1058,265,'email_2','ericjonesmyemail@gmail.com'),(1059,265,'text_3','Strike when the iron’s hot'),(1060,265,'textarea_4','Hi estatesatnuevo.com Owner! I just found your site, quick question…\r\n\r\nMy name’s Eric, I found estatesatnuevo.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nWeb Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site.\r\n  \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron’s hot!\r\n\r\nCLICK HERE https://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(1061,266,'name_1','Michelle Fife| | Fife'),(1062,266,'email_2','webscrafts@gmail.com'),(1063,266,'text_3','Dear estatesatnuevo.com Webmaster!'),(1064,266,'textarea_4','We will create a custom website design tailored to your specific business needs,\r\nwhich are of the highest quality at affordable prices.\r\n\r\nFREE BASIC MOCK-UP DESIGN BEFORE WORK JUST MESSAGE ME\r\n\r\nServices Offered by us :-\r\n\r\n1. Website Design\r\n2. Graphics Design\r\n3. Seo Services\r\n4. eCommerce Development\r\n5. Mobile App development\r\n6. Explainer Video\r\n7. Article Writing\r\n8. Website Fixing\r\n9. Website Traffic\r\n\r\nAre you looking for a new website, or you want to revamp your old one to a modern,\r\nfresh look with a responsive mobile layout? We are here to help you out.\r\n\r\nJust Reply to this message or email us webscrafts@gmail.com\r\n\r\nThanks'),(1065,267,'name_1','Arlie Bustos| | Bustos'),(1066,267,'email_2','arlie.bustos@gmail.com'),(1067,267,'text_3','To the estatesatnuevo.com Webmaster!'),(1068,267,'textarea_4','I\'m messaging you via your contact form on your website at estatesatnuevo.com. So by reading this message you just proved that contact form advertising works! Want to blast your ad to millions of contact forms? Or maybe you prefer a more targeted approach and only want to blast your ad out to websites in certain business verticals? We charge $99 to blast your ad to 1 million contact forms. Volume discounts are available. I have over 35 million contact forms. Let\'s discuss, contact me via Skype here:  live:.cid.7aad4787a72a11d0'),(1069,268,'name_1','Eric Jones| | Jones'),(1070,268,'email_2','ericjonesmyemail@gmail.com'),(1071,268,'text_3','how to turn eyeballs into phone calls'),(1072,268,'textarea_4','Hi estatesatnuevo.com Webmaster! \r\n\r\nEric here with a quick thought about your website estatesatnuevo.com...\r\n\r\nI’m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI get it – it’s hard.  Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace.  You got the eyeball, but nothing else.\r\n\r\nHere’s a solution for you…\r\n\r\nWeb Visitors Into Leads is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com'),(1073,269,'name_1','Eric Jones| | Jones'),(1074,269,'email_2','ericjonesmyemail@gmail.com'),(1075,269,'text_3','Who needs eyeballs, you need BUSINESS'),(1076,269,'textarea_4','Hello estatesatnuevo.com Admin!\r\n\r\nMy name’s Eric and I just came across your website - estatesatnuevo.com - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like estatesatnuevo.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Web Visitors Into Leads.\r\n\r\nWeb Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills.\r\n  \r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nNow it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=estatesatnuevo.com');
/*!40000 ALTER TABLE `wp_weforms_entrymeta` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wp_weforms_entrymeta` with 1076 row(s)
--

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

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

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

LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','https://estatesatnuevo.com','yes'),(2,'home','https://estatesatnuevo.com','yes'),(3,'blogname','Estates at Nuevo','yes'),(4,'blogdescription','','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','ljhelman@hotmail.com','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:157:{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:13:\"^attribution$\";s:36:\"index.php?bg_attribution=attribution\";s:21:\"^attribution-staging$\";s:44:\"index.php?bg_attribution=attribution-staging\";s:40:\"./(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:35:\"./(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:16:\"./(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:28:\"./(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:10:\"./(.+?)/?$\";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:44:\"crio_page_header/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:54:\"crio_page_header/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:74:\"crio_page_header/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"crio_page_header/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"crio_page_header/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:50:\"crio_page_header/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"crio_page_header/([^/]+)/embed/?$\";s:49:\"index.php?crio_page_header=$matches[1]&embed=true\";s:37:\"crio_page_header/([^/]+)/trackback/?$\";s:43:\"index.php?crio_page_header=$matches[1]&tb=1\";s:45:\"crio_page_header/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?crio_page_header=$matches[1]&paged=$matches[2]\";s:52:\"crio_page_header/([^/]+)/comment-page-([0-9]{1,})/?$\";s:56:\"index.php?crio_page_header=$matches[1]&cpage=$matches[2]\";s:41:\"crio_page_header/([^/]+)(?:/([0-9]+))?/?$\";s:55:\"index.php?crio_page_header=$matches[1]&page=$matches[2]\";s:33:\"crio_page_header/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"crio_page_header/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"crio_page_header/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"crio_page_header/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"crio_page_header/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"crio_page_header/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:58:\"template_location/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?template_locations=$matches[1]&feed=$matches[2]\";s:53:\"template_location/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?template_locations=$matches[1]&feed=$matches[2]\";s:34:\"template_location/([^/]+)/embed/?$\";s:51:\"index.php?template_locations=$matches[1]&embed=true\";s:46:\"template_location/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?template_locations=$matches[1]&paged=$matches[2]\";s:28:\"template_location/([^/]+)/?$\";s:40:\"index.php?template_locations=$matches[1]\";s:42:\"bg_attribution/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"bg_attribution/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"bg_attribution/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"bg_attribution/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"bg_attribution/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"bg_attribution/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"bg_attribution/([^/]+)/embed/?$\";s:47:\"index.php?bg_attribution=$matches[1]&embed=true\";s:35:\"bg_attribution/([^/]+)/trackback/?$\";s:41:\"index.php?bg_attribution=$matches[1]&tb=1\";s:43:\"bg_attribution/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?bg_attribution=$matches[1]&paged=$matches[2]\";s:50:\"bg_attribution/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?bg_attribution=$matches[1]&cpage=$matches[2]\";s:39:\"bg_attribution/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?bg_attribution=$matches[1]&page=$matches[2]\";s:31:\"bg_attribution/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"bg_attribution/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"bg_attribution/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"bg_attribution/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"bg_attribution/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"bg_attribution/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:55:\"bg-block-types/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?bg_block_type=$matches[1]&feed=$matches[2]\";s:50:\"bg-block-types/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?bg_block_type=$matches[1]&feed=$matches[2]\";s:31:\"bg-block-types/([^/]+)/embed/?$\";s:46:\"index.php?bg_block_type=$matches[1]&embed=true\";s:43:\"bg-block-types/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?bg_block_type=$matches[1]&paged=$matches[2]\";s:25:\"bg-block-types/([^/]+)/?$\";s:35:\"index.php?bg_block_type=$matches[1]\";s:36:\"bg-block/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"bg-block/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"bg-block/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"bg-block/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"bg-block/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"bg-block/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:25:\"bg-block/([^/]+)/embed/?$\";s:41:\"index.php?bg_block=$matches[1]&embed=true\";s:29:\"bg-block/([^/]+)/trackback/?$\";s:35:\"index.php?bg_block=$matches[1]&tb=1\";s:37:\"bg-block/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?bg_block=$matches[1]&paged=$matches[2]\";s:44:\"bg-block/([^/]+)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?bg_block=$matches[1]&cpage=$matches[2]\";s:33:\"bg-block/([^/]+)(?:/([0-9]+))?/?$\";s:47:\"index.php?bg_block=$matches[1]&page=$matches[2]\";s:25:\"bg-block/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:35:\"bg-block/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:55:\"bg-block/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"bg-block/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"bg-block/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"bg-block/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=97&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:8:{i:0;s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";i:1;s:35:\"boldgrid-backup/boldgrid-backup.php\";i:2;s:39:\"boldgrid-easy-seo/boldgrid-easy-seo.php\";i:3;s:47:\"boldgrid-inspirations/boldgrid-inspirations.php\";i:4;s:29:\"crio-premium/crio-premium.php\";i:5;s:63:\"post-and-page-builder-premium/post-and-page-builder-premium.php\";i:6;s:47:\"post-and-page-builder/post-and-page-builder.php\";i:7;s:19:\"weforms/weforms.php\";}','yes'),(177,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(168,'recently_activated','a:0:{}','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','crio','yes'),(41,'stylesheet','crio','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','53496','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:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(77,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(79,'uninstall_plugins','a:0:{}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','97','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','0','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','3','yes'),(90,'show_comments_cookies_opt_in','1','yes'),(91,'admin_email_lifespan','1702925523','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,'initial_db_version','49752','yes'),(99,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(100,'fresh_site','0','yes'),(101,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(106,'sidebars_widgets','a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:9:\"sidebar-2\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'),(107,'cron','a:8:{i:1687376761;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:1687380442;a:1:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1687385970;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:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s: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:1687405919;a:1:{s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1687450410;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1687450412;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:1687731570;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'),(108,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'recovery_keys','a:0:{}','yes'),(119,'theme_mods_twentytwentyone','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1648062377;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:9:\"sidebar-2\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}}}}','yes'),(120,'https_detection_errors','a:0:{}','yes'),(121,'boldgrid_settings','a:2:{s:7:\"library\";a:4:{s:29:\"crio-premium/crio-premium.php\";s:8:\"2.13.3.0\";s:47:\"boldgrid-inspirations/boldgrid-inspirations.php\";s:8:\"2.13.9.0\";s:47:\"post-and-page-builder/post-and-page-builder.php\";s:8:\"2.13.9.0\";s:35:\"boldgrid-backup/boldgrid-backup.php\";s:9:\"2.13.10.0\";}s:15:\"plugins_checked\";a:6:{s:47:\"boldgrid-inspirations/boldgrid-inspirations.php\";a:4:{s:5:\"2.6.3\";i:1648062393;s:5:\"2.6.5\";i:1649444304;s:5:\"2.7.1\";i:1658929028;s:5:\"2.7.4\";i:1668782181;}s:47:\"post-and-page-builder/post-and-page-builder.php\";a:4:{s:6:\"1.17.1\";i:1648322649;s:6:\"1.18.0\";i:1658928991;s:6:\"1.20.1\";i:1658929028;s:6:\"1.21.3\";i:1668782181;}s:63:\"post-and-page-builder-premium/post-and-page-builder-premium.php\";a:2:{s:5:\"1.0.5\";i:1658928991;s:5:\"1.0.6\";i:1668782181;}s:35:\"boldgrid-backup/boldgrid-backup.php\";a:4:{s:7:\"1.14.14\";i:1648322649;s:6:\"1.15.0\";i:1658928991;s:6:\"1.15.2\";i:1658929028;s:6:\"1.15.4\";i:1668782181;}s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";a:1:{s:5:\"1.5.9\";i:1668782181;}s:39:\"boldgrid-easy-seo/boldgrid-easy-seo.php\";a:1:{s:6:\"1.6.10\";i:1668782181;}}}','yes'),(122,'boldgrid_backup_id','fa8057ab','no'),(123,'boldgrid_backup_settings','a:15:{s:8:\"schedule\";a:10:{s:10:\"dow_sunday\";i:0;s:10:\"dow_monday\";i:0;s:11:\"dow_tuesday\";i:0;s:13:\"dow_wednesday\";i:0;s:12:\"dow_thursday\";i:0;s:10:\"dow_friday\";i:0;s:12:\"dow_saturday\";i:0;s:5:\"tod_h\";i:4;s:5:\"tod_m\";i:39;s:5:\"tod_a\";s:2:\"AM\";}s:15:\"retention_count\";i:5;s:18:\"notification_email\";s:20:\"ljhelman@hotmail.com\";s:13:\"notifications\";a:3:{s:6:\"backup\";i:1;s:7:\"restore\";i:1;s:10:\"site_check\";b:1;}s:11:\"auto_backup\";i:1;s:13:\"auto_rollback\";i:1;s:6:\"remote\";a:1:{s:5:\"local\";a:1:{s:7:\"enabled\";b:1;}}s:14:\"exclude_tables\";a:0:{}s:24:\"folder_exclusion_include\";s:18:\"WPCORE,/wp-content\";s:24:\"folder_exclusion_exclude\";s:17:\".git,node_modules\";s:10:\"site_check\";a:4:{s:7:\"enabled\";b:1;s:6:\"logger\";b:1;s:13:\"auto_recovery\";b:0;s:8:\"interval\";i:15;}s:10:\"encrypt_db\";b:0;s:11:\"auto_update\";a:3:{s:4:\"days\";i:0;s:7:\"plugins\";a:1:{s:7:\"default\";s:1:\"0\";}s:6:\"themes\";a:1:{s:7:\"default\";s:1:\"0\";}}s:16:\"backup_directory\";s:29:\"/home/nspeci6/boldgrid_backup\";s:11:\"cron_secret\";s:64:\"d37d6f4dbbd161b576cba87dc618db3a921bd7baf79813d4960e52c623bae3a6\";}','no'),(6820,'auto_update_plugins','a:8:{i:0;s:39:\"boldgrid-easy-seo/boldgrid-easy-seo.php\";i:1;s:47:\"boldgrid-inspirations/boldgrid-inspirations.php\";i:2;s:29:\"crio-premium/crio-premium.php\";i:3;s:47:\"post-and-page-builder/post-and-page-builder.php\";i:4;s:63:\"post-and-page-builder-premium/post-and-page-builder-premium.php\";i:5;s:35:\"boldgrid-backup/boldgrid-backup.php\";i:6;s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";i:7;s:19:\"weforms/weforms.php\";}','no'),(148,'boldgrid_backup_in_progress_data','a:7:{s:6:\"status\";s:22:\"Backing up database...\";s:12:\"log_filename\";s:22:\"archive-1687373978.log\";s:3:\"pid\";i:1812349;s:10:\"start_time\";i:1687373978;s:7:\"trigger\";s:31:\"TXlady12 (ljhelman@hotmail.com)\";s:6:\"tables\";a:14:{i:0;s:14:\"wp_commentmeta\";i:1;s:11:\"wp_comments\";i:2;s:8:\"wp_links\";i:3;s:10:\"wp_options\";i:4;s:11:\"wp_postmeta\";i:5;s:8:\"wp_posts\";i:6;s:21:\"wp_term_relationships\";i:7;s:16:\"wp_term_taxonomy\";i:8;s:11:\"wp_termmeta\";i:9;s:8:\"wp_terms\";i:10;s:11:\"wp_usermeta\";i:11;s:8:\"wp_users\";i:12;s:18:\"wp_weforms_entries\";i:13;s:20:\"wp_weforms_entrymeta\";}s:4:\"step\";i:1;}','yes'),(151,'bglib_activity','a:1:{s:15:\"boldgrid-backup\";a:1:{s:18:\"any_backup_created\";i:17;}}','yes'),(149,'boldgrid_backup_last_backup','1684565594','no'),(150,'boldgrid_backup_latest_backup','a:34:{s:4:\"mode\";s:6:\"backup\";s:6:\"dryrun\";b:0;s:10:\"compressor\";s:7:\"php_zip\";s:8:\"filesize\";i:72307928;s:4:\"save\";b:1;s:10:\"total_size\";i:178464507;s:14:\"folder_include\";s:18:\"WPCORE,/wp-content\";s:14:\"folder_exclude\";s:17:\".git,node_modules\";s:13:\"table_exclude\";a:0:{}s:5:\"title\";N;s:11:\"description\";N;s:7:\"ABSPATH\";s:33:\"/home/nspeci6/estatesatnuevo.com/\";s:9:\"backup_id\";s:8:\"fa8057ab\";s:7:\"siteurl\";s:25:\"http://estatesatnuevo.com\";s:9:\"timestamp\";i:1684565504;s:17:\"gateway_interface\";s:7:\"CGI/1.1\";s:9:\"http_host\";s:18:\"estatesatnuevo.com\";s:13:\"php_sapi_name\";s:8:\"cgi-fcgi\";s:9:\"php_uname\";s:111:\"Linux biz251.inmotionhosting.com 3.10.0-962.3.2.lve1.5.79.el7.x86_64 #1 SMP Wed Mar 15 09:10:44 UTC 2023 x86_64\";s:11:\"php_version\";s:6:\"7.4.33\";s:11:\"server_addr\";s:14:\"74.124.203.191\";s:11:\"server_name\";s:18:\"estatesatnuevo.com\";s:15:\"server_protocol\";s:8:\"HTTP/1.1\";s:15:\"server_software\";s:6:\"Apache\";s:3:\"uid\";i:1272;s:8:\"username\";s:7:\"nspeci6\";s:10:\"encrypt_db\";b:0;s:7:\"trigger\";s:11:\"Auto update\";s:8:\"filepath\";s:93:\"/home/nspeci6/boldgrid_backup/boldgrid-backup-estatesatnuevo.com-fa8057ab-20230520-065148.zip\";s:11:\"lastmodunix\";i:1684565591;s:8:\"duration\";s:5:\"87.22\";s:11:\"db_duration\";s:4:\"0.90\";s:11:\"db_filename\";s:35:\"nspeci6_xyb6frx.20230520-065144.sql\";s:12:\"mail_success\";b:0;}','yes'),(153,'boldgrid_backup_environment','a:3:{s:8:\"hostname\";s:26:\"biz251.inmotionhosting.com\";s:10:\"phpversion\";s:6:\"7.4.33\";s:9:\"wpversion\";s:5:\"6.2.2\";}','yes'),(154,'boldgrid_editor','a:9:{s:19:\"has_flushed_rewrite\";b:1;s:19:\"has_checked_version\";i:0;s:17:\"activated_version\";s:6:\"1.17.1\";s:15:\"preview_page_id\";i:137;s:14:\"default_editor\";a:5:{s:4:\"post\";s:6:\"modern\";s:4:\"page\";s:5:\"bgppb\";s:14:\"bg_attribution\";s:7:\"default\";s:8:\"bg_block\";s:5:\"bgppb\";s:16:\"crio_page_header\";s:5:\"bgppb\";}s:5:\"setup\";a:1:{s:8:\"template\";a:1:{s:6:\"choice\";s:9:\"fullwidth\";}}s:18:\"count_usage_blocks\";i:17;s:22:\"block_default_industry\";s:11:\"real_estate\";s:12:\"preview_meta\";a:2:{s:8:\"template\";s:7:\"default\";s:24:\"boldgrid_hide_page_title\";N;}}','yes'),(134,'widget_boldgrid_component_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(135,'widget_boldgrid_component_page_title','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(136,'widget_boldgrid_component_site_title','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(137,'widget_boldgrid_component_site_description','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(138,'widget_boldgrid_component_logo','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(139,'widget_boldgrid_component_post','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(140,'widget_boldgrid_component_postlist','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(141,'boldgrid_attribution_rebuild','1','yes'),(142,'boldgrid_staging_boldgrid_attribution_rebuild','1','yes'),(143,'boldgrid_attribution_upgraded_to_cpt','1','yes'),(396261,'boldgrid_reseller','a:11:{s:19:\"reseller_identifier\";s:3:\"IMH\";s:14:\"reseller_title\";s:16:\"InMotion Hosting\";s:17:\"reseller_logo_url\";s:78:\"./wp-content/plugins/boldgrid-inspirations/assets/images/wordpressinmotion.png\";s:20:\"reseller_website_url\";s:32:\"https://www.inmotionhosting.com/\";s:20:\"reseller_support_url\";s:52:\"http://www.inmotionhosting.com/support/edu/boldgrid/\";s:16:\"reseller_amp_url\";s:55:\"https://secure1.inmotionhosting.com/amp/boldgrid/manage\";s:14:\"reseller_email\";s:27:\"support@inmotionhosting.com\";s:14:\"reseller_phone\";s:14:\"1-888-321-4678\";s:16:\"reseller_css_url\";s:71:\"/wp-content/plugins/boldgrid-inspirations/assets/css/boldgrid-login.css\";s:17:\"reseller_coin_url\";s:55:\"https://secure1.inmotionhosting.com/amp/boldgrid/manage\";s:20:\"reseller_brand_login\";b:1;}','no'),(9726,'boldgrid_backup_tasks','a:14:{i:0;a:7:{s:2:\"id\";s:17:\"1649451917-a26a66\";s:4:\"type\";s:6:\"backup\";s:10:\"created_at\";i:1649451917;s:10:\"started_at\";i:1649451917;s:12:\"completed_at\";i:1649452020;s:6:\"status\";s:4:\"done\";s:4:\"data\";a:0:{}}i:1;a:7:{s:2:\"id\";s:17:\"1649618315-3818d4\";s:4:\"type\";s:6:\"backup\";s:10:\"created_at\";i:1649618315;s:10:\"started_at\";i:1649618315;s:12:\"completed_at\";i:1649618424;s:6:\"status\";s:4:\"done\";s:4:\"data\";a:0:{}}i:2;a:7:{s:2:\"id\";s:17:\"1653430994-3f7912\";s:4:\"type\";s:6:\"backup\";s:10:\"created_at\";i:1653430994;s:10:\"started_at\";i:1653430994;s:12:\"completed_at\";i:1653431091;s:6:\"status\";s:4:\"done\";s:4:\"data\";a:0:{}}i:3;a:7:{s:2:\"id\";s:17:\"1657647568-84eea1\";s:4:\"type\";s:6:\"backup\";s:10:\"created_at\";i:1657647568;s:10:\"started_at\";i:1657647568;s:12:\"completed_at\";i:1657647690;s:6:\"status\";s:4:\"done\";s:4:\"data\";a:0:{}}i:4;a:7:{s:2:\"id\";s:17:\"1661888947-f2fc51\";s:4:\"type\";s:6:\"backup\";s:10:\"created_at\";i:1661888947;s:10:\"started_at\";i:1661888947;s:12:\"completed_at\";N;s:6:\"status\";s:11:\"in_progress\";s:4:\"data\";a:0:{}}i:5;a:7:{s:2:\"id\";s:17:\"1661896028-869d5b\";s:4:\"type\";s:6:\"backup\";s:10:\"created_at\";i:1661896028;s:10:\"started_at\";i:1661896028;s:12:\"completed_at\";i:1661896127;s:6:\"status\";s:4:\"done\";s:4:\"data\";a:0:{}}i:6;a:7:{s:2:\"id\";s:17:\"1666047376-68e07d\";s:4:\"type\";s:6:\"backup\";s:10:\"created_at\";i:1666047376;s:10:\"started_at\";i:1666047376;s:12:\"completed_at\";i:1666047502;s:6:\"status\";s:4:\"done\";s:4:\"data\";a:0:{}}i:7;a:7:{s:2:\"id\";s:17:\"1667405612-9e752b\";s:4:\"type\";s:6:\"backup\";s:10:\"created_at\";i:1667405612;s:10:\"started_at\";i:1667405612;s:12:\"completed_at\";i:1667405717;s:6:\"status\";s:4:\"done\";s:4:\"data\";a:0:{}}i:8;a:7:{s:2:\"id\";s:17:\"1668545163-b8fc8d\";s:4:\"type\";s:6:\"backup\";s:10:\"created_at\";i:1668545163;s:10:\"started_at\";i:1668545163;s:12:\"completed_at\";i:1668545282;s:6:\"status\";s:4:\"done\";s:4:\"data\";a:0:{}}i:9;a:7:{s:2:\"id\";s:17:\"1677263735-efab00\";s:4:\"type\";s:6:\"backup\";s:10:\"created_at\";i:1677263735;s:10:\"started_at\";i:1677263735;s:12:\"completed_at\";i:1677263845;s:6:\"status\";s:4:\"done\";s:4:\"data\";a:0:{}}i:10;a:7:{s:2:\"id\";s:17:\"1681617168-a3b2a2\";s:4:\"type\";s:6:\"backup\";s:10:\"created_at\";i:1681617168;s:10:\"started_at\";i:1681617168;s:12:\"completed_at\";i:1681617279;s:6:\"status\";s:4:\"done\";s:4:\"data\";a:0:{}}i:11;a:7:{s:2:\"id\";s:17:\"1684267405-f22e3c\";s:4:\"type\";s:6:\"backup\";s:10:\"created_at\";i:1684267405;s:10:\"started_at\";i:1684267405;s:12:\"completed_at\";i:1684267519;s:6:\"status\";s:4:\"done\";s:4:\"data\";a:0:{}}i:12;a:7:{s:2:\"id\";s:17:\"1684565504-93c641\";s:4:\"type\";s:6:\"backup\";s:10:\"created_at\";i:1684565504;s:10:\"started_at\";i:1684565504;s:12:\"completed_at\";i:1684565613;s:6:\"status\";s:4:\"done\";s:4:\"data\";a:0:{}}i:13;a:7:{s:2:\"id\";s:17:\"1687373978-4bb971\";s:4:\"type\";s:6:\"backup\";s:10:\"created_at\";i:1687373978;s:10:\"started_at\";i:1687373978;s:12:\"completed_at\";N;s:6:\"status\";s:11:\"in_progress\";s:4:\"data\";a:0:{}}}','yes'),(182,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:20:\"ljhelman@hotmail.com\";s:7:\"version\";s:5:\"6.2.2\";s:9:\"timestamp\";i:1684565617;}','no'),(1389,'boldgrid_survey','a:2:{s:8:\"blogname\";a:1:{s:5:\"value\";s:16:\"Estates at Nuevo\";}s:6:\"social\";a:1:{s:14:\"do-not-display\";b:1;}}','yes'),(1464,'boldgrid_easy_seo_version','1.6.10','no'),(1392,'boldgrid_install_options','a:22:{s:11:\"author_type\";N;s:11:\"language_id\";N;s:14:\"theme_group_id\";N;s:8:\"theme_id\";i:56;s:18:\"theme_version_type\";s:6:\"stable\";s:11:\"category_id\";i:3;s:14:\"subcategory_id\";i:19;s:11:\"page_set_id\";i:22;s:21:\"page_set_version_type\";s:6:\"stable\";s:3:\"pde\";b:0;s:8:\"new_path\";s:19:\"0722522001648062091\";s:13:\"ticket_number\";s:0:\"\";s:16:\"build_profile_id\";i:1097368;s:12:\"custom_pages\";N;s:12:\"install_blog\";b:0;s:15:\"install_invoice\";b:0;s:13:\"install_cache\";b:0;s:17:\"install_timestamp\";i:1648062355;s:15:\"subcategory_key\";s:11:\"Real Estate\";s:16:\"subcategory_name\";s:11:\"Real Estate\";s:15:\"is_base_pageset\";b:0;s:20:\"parent_category_name\";s:15:\"Home & Property\";}','yes'),(178,'wp_force_deactivated_plugins','a:0:{}','yes'),(179,'db_upgraded','','yes'),(196,'boldgrid_mobile_ratio','0:10','no'),(175,'boldgrid_inspirations_activated_version','2.6.3','no'),(176,'boldgrid_inspirations_current_version','2.7.4','no'),(205,'boldgrid_pointers','a:4:{i:0;a:6:{s:2:\"id\";s:37:\"boldgrid_image_search_internal_only_8\";s:6:\"screen\";s:4:\"page\";s:6:\"target\";s:19:\"#media-search-input\";s:5:\"title\";s:12:\"Image search\";s:7:\"content\";s:222:\"<em>This search function</em> helps you find images you\'ve already uploaded to your Media Library. If you would like to search the web for new images, click the <strong>BoldGrid Connect Search</strong> tab in the top menu.\";s:8:\"position\";a:2:{s:4:\"edge\";s:5:\"right\";s:5:\"align\";s:6:\"middle\";}}i:1;a:6:{s:2:\"id\";s:49:\"boldgrid_media_library_image_search_internal_only\";s:6:\"screen\";s:6:\"upload\";s:6:\"target\";s:19:\"#media-search-input\";s:5:\"title\";s:12:\"Image search\";s:7:\"content\";s:222:\"<em>This search function</em> helps you find images you\'ve already uploaded to your Media Library. If you would like to search the web for new images, click the <strong>BoldGrid Connect Search</strong> tab in the top menu.\";s:8:\"position\";a:3:{s:4:\"edge\";s:3:\"top\";s:5:\"align\";s:6:\"middle\";s:17:\"open_on_page_load\";b:0;}}i:2;a:6:{s:2:\"id\";s:38:\"boldgrid_image_size_do_you_need_help_8\";s:6:\"screen\";s:12:\"media-upload\";s:6:\"target\";s:11:\"#image_size\";s:5:\"title\";s:10:\"Image size\";s:7:\"content\";s:33:\"Need help choosing an image size?\";s:8:\"position\";a:2:{s:4:\"edge\";s:5:\"right\";s:5:\"align\";s:6:\"middle\";}}i:3;a:6:{s:2:\"id\";s:29:\"boldgrid_customization_widget\";s:6:\"screen\";s:9:\"dashboard\";s:6:\"target\";s:21:\"#customization_widget\";s:5:\"title\";s:35:\"Begin customizing your new website!\";s:7:\"content\";s:130:\"Congratulations, you&#039;ve just installed your new website! Below you&#039;ll find tips to help you begin customizing your site.\";s:8:\"position\";a:2:{s:4:\"edge\";s:6:\"bottom\";s:5:\"align\";s:6:\"middle\";}}}','yes'),(234,'finished_updating_comment_type','1','yes'),(751,'category_children','a:0:{}','yes'),(3750,'boldgrid_customizer_first_use','2022-03-26 21:25:29','yes'),(1478,'kirki_downloaded_font_files','a:71:{s:102:\"https://fonts.gstatic.com/s/montserrat/v23/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw0aXx-p7K4GLvztg.woff\";s:120:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/montserrat/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw0aXx-p7K4GLvztg.woff\";s:102:\"https://fonts.gstatic.com/s/montserrat/v23/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw9aXx-p7K4GLvztg.woff\";s:120:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/montserrat/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw9aXx-p7K4GLvztg.woff\";s:102:\"https://fonts.gstatic.com/s/montserrat/v23/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw2aXx-p7K4GLvztg.woff\";s:120:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/montserrat/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw2aXx-p7K4GLvztg.woff\";s:102:\"https://fonts.gstatic.com/s/montserrat/v23/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw3aXx-p7K4GLvztg.woff\";s:120:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/montserrat/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw3aXx-p7K4GLvztg.woff\";s:99:\"https://fonts.gstatic.com/s/montserrat/v23/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw5aXx-p7K4GLs.woff\";s:117:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/montserrat/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw5aXx-p7K4GLs.woff\";s:102:\"https://fonts.gstatic.com/s/montserrat/v23/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Hw0aXx-p7K4GLvztg.woff\";s:120:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/montserrat/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Hw0aXx-p7K4GLvztg.woff\";s:102:\"https://fonts.gstatic.com/s/montserrat/v23/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Hw9aXx-p7K4GLvztg.woff\";s:120:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/montserrat/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Hw9aXx-p7K4GLvztg.woff\";s:102:\"https://fonts.gstatic.com/s/montserrat/v23/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Hw2aXx-p7K4GLvztg.woff\";s:120:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/montserrat/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Hw2aXx-p7K4GLvztg.woff\";s:102:\"https://fonts.gstatic.com/s/montserrat/v23/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Hw3aXx-p7K4GLvztg.woff\";s:120:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/montserrat/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Hw3aXx-p7K4GLvztg.woff\";s:99:\"https://fonts.gstatic.com/s/montserrat/v23/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Hw5aXx-p7K4GLs.woff\";s:117:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/montserrat/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Hw5aXx-p7K4GLs.woff\";s:88:\"https://fonts.gstatic.com/s/yantramanav/v10/flUhRqu5zY00QEpyWJYWN58AfvNfKBUet5Hgd64.woff\";s:106:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/yantramanav/flUhRqu5zY00QEpyWJYWN58AfvNfKBUet5Hgd64.woff\";s:88:\"https://fonts.gstatic.com/s/yantramanav/v10/flUhRqu5zY00QEpyWJYWN58AfvNQKBUet5Hgd64.woff\";s:106:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/yantramanav/flUhRqu5zY00QEpyWJYWN58AfvNQKBUet5Hgd64.woff\";s:85:\"https://fonts.gstatic.com/s/yantramanav/v10/flUhRqu5zY00QEpyWJYWN58AfvNeKBUet5Hg.woff\";s:103:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/yantramanav/flUhRqu5zY00QEpyWJYWN58AfvNeKBUet5Hg.woff\";s:95:\"https://fonts.gstatic.com/s/raleway/v26/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCFPrcVIT9d4cydYA.woff\";s:113:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/raleway/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCFPrcVIT9d4cydYA.woff\";s:95:\"https://fonts.gstatic.com/s/raleway/v26/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCMPrcVIT9d4cydYA.woff\";s:113:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/raleway/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCMPrcVIT9d4cydYA.woff\";s:95:\"https://fonts.gstatic.com/s/raleway/v26/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCHPrcVIT9d4cydYA.woff\";s:113:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/raleway/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCHPrcVIT9d4cydYA.woff\";s:95:\"https://fonts.gstatic.com/s/raleway/v26/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCGPrcVIT9d4cydYA.woff\";s:113:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/raleway/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCGPrcVIT9d4cydYA.woff\";s:92:\"https://fonts.gstatic.com/s/raleway/v26/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCIPrcVIT9d4cw.woff\";s:110:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/raleway/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCIPrcVIT9d4cw.woff\";s:72:\"https://fonts.gstatic.com/s/roboto/v29/KFOmCnqEu92Fr1Mu72xMKTU1Kvnz.woff\";s:90:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/roboto/KFOmCnqEu92Fr1Mu72xMKTU1Kvnz.woff\";s:72:\"https://fonts.gstatic.com/s/roboto/v29/KFOmCnqEu92Fr1Mu5mxMKTU1Kvnz.woff\";s:90:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/roboto/KFOmCnqEu92Fr1Mu5mxMKTU1Kvnz.woff\";s:72:\"https://fonts.gstatic.com/s/roboto/v29/KFOmCnqEu92Fr1Mu7mxMKTU1Kvnz.woff\";s:90:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/roboto/KFOmCnqEu92Fr1Mu7mxMKTU1Kvnz.woff\";s:72:\"https://fonts.gstatic.com/s/roboto/v29/KFOmCnqEu92Fr1Mu4WxMKTU1Kvnz.woff\";s:90:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/roboto/KFOmCnqEu92Fr1Mu4WxMKTU1Kvnz.woff\";s:72:\"https://fonts.gstatic.com/s/roboto/v29/KFOmCnqEu92Fr1Mu7WxMKTU1Kvnz.woff\";s:90:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/roboto/KFOmCnqEu92Fr1Mu7WxMKTU1Kvnz.woff\";s:72:\"https://fonts.gstatic.com/s/roboto/v29/KFOmCnqEu92Fr1Mu7GxMKTU1Kvnz.woff\";s:90:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/roboto/KFOmCnqEu92Fr1Mu7GxMKTU1Kvnz.woff\";s:70:\"https://fonts.gstatic.com/s/roboto/v29/KFOmCnqEu92Fr1Mu4mxMKTU1Kg.woff\";s:88:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/roboto/KFOmCnqEu92Fr1Mu4mxMKTU1Kg.woff\";s:95:\"https://fonts.gstatic.com/s/almendradisplay/v23/0FlPVOGWl1Sb4O3tETtADHRRlZhzbSbUSAWoz34zgg.woff\";s:114:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/almendra-display/0FlPVOGWl1Sb4O3tETtADHRRlZhzbSbUSAWoz34zgg.woff\";s:92:\"https://fonts.gstatic.com/s/almendradisplay/v23/0FlPVOGWl1Sb4O3tETtADHRRlZhzbSjUSAWoz34.woff\";s:111:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/almendra-display/0FlPVOGWl1Sb4O3tETtADHRRlZhzbSjUSAWoz34.woff\";s:95:\"https://fonts.gstatic.com/s/almendradisplay/v25/0FlPVOGWl1Sb4O3tETtADHRRlZhzbSbUSAWoz34zgg.woff\";s:114:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/almendra-display/0FlPVOGWl1Sb4O3tETtADHRRlZhzbSbUSAWoz34zgg.woff\";s:92:\"https://fonts.gstatic.com/s/almendradisplay/v25/0FlPVOGWl1Sb4O3tETtADHRRlZhzbSjUSAWoz34.woff\";s:111:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/almendra-display/0FlPVOGWl1Sb4O3tETtADHRRlZhzbSjUSAWoz34.woff\";s:102:\"https://fonts.gstatic.com/s/montserrat/v24/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw0aXx-p7K4GLvztg.woff\";s:120:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/montserrat/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw0aXx-p7K4GLvztg.woff\";s:102:\"https://fonts.gstatic.com/s/montserrat/v24/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw9aXx-p7K4GLvztg.woff\";s:120:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/montserrat/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw9aXx-p7K4GLvztg.woff\";s:102:\"https://fonts.gstatic.com/s/montserrat/v24/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw2aXx-p7K4GLvztg.woff\";s:120:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/montserrat/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw2aXx-p7K4GLvztg.woff\";s:102:\"https://fonts.gstatic.com/s/montserrat/v24/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw3aXx-p7K4GLvztg.woff\";s:120:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/montserrat/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw3aXx-p7K4GLvztg.woff\";s:99:\"https://fonts.gstatic.com/s/montserrat/v24/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw5aXx-p7K4GLs.woff\";s:117:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/montserrat/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw5aXx-p7K4GLs.woff\";s:102:\"https://fonts.gstatic.com/s/montserrat/v24/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Hw0aXx-p7K4GLvztg.woff\";s:120:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/montserrat/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Hw0aXx-p7K4GLvztg.woff\";s:102:\"https://fonts.gstatic.com/s/montserrat/v24/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Hw9aXx-p7K4GLvztg.woff\";s:120:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/montserrat/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Hw9aXx-p7K4GLvztg.woff\";s:102:\"https://fonts.gstatic.com/s/montserrat/v24/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Hw2aXx-p7K4GLvztg.woff\";s:120:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/montserrat/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Hw2aXx-p7K4GLvztg.woff\";s:102:\"https://fonts.gstatic.com/s/montserrat/v24/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Hw3aXx-p7K4GLvztg.woff\";s:120:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/montserrat/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Hw3aXx-p7K4GLvztg.woff\";s:99:\"https://fonts.gstatic.com/s/montserrat/v24/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Hw5aXx-p7K4GLs.woff\";s:117:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/montserrat/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Hw5aXx-p7K4GLs.woff\";s:88:\"https://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN58AfvNfKBUet5Hgd64.woff\";s:106:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/yantramanav/flUhRqu5zY00QEpyWJYWN58AfvNfKBUet5Hgd64.woff\";s:88:\"https://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN58AfvNQKBUet5Hgd64.woff\";s:106:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/yantramanav/flUhRqu5zY00QEpyWJYWN58AfvNQKBUet5Hgd64.woff\";s:85:\"https://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN58AfvNeKBUet5Hg.woff\";s:103:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/yantramanav/flUhRqu5zY00QEpyWJYWN58AfvNeKBUet5Hg.woff\";s:95:\"https://fonts.gstatic.com/s/raleway/v27/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCFPrcVIT9d4cydYA.woff\";s:113:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/raleway/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCFPrcVIT9d4cydYA.woff\";s:95:\"https://fonts.gstatic.com/s/raleway/v27/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCMPrcVIT9d4cydYA.woff\";s:113:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/raleway/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCMPrcVIT9d4cydYA.woff\";s:95:\"https://fonts.gstatic.com/s/raleway/v27/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCHPrcVIT9d4cydYA.woff\";s:113:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/raleway/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCHPrcVIT9d4cydYA.woff\";s:95:\"https://fonts.gstatic.com/s/raleway/v27/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCGPrcVIT9d4cydYA.woff\";s:113:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/raleway/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCGPrcVIT9d4cydYA.woff\";s:92:\"https://fonts.gstatic.com/s/raleway/v27/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCIPrcVIT9d4cw.woff\";s:110:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/raleway/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCIPrcVIT9d4cw.woff\";s:72:\"https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu72xMKTU1Kvnz.woff\";s:90:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/roboto/KFOmCnqEu92Fr1Mu72xMKTU1Kvnz.woff\";s:72:\"https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu5mxMKTU1Kvnz.woff\";s:90:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/roboto/KFOmCnqEu92Fr1Mu5mxMKTU1Kvnz.woff\";s:72:\"https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu7mxMKTU1Kvnz.woff\";s:90:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/roboto/KFOmCnqEu92Fr1Mu7mxMKTU1Kvnz.woff\";s:72:\"https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4WxMKTU1Kvnz.woff\";s:90:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/roboto/KFOmCnqEu92Fr1Mu4WxMKTU1Kvnz.woff\";s:72:\"https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu7WxMKTU1Kvnz.woff\";s:90:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/roboto/KFOmCnqEu92Fr1Mu7WxMKTU1Kvnz.woff\";s:72:\"https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu7GxMKTU1Kvnz.woff\";s:90:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/roboto/KFOmCnqEu92Fr1Mu7GxMKTU1Kvnz.woff\";s:70:\"https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxMKTU1Kg.woff\";s:88:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/roboto/KFOmCnqEu92Fr1Mu4mxMKTU1Kg.woff\";s:102:\"https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw0aXx-p7K4GLvztg.woff\";s:120:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/montserrat/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw0aXx-p7K4GLvztg.woff\";s:102:\"https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw9aXx-p7K4GLvztg.woff\";s:120:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/montserrat/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw9aXx-p7K4GLvztg.woff\";s:102:\"https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw2aXx-p7K4GLvztg.woff\";s:120:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/montserrat/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw2aXx-p7K4GLvztg.woff\";s:102:\"https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw3aXx-p7K4GLvztg.woff\";s:120:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/montserrat/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw3aXx-p7K4GLvztg.woff\";s:99:\"https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw5aXx-p7K4GLs.woff\";s:117:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/montserrat/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw5aXx-p7K4GLs.woff\";s:102:\"https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Hw0aXx-p7K4GLvztg.woff\";s:120:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/montserrat/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Hw0aXx-p7K4GLvztg.woff\";s:102:\"https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Hw9aXx-p7K4GLvztg.woff\";s:120:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/montserrat/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Hw9aXx-p7K4GLvztg.woff\";s:102:\"https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Hw2aXx-p7K4GLvztg.woff\";s:120:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/montserrat/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Hw2aXx-p7K4GLvztg.woff\";s:102:\"https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Hw3aXx-p7K4GLvztg.woff\";s:120:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/montserrat/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Hw3aXx-p7K4GLvztg.woff\";s:99:\"https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Hw5aXx-p7K4GLs.woff\";s:117:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/montserrat/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Hw5aXx-p7K4GLs.woff\";s:95:\"https://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCFPrcVIT9d4cydYA.woff\";s:113:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/raleway/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCFPrcVIT9d4cydYA.woff\";s:95:\"https://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCMPrcVIT9d4cydYA.woff\";s:113:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/raleway/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCMPrcVIT9d4cydYA.woff\";s:95:\"https://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCHPrcVIT9d4cydYA.woff\";s:113:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/raleway/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCHPrcVIT9d4cydYA.woff\";s:95:\"https://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCGPrcVIT9d4cydYA.woff\";s:113:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/raleway/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCGPrcVIT9d4cydYA.woff\";s:92:\"https://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCIPrcVIT9d4cw.woff\";s:110:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/raleway/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCIPrcVIT9d4cw.woff\";s:95:\"https://fonts.gstatic.com/s/almendradisplay/v26/0FlPVOGWl1Sb4O3tETtADHRRlZhzbSbUSAWoz34zgg.woff\";s:114:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/almendra-display/0FlPVOGWl1Sb4O3tETtADHRRlZhzbSbUSAWoz34zgg.woff\";s:92:\"https://fonts.gstatic.com/s/almendradisplay/v26/0FlPVOGWl1Sb4O3tETtADHRRlZhzbSjUSAWoz34.woff\";s:111:\"/home/nspeci6/estatesatnuevo.com/wp-content/fonts/almendra-display/0FlPVOGWl1Sb4O3tETtADHRRlZhzbSjUSAWoz34.woff\";}','yes'),(1380,'boldgrid_api_key','8ba05fe9f17b3bd4eb3e855a84feaaa4','no'),(1381,'boldgrid_site_hash','00208ddff2b81e98eca5de1b131f8814','no'),(1385,'boldgrid_asset','a:3:{s:6:\"plugin\";a:0:{}s:5:\"theme\";a:0:{}s:5:\"image\";a:8:{i:1;a:16:{s:8:\"asset_id\";s:7:\"1111013\";s:9:\"coin_cost\";N;s:4:\"name\";s:118:\"/home/nspeci6/estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2022-03-23 19:06:25\";s:11:\"attribution\";s:160:\"{\"license\":\"10\",\"author_username\":\"Randy Fath\",\"author_url\":\"https:\\/\\/unsplash.com\\/@randyfath\",\"image_homepage\":\"https:\\/\\/unsplash.com\\/photos\\/k8m4Uj5JJAQ\"}\";s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:110;s:5:\"width\";s:3:\"234\";s:6:\"height\";s:3:\"234\";s:17:\"image_provider_id\";N;s:16:\"id_from_provider\";N;s:11:\"orientation\";N;s:10:\"image_size\";N;s:19:\"transaction_item_id\";N;s:14:\"transaction_id\";N;}i:2;a:16:{s:8:\"asset_id\";s:7:\"1111014\";s:9:\"coin_cost\";N;s:4:\"name\";s:121:\"/home/nspeci6/estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2022-03-23 19:06:25\";s:11:\"attribution\";s:166:\"{\"license\":\"10\",\"author_username\":\"William Rouse\",\"author_url\":\"https:\\/\\/unsplash.com\\/@williamrouse\",\"image_homepage\":\"https:\\/\\/unsplash.com\\/photos\\/r1tjlHBnHzY\"}\";s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:111;s:5:\"width\";s:3:\"234\";s:6:\"height\";s:3:\"234\";s:17:\"image_provider_id\";N;s:16:\"id_from_provider\";N;s:11:\"orientation\";N;s:10:\"image_size\";N;s:19:\"transaction_item_id\";N;s:14:\"transaction_id\";N;}i:3;a:16:{s:8:\"asset_id\";s:7:\"1111015\";s:9:\"coin_cost\";N;s:4:\"name\";s:120:\"/home/nspeci6/estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2022-03-23 19:06:25\";s:11:\"attribution\";s:163:\"{\"license\":\"10\",\"author_username\":\"Gerd Schrade\",\"author_url\":\"https:\\/\\/unsplash.com\\/@gerard_dor\",\"image_homepage\":\"https:\\/\\/unsplash.com\\/photos\\/l5gzNmXTzIg\"}\";s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:112;s:5:\"width\";s:3:\"234\";s:6:\"height\";s:3:\"234\";s:17:\"image_provider_id\";N;s:16:\"id_from_provider\";N;s:11:\"orientation\";N;s:10:\"image_size\";N;s:19:\"transaction_item_id\";N;s:14:\"transaction_id\";N;}i:4;a:16:{s:8:\"asset_id\";s:7:\"1111016\";s:9:\"coin_cost\";N;s:4:\"name\";s:120:\"/home/nspeci6/estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2022-03-23 19:06:25\";s:11:\"attribution\";s:2:\"{}\";s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:113;s:5:\"width\";s:3:\"234\";s:6:\"height\";s:3:\"234\";s:17:\"image_provider_id\";N;s:16:\"id_from_provider\";N;s:11:\"orientation\";N;s:10:\"image_size\";N;s:19:\"transaction_item_id\";N;s:14:\"transaction_id\";N;}i:5;a:16:{s:8:\"asset_id\";s:7:\"1111017\";s:9:\"coin_cost\";N;s:4:\"name\";s:125:\"/home/nspeci6/estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2022-03-23 19:06:25\";s:11:\"attribution\";s:175:\"{\"license\":\"10\",\"author_username\":\"Sachin Prabhashan\",\"author_url\":\"https:\\/\\/unsplash.com\\/@sachin_prabhashan\",\"image_homepage\":\"https:\\/\\/unsplash.com\\/photos\\/sBtqOe23bd0\"}\";s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:114;s:5:\"width\";s:3:\"234\";s:6:\"height\";s:3:\"234\";s:17:\"image_provider_id\";N;s:16:\"id_from_provider\";N;s:11:\"orientation\";N;s:10:\"image_size\";N;s:19:\"transaction_item_id\";N;s:14:\"transaction_id\";N;}i:6;a:16:{s:8:\"asset_id\";s:7:\"1111018\";s:9:\"coin_cost\";N;s:4:\"name\";s:127:\"/home/nspeci6/estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2022-03-23 19:06:25\";s:11:\"attribution\";s:171:\"{\"license\":\"10\",\"author_username\":\"Melissa Walker Horn\",\"author_url\":\"https:\\/\\/unsplash.com\\/@sugercoatit\",\"image_homepage\":\"https:\\/\\/unsplash.com\\/photos\\/B8He4PJkMLg\"}\";s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:115;s:5:\"width\";s:3:\"234\";s:6:\"height\";s:3:\"234\";s:17:\"image_provider_id\";N;s:16:\"id_from_provider\";N;s:11:\"orientation\";N;s:10:\"image_size\";N;s:19:\"transaction_item_id\";N;s:14:\"transaction_id\";N;}i:7;a:16:{s:8:\"asset_id\";s:7:\"1111019\";s:9:\"coin_cost\";N;s:4:\"name\";s:159:\"/home/nspeci6/estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1NTLWQ0bk1Od2lRLzE5MjB4MTI4Mg_3D_3D-imhwpb-l6lnwj9f34ljpy1.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2022-03-23 19:06:25\";s:11:\"attribution\";s:158:\"{\"license\":\"10\",\"author_username\":\"Alex Hall\",\"author_url\":\"https:\\/\\/unsplash.com\\/@callaway\",\"image_homepage\":\"https:\\/\\/unsplash.com\\/photos\\/SS-d4nMNwiQ\"}\";s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:116;s:5:\"width\";s:3:\"234\";s:6:\"height\";s:3:\"234\";s:17:\"image_provider_id\";N;s:16:\"id_from_provider\";N;s:11:\"orientation\";N;s:10:\"image_size\";N;s:19:\"transaction_item_id\";N;s:14:\"transaction_id\";N;}i:8;a:16:{s:8:\"asset_id\";s:7:\"1111020\";s:9:\"coin_cost\";N;s:4:\"name\";s:159:\"/home/nspeci6/estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\";s:13:\"purchase_date\";s:0:\"\";s:13:\"download_date\";s:19:\"2022-03-23 19:06:26\";s:11:\"attribution\";s:160:\"{\"license\":\"10\",\"author_username\":\"Randy Fath\",\"author_url\":\"https:\\/\\/unsplash.com\\/@randyfath\",\"image_homepage\":\"https:\\/\\/unsplash.com\\/photos\\/Yvf2tN1sFJs\"}\";s:19:\"attribution_license\";N;s:13:\"attachment_id\";i:117;s:5:\"width\";s:3:\"234\";s:6:\"height\";s:3:\"234\";s:17:\"image_provider_id\";N;s:16:\"id_from_provider\";N;s:11:\"orientation\";N;s:10:\"image_size\";N;s:19:\"transaction_item_id\";N;s:14:\"transaction_id\";N;}}}','yes'),(1386,'boldgrid_inspirations_redirect','1648062355','yes'),(1397,'boldgrid_theme_revision_Crio','20200630095053','yes'),(1398,'allowedthemes','a:1:{s:4:\"crio\";b:1;}','no'),(1399,'theme_mods_crio','a:188:{s:18:\"_boldgrid_theme_id\";i:55;s:18:\"nav_menu_locations\";a:2:{s:4:\"main\";i:2;s:11:\"sticky-main\";i:2;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1590516031;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:466:{i:0;s:10:\"archives-2\";i:1;s:10:\"archives-3\";i:2;s:10:\"archives-4\";i:3;s:10:\"archives-5\";i:4;s:10:\"archives-6\";i:5;s:10:\"archives-7\";i:6;s:10:\"archives-8\";i:7;s:10:\"archives-9\";i:8;s:11:\"archives-10\";i:9;s:11:\"archives-11\";i:10;s:11:\"archives-12\";i:11;s:11:\"archives-13\";i:12;s:11:\"archives-14\";i:13;s:11:\"archives-15\";i:14;s:11:\"archives-16\";i:15;s:11:\"archives-17\";i:16;s:11:\"archives-18\";i:17;s:11:\"archives-19\";i:18;s:11:\"archives-20\";i:19;s:11:\"archives-21\";i:20;s:11:\"archives-22\";i:21;s:11:\"archives-23\";i:22;s:11:\"archives-24\";i:23;s:11:\"archives-25\";i:24;s:11:\"archives-26\";i:25;s:11:\"archives-27\";i:26;s:11:\"archives-28\";i:27;s:11:\"archives-29\";i:28;s:11:\"archives-30\";i:29;s:11:\"archives-31\";i:30;s:11:\"archives-32\";i:31;s:11:\"archives-33\";i:32;s:11:\"archives-34\";i:33;s:11:\"archives-35\";i:34;s:11:\"archives-36\";i:35;s:11:\"archives-37\";i:36;s:11:\"archives-38\";i:37;s:11:\"archives-39\";i:38;s:11:\"archives-40\";i:39;s:11:\"archives-41\";i:40;s:11:\"archives-42\";i:41;s:11:\"archives-43\";i:42;s:11:\"archives-44\";i:43;s:11:\"archives-45\";i:44;s:11:\"archives-46\";i:45;s:11:\"archives-47\";i:46;s:11:\"archives-48\";i:47;s:11:\"archives-49\";i:48;s:11:\"archives-50\";i:49;s:11:\"archives-51\";i:50;s:11:\"archives-52\";i:51;s:11:\"archives-53\";i:52;s:11:\"archives-54\";i:53;s:11:\"archives-55\";i:54;s:11:\"archives-56\";i:55;s:11:\"archives-57\";i:56;s:11:\"archives-58\";i:57;s:11:\"archives-59\";i:58;s:11:\"archives-60\";i:59;s:11:\"archives-61\";i:60;s:11:\"archives-62\";i:61;s:11:\"archives-63\";i:62;s:11:\"archives-64\";i:63;s:11:\"archives-65\";i:64;s:11:\"archives-66\";i:65;s:11:\"archives-67\";i:66;s:11:\"archives-68\";i:67;s:11:\"archives-69\";i:68;s:11:\"archives-70\";i:69;s:11:\"archives-71\";i:70;s:11:\"archives-72\";i:71;s:11:\"archives-73\";i:72;s:11:\"archives-74\";i:73;s:11:\"archives-75\";i:74;s:11:\"archives-76\";i:75;s:11:\"archives-77\";i:76;s:11:\"archives-78\";i:77;s:11:\"archives-79\";i:78;s:11:\"archives-80\";i:79;s:11:\"archives-81\";i:80;s:11:\"archives-82\";i:81;s:11:\"archives-83\";i:82;s:11:\"archives-84\";i:83;s:11:\"archives-85\";i:84;s:11:\"archives-86\";i:85;s:11:\"archives-87\";i:86;s:11:\"archives-88\";i:87;s:11:\"archives-89\";i:88;s:11:\"archives-90\";i:89;s:11:\"archives-91\";i:90;s:11:\"archives-92\";i:91;s:11:\"archives-93\";i:92;s:11:\"archives-94\";i:93;s:11:\"archives-95\";i:94;s:11:\"archives-96\";i:95;s:11:\"archives-97\";i:96;s:11:\"archives-98\";i:97;s:11:\"archives-99\";i:98;s:12:\"archives-100\";i:99;s:12:\"archives-101\";i:100;s:12:\"archives-102\";i:101;s:12:\"archives-103\";i:102;s:12:\"archives-104\";i:103;s:12:\"archives-105\";i:104;s:12:\"archives-106\";i:105;s:12:\"archives-107\";i:106;s:12:\"archives-108\";i:107;s:12:\"archives-109\";i:108;s:12:\"archives-110\";i:109;s:12:\"archives-111\";i:110;s:12:\"archives-112\";i:111;s:12:\"archives-113\";i:112;s:12:\"archives-114\";i:113;s:12:\"archives-115\";i:114;s:12:\"archives-116\";i:115;s:12:\"archives-117\";i:116;s:6:\"meta-2\";i:117;s:8:\"search-2\";i:118;s:8:\"search-3\";i:119;s:8:\"search-4\";i:120;s:8:\"search-5\";i:121;s:8:\"search-6\";i:122;s:8:\"search-7\";i:123;s:8:\"search-8\";i:124;s:8:\"search-9\";i:125;s:9:\"search-10\";i:126;s:9:\"search-11\";i:127;s:9:\"search-12\";i:128;s:9:\"search-13\";i:129;s:9:\"search-14\";i:130;s:9:\"search-15\";i:131;s:9:\"search-16\";i:132;s:9:\"search-17\";i:133;s:9:\"search-18\";i:134;s:9:\"search-19\";i:135;s:9:\"search-20\";i:136;s:9:\"search-21\";i:137;s:9:\"search-22\";i:138;s:9:\"search-23\";i:139;s:9:\"search-24\";i:140;s:9:\"search-25\";i:141;s:9:\"search-26\";i:142;s:9:\"search-27\";i:143;s:9:\"search-28\";i:144;s:9:\"search-29\";i:145;s:9:\"search-30\";i:146;s:9:\"search-31\";i:147;s:9:\"search-32\";i:148;s:9:\"search-33\";i:149;s:9:\"search-34\";i:150;s:9:\"search-35\";i:151;s:9:\"search-36\";i:152;s:9:\"search-37\";i:153;s:9:\"search-38\";i:154;s:9:\"search-39\";i:155;s:9:\"search-40\";i:156;s:9:\"search-41\";i:157;s:9:\"search-42\";i:158;s:9:\"search-43\";i:159;s:9:\"search-44\";i:160;s:9:\"search-45\";i:161;s:9:\"search-46\";i:162;s:9:\"search-47\";i:163;s:9:\"search-48\";i:164;s:9:\"search-49\";i:165;s:9:\"search-50\";i:166;s:9:\"search-51\";i:167;s:9:\"search-52\";i:168;s:9:\"search-53\";i:169;s:9:\"search-54\";i:170;s:9:\"search-55\";i:171;s:9:\"search-56\";i:172;s:9:\"search-57\";i:173;s:9:\"search-58\";i:174;s:9:\"search-59\";i:175;s:9:\"search-60\";i:176;s:9:\"search-61\";i:177;s:9:\"search-62\";i:178;s:9:\"search-63\";i:179;s:9:\"search-64\";i:180;s:9:\"search-65\";i:181;s:9:\"search-66\";i:182;s:9:\"search-67\";i:183;s:9:\"search-68\";i:184;s:9:\"search-69\";i:185;s:9:\"search-70\";i:186;s:9:\"search-71\";i:187;s:9:\"search-72\";i:188;s:9:\"search-73\";i:189;s:9:\"search-74\";i:190;s:9:\"search-75\";i:191;s:9:\"search-76\";i:192;s:9:\"search-77\";i:193;s:9:\"search-78\";i:194;s:9:\"search-79\";i:195;s:9:\"search-80\";i:196;s:9:\"search-81\";i:197;s:9:\"search-82\";i:198;s:9:\"search-83\";i:199;s:9:\"search-84\";i:200;s:9:\"search-85\";i:201;s:9:\"search-86\";i:202;s:9:\"search-87\";i:203;s:9:\"search-88\";i:204;s:9:\"search-89\";i:205;s:9:\"search-90\";i:206;s:9:\"search-91\";i:207;s:9:\"search-92\";i:208;s:9:\"search-93\";i:209;s:9:\"search-94\";i:210;s:9:\"search-95\";i:211;s:9:\"search-96\";i:212;s:9:\"search-97\";i:213;s:9:\"search-98\";i:214;s:9:\"search-99\";i:215;s:10:\"search-100\";i:216;s:10:\"search-101\";i:217;s:10:\"search-102\";i:218;s:10:\"search-103\";i:219;s:10:\"search-104\";i:220;s:10:\"search-105\";i:221;s:10:\"search-106\";i:222;s:10:\"search-107\";i:223;s:10:\"search-108\";i:224;s:10:\"search-109\";i:225;s:10:\"search-110\";i:226;s:10:\"search-111\";i:227;s:10:\"search-112\";i:228;s:10:\"search-113\";i:229;s:10:\"search-114\";i:230;s:10:\"search-115\";i:231;s:10:\"search-116\";i:232;s:10:\"search-117\";i:233;s:12:\"categories-2\";i:234;s:12:\"categories-3\";i:235;s:12:\"categories-4\";i:236;s:12:\"categories-5\";i:237;s:12:\"categories-6\";i:238;s:12:\"categories-7\";i:239;s:12:\"categories-8\";i:240;s:12:\"categories-9\";i:241;s:13:\"categories-10\";i:242;s:13:\"categories-11\";i:243;s:13:\"categories-12\";i:244;s:13:\"categories-13\";i:245;s:13:\"categories-14\";i:246;s:13:\"categories-15\";i:247;s:13:\"categories-16\";i:248;s:13:\"categories-17\";i:249;s:13:\"categories-18\";i:250;s:13:\"categories-19\";i:251;s:13:\"categories-20\";i:252;s:13:\"categories-21\";i:253;s:13:\"categories-22\";i:254;s:13:\"categories-23\";i:255;s:13:\"categories-24\";i:256;s:13:\"categories-25\";i:257;s:13:\"categories-26\";i:258;s:13:\"categories-27\";i:259;s:13:\"categories-28\";i:260;s:13:\"categories-29\";i:261;s:13:\"categories-30\";i:262;s:13:\"categories-31\";i:263;s:13:\"categories-32\";i:264;s:13:\"categories-33\";i:265;s:13:\"categories-34\";i:266;s:13:\"categories-35\";i:267;s:13:\"categories-36\";i:268;s:13:\"categories-37\";i:269;s:13:\"categories-38\";i:270;s:13:\"categories-39\";i:271;s:13:\"categories-40\";i:272;s:13:\"categories-41\";i:273;s:13:\"categories-42\";i:274;s:13:\"categories-43\";i:275;s:13:\"categories-44\";i:276;s:13:\"categories-45\";i:277;s:13:\"categories-46\";i:278;s:13:\"categories-47\";i:279;s:13:\"categories-48\";i:280;s:13:\"categories-49\";i:281;s:13:\"categories-50\";i:282;s:13:\"categories-51\";i:283;s:13:\"categories-52\";i:284;s:13:\"categories-53\";i:285;s:13:\"categories-54\";i:286;s:13:\"categories-55\";i:287;s:13:\"categories-56\";i:288;s:13:\"categories-57\";i:289;s:13:\"categories-58\";i:290;s:13:\"categories-59\";i:291;s:13:\"categories-60\";i:292;s:13:\"categories-61\";i:293;s:13:\"categories-62\";i:294;s:13:\"categories-63\";i:295;s:13:\"categories-64\";i:296;s:13:\"categories-65\";i:297;s:13:\"categories-66\";i:298;s:13:\"categories-67\";i:299;s:13:\"categories-68\";i:300;s:13:\"categories-69\";i:301;s:13:\"categories-70\";i:302;s:13:\"categories-71\";i:303;s:13:\"categories-72\";i:304;s:13:\"categories-73\";i:305;s:13:\"categories-74\";i:306;s:13:\"categories-75\";i:307;s:13:\"categories-76\";i:308;s:13:\"categories-77\";i:309;s:13:\"categories-78\";i:310;s:13:\"categories-79\";i:311;s:13:\"categories-80\";i:312;s:13:\"categories-81\";i:313;s:13:\"categories-82\";i:314;s:13:\"categories-83\";i:315;s:13:\"categories-84\";i:316;s:13:\"categories-85\";i:317;s:13:\"categories-86\";i:318;s:13:\"categories-87\";i:319;s:13:\"categories-88\";i:320;s:13:\"categories-89\";i:321;s:13:\"categories-90\";i:322;s:13:\"categories-91\";i:323;s:13:\"categories-92\";i:324;s:13:\"categories-93\";i:325;s:13:\"categories-94\";i:326;s:13:\"categories-95\";i:327;s:13:\"categories-96\";i:328;s:13:\"categories-97\";i:329;s:13:\"categories-98\";i:330;s:13:\"categories-99\";i:331;s:14:\"categories-100\";i:332;s:14:\"categories-101\";i:333;s:14:\"categories-102\";i:334;s:14:\"categories-103\";i:335;s:14:\"categories-104\";i:336;s:14:\"categories-105\";i:337;s:14:\"categories-106\";i:338;s:14:\"categories-107\";i:339;s:14:\"categories-108\";i:340;s:14:\"categories-109\";i:341;s:14:\"categories-110\";i:342;s:14:\"categories-111\";i:343;s:14:\"categories-112\";i:344;s:14:\"categories-113\";i:345;s:14:\"categories-114\";i:346;s:14:\"categories-115\";i:347;s:14:\"categories-116\";i:348;s:14:\"categories-117\";i:349;s:14:\"recent-posts-2\";i:350;s:14:\"recent-posts-3\";i:351;s:14:\"recent-posts-4\";i:352;s:14:\"recent-posts-5\";i:353;s:14:\"recent-posts-6\";i:354;s:14:\"recent-posts-7\";i:355;s:14:\"recent-posts-8\";i:356;s:14:\"recent-posts-9\";i:357;s:15:\"recent-posts-10\";i:358;s:15:\"recent-posts-11\";i:359;s:15:\"recent-posts-12\";i:360;s:15:\"recent-posts-13\";i:361;s:15:\"recent-posts-14\";i:362;s:15:\"recent-posts-15\";i:363;s:15:\"recent-posts-16\";i:364;s:15:\"recent-posts-17\";i:365;s:15:\"recent-posts-18\";i:366;s:15:\"recent-posts-19\";i:367;s:15:\"recent-posts-20\";i:368;s:15:\"recent-posts-21\";i:369;s:15:\"recent-posts-22\";i:370;s:15:\"recent-posts-23\";i:371;s:15:\"recent-posts-24\";i:372;s:15:\"recent-posts-25\";i:373;s:15:\"recent-posts-26\";i:374;s:15:\"recent-posts-27\";i:375;s:15:\"recent-posts-28\";i:376;s:15:\"recent-posts-29\";i:377;s:15:\"recent-posts-30\";i:378;s:15:\"recent-posts-31\";i:379;s:15:\"recent-posts-32\";i:380;s:15:\"recent-posts-33\";i:381;s:15:\"recent-posts-34\";i:382;s:15:\"recent-posts-35\";i:383;s:15:\"recent-posts-36\";i:384;s:15:\"recent-posts-37\";i:385;s:15:\"recent-posts-38\";i:386;s:15:\"recent-posts-39\";i:387;s:15:\"recent-posts-40\";i:388;s:15:\"recent-posts-41\";i:389;s:15:\"recent-posts-42\";i:390;s:15:\"recent-posts-43\";i:391;s:15:\"recent-posts-44\";i:392;s:15:\"recent-posts-45\";i:393;s:15:\"recent-posts-46\";i:394;s:15:\"recent-posts-47\";i:395;s:15:\"recent-posts-48\";i:396;s:15:\"recent-posts-49\";i:397;s:15:\"recent-posts-50\";i:398;s:15:\"recent-posts-51\";i:399;s:15:\"recent-posts-52\";i:400;s:15:\"recent-posts-53\";i:401;s:15:\"recent-posts-54\";i:402;s:15:\"recent-posts-55\";i:403;s:15:\"recent-posts-56\";i:404;s:15:\"recent-posts-57\";i:405;s:15:\"recent-posts-58\";i:406;s:15:\"recent-posts-59\";i:407;s:15:\"recent-posts-60\";i:408;s:15:\"recent-posts-61\";i:409;s:15:\"recent-posts-62\";i:410;s:15:\"recent-posts-63\";i:411;s:15:\"recent-posts-64\";i:412;s:15:\"recent-posts-65\";i:413;s:15:\"recent-posts-66\";i:414;s:15:\"recent-posts-67\";i:415;s:15:\"recent-posts-68\";i:416;s:15:\"recent-posts-69\";i:417;s:15:\"recent-posts-70\";i:418;s:15:\"recent-posts-71\";i:419;s:15:\"recent-posts-72\";i:420;s:15:\"recent-posts-73\";i:421;s:15:\"recent-posts-74\";i:422;s:15:\"recent-posts-75\";i:423;s:15:\"recent-posts-76\";i:424;s:15:\"recent-posts-77\";i:425;s:15:\"recent-posts-78\";i:426;s:15:\"recent-posts-79\";i:427;s:15:\"recent-posts-80\";i:428;s:15:\"recent-posts-81\";i:429;s:15:\"recent-posts-82\";i:430;s:15:\"recent-posts-83\";i:431;s:15:\"recent-posts-84\";i:432;s:15:\"recent-posts-85\";i:433;s:15:\"recent-posts-86\";i:434;s:15:\"recent-posts-87\";i:435;s:15:\"recent-posts-88\";i:436;s:15:\"recent-posts-89\";i:437;s:15:\"recent-posts-90\";i:438;s:15:\"recent-posts-91\";i:439;s:15:\"recent-posts-92\";i:440;s:15:\"recent-posts-93\";i:441;s:15:\"recent-posts-94\";i:442;s:15:\"recent-posts-95\";i:443;s:15:\"recent-posts-96\";i:444;s:15:\"recent-posts-97\";i:445;s:15:\"recent-posts-98\";i:446;s:15:\"recent-posts-99\";i:447;s:16:\"recent-posts-100\";i:448;s:16:\"recent-posts-101\";i:449;s:16:\"recent-posts-102\";i:450;s:16:\"recent-posts-103\";i:451;s:16:\"recent-posts-104\";i:452;s:16:\"recent-posts-105\";i:453;s:16:\"recent-posts-106\";i:454;s:16:\"recent-posts-107\";i:455;s:16:\"recent-posts-108\";i:456;s:16:\"recent-posts-109\";i:457;s:16:\"recent-posts-110\";i:458;s:16:\"recent-posts-111\";i:459;s:16:\"recent-posts-112\";i:460;s:16:\"recent-posts-113\";i:461;s:16:\"recent-posts-114\";i:462;s:16:\"recent-posts-115\";i:463;s:16:\"recent-posts-116\";i:464;s:16:\"recent-posts-117\";i:465;s:17:\"recent-comments-2\";}s:9:\"sidebar-1\";a:4:{i:0;s:10:\"search-143\";i:1;s:16:\"recent-posts-143\";i:2;s:12:\"archives-143\";i:3;s:14:\"categories-143\";}s:9:\"sidebar-2\";a:0:{}s:23:\"boldgrid-editor-sidebar\";a:0:{}}}s:22:\"boldgrid_color_palette\";s:828:\"{\"state\":{\"active-palette\":\"palette-primary\",\"active-palette-id\":\"e22d08ee8e4f6ae9731a4d53fa2bb0a7\",\"palettes\":{\"palette-primary\":{\"format\":\"palette-primary\",\"colors\":[\"rgb(0, 167, 225)\",\"rgb(0, 3, 96)\",\"rgb(238, 238, 238)\",\"rgb(20, 0, 112)\",\"rgb(1, 1, 63)\"],\"neutral-color\":\"rgb(238, 238, 238)\"}},\"saved_palettes\":[{\"format\":\"palette-primary\",\"colors\":[\"rgb(0, 167, 225)\",\"rgb(43, 43, 43)\",\"rgb(238, 238, 238)\",\"rgb(56, 56, 56)\",\"rgb(26, 26, 26)\"],\"neutral-color\":\"rgb(238, 238, 238)\"},{\"format\":\"palette-primary\",\"colors\":[\"rgb(68, 187, 164)\",\"rgb(43, 43, 43)\",\"rgb(238, 238, 238)\",\"rgb(56, 56, 56)\",\"rgb(26, 26, 26)\"],\"neutral-color\":\"rgb(238, 238, 238)\"},{\"format\":\"palette-primary\",\"colors\":[\"rgb(0, 167, 225)\",\"rgb(0, 3, 96)\",\"rgb(238, 238, 238)\",\"rgb(20, 0, 112)\",\"rgb(1, 1, 63)\"],\"neutral-color\":\"rgb(238, 238, 238)\"}]}}\";s:21:\"boldgrid_compiled_css\";s:508953:\".sidebar.transparent-background-color.color-1-link-color a{color:#00a7e1}.sidebar.transparent-background-color.color-1-link-color a:hover,.sidebar.transparent-background-color.color-1-link-color a:focus,.sidebar.transparent-background-color.color-1-link-color a:active,.sidebar.transparent-background-color.color-1-link-color a.highlighted{color:#005b7b}.sidebar.transparent-background-color.color-2-link-color a{color:#000360}.sidebar.transparent-background-color.color-2-link-color a:hover,.sidebar.transparent-background-color.color-2-link-color a:focus,.sidebar.transparent-background-color.color-2-link-color a:active,.sidebar.transparent-background-color.color-2-link-color a.highlighted{color:black}.sidebar.transparent-background-color.color-3-link-color a{color:#eee}.sidebar.transparent-background-color.color-3-link-color a:hover,.sidebar.transparent-background-color.color-3-link-color a:focus,.sidebar.transparent-background-color.color-3-link-color a:active,.sidebar.transparent-background-color.color-3-link-color a.highlighted{color:#bbb}.sidebar.transparent-background-color.color-4-link-color a{color:#140070}.sidebar.transparent-background-color.color-4-link-color a:hover,.sidebar.transparent-background-color.color-4-link-color a:focus,.sidebar.transparent-background-color.color-4-link-color a:active,.sidebar.transparent-background-color.color-4-link-color a.highlighted{color:#02000a}.sidebar.transparent-background-color.color-5-link-color a{color:#01013f}.sidebar.transparent-background-color.color-5-link-color a:hover,.sidebar.transparent-background-color.color-5-link-color a:focus,.sidebar.transparent-background-color.color-5-link-color a:active,.sidebar.transparent-background-color.color-5-link-color a.highlighted{color:#0303a3}.sidebar.transparent-background-color.color-neutral-link-color a{color:#eee}.sidebar.transparent-background-color.color-neutral-link-color a:hover,.sidebar.transparent-background-color.color-neutral-link-color a:focus,.sidebar.transparent-background-color.color-neutral-link-color a:active,.sidebar.transparent-background-color.color-neutral-link-color a.highlighted{color:#bbb}.sidebar.transparent-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a{color:#eee}.sidebar.transparent-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a:hover,.sidebar.transparent-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a:focus,.sidebar.transparent-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a:active,.sidebar.transparent-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a.highlighted{color:#bbb}.sidebar.transparent-background-color-hover:focus,.sidebar.transparent-background-color-hover:hover{background-color:#00a7e1 ! important}.sidebar.transparent-background-color.color-1-link-color a{color:#00a7e1}.sidebar.transparent-background-color.color-1-link-color a:hover,.sidebar.transparent-background-color.color-1-link-color a:focus,.sidebar.transparent-background-color.color-1-link-color a:active,.sidebar.transparent-background-color.color-1-link-color a.highlighted{color:#48d0ff}.sidebar.transparent-background-color.color-2-link-color a{color:#000360}.sidebar.transparent-background-color.color-2-link-color a:hover,.sidebar.transparent-background-color.color-2-link-color a:focus,.sidebar.transparent-background-color.color-2-link-color a:active,.sidebar.transparent-background-color.color-2-link-color a.highlighted{color:black}.sidebar.transparent-background-color.color-3-link-color a{color:#eee}.sidebar.transparent-background-color.color-3-link-color a:hover,.sidebar.transparent-background-color.color-3-link-color a:focus,.sidebar.transparent-background-color.color-3-link-color a:active,.sidebar.transparent-background-color.color-3-link-color a.highlighted{color:#bbb}.sidebar.transparent-background-color.color-4-link-color a{color:#140070}.sidebar.transparent-background-color.color-4-link-color a:hover,.sidebar.transparent-background-color.color-4-link-color a:focus,.sidebar.transparent-background-color.color-4-link-color a:active,.sidebar.transparent-background-color.color-4-link-color a.highlighted{color:#2600d6}.sidebar.transparent-background-color.color-5-link-color a{color:#01013f}.sidebar.transparent-background-color.color-5-link-color a:hover,.sidebar.transparent-background-color.color-5-link-color a:focus,.sidebar.transparent-background-color.color-5-link-color a:active,.sidebar.transparent-background-color.color-5-link-color a.highlighted{color:#0303a3}.sidebar.transparent-background-color.color-neutral-link-color a{color:#eee}.sidebar.transparent-background-color.color-neutral-link-color a:hover,.sidebar.transparent-background-color.color-neutral-link-color a:focus,.sidebar.transparent-background-color.color-neutral-link-color a:active,.sidebar.transparent-background-color.color-neutral-link-color a.highlighted{color:#bbb}.sidebar.transparent-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a{color:#eee}.sidebar.transparent-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a:hover,.sidebar.transparent-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a:focus,.sidebar.transparent-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a:active,.sidebar.transparent-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a.highlighted{color:#bbb}.sidebar.transparent-background-color-hover:focus,.sidebar.transparent-background-color-hover:hover{background-color:#000360 ! important}.sidebar.transparent-background-color.color-1-link-color a{color:#00a7e1}.sidebar.transparent-background-color.color-1-link-color a:hover,.sidebar.transparent-background-color.color-1-link-color a:focus,.sidebar.transparent-background-color.color-1-link-color a:active,.sidebar.transparent-background-color.color-1-link-color a.highlighted{color:#005b7b}.sidebar.transparent-background-color.color-2-link-color a{color:#000360}.sidebar.transparent-background-color.color-2-link-color a:hover,.sidebar.transparent-background-color.color-2-link-color a:focus,.sidebar.transparent-background-color.color-2-link-color a:active,.sidebar.transparent-background-color.color-2-link-color a.highlighted{color:black}.sidebar.transparent-background-color.color-3-link-color a{color:#eee}.sidebar.transparent-background-color.color-3-link-color a:hover,.sidebar.transparent-background-color.color-3-link-color a:focus,.sidebar.transparent-background-color.color-3-link-color a:active,.sidebar.transparent-background-color.color-3-link-color a.highlighted{color:#bbb}.sidebar.transparent-background-color.color-4-link-color a{color:#140070}.sidebar.transparent-background-color.color-4-link-color a:hover,.sidebar.transparent-background-color.color-4-link-color a:focus,.sidebar.transparent-background-color.color-4-link-color a:active,.sidebar.transparent-background-color.color-4-link-color a.highlighted{color:#02000a}.sidebar.transparent-background-color.color-5-link-color a{color:#01013f}.sidebar.transparent-background-color.color-5-link-color a:hover,.sidebar.transparent-background-color.color-5-link-color a:focus,.sidebar.transparent-background-color.color-5-link-color a:active,.sidebar.transparent-background-color.color-5-link-color a.highlighted{color:#0303a3}.sidebar.transparent-background-color.color-neutral-link-color a{color:#eee}.sidebar.transparent-background-color.color-neutral-link-color a:hover,.sidebar.transparent-background-color.color-neutral-link-color a:focus,.sidebar.transparent-background-color.color-neutral-link-color a:active,.sidebar.transparent-background-color.color-neutral-link-color a.highlighted{color:#bbb}.sidebar.transparent-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a{color:#eee}.sidebar.transparent-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a:hover,.sidebar.transparent-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a:focus,.sidebar.transparent-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a:active,.sidebar.transparent-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a.highlighted{color:#bbb}.sidebar.transparent-background-color-hover:focus,.sidebar.transparent-background-color-hover:hover{background-color:#eee ! important}.sidebar.transparent-background-color.color-1-link-color a{color:#00a7e1}.sidebar.transparent-background-color.color-1-link-color a:hover,.sidebar.transparent-background-color.color-1-link-color a:focus,.sidebar.transparent-background-color.color-1-link-color a:active,.sidebar.transparent-background-color.color-1-link-color a.highlighted{color:#48d0ff}.sidebar.transparent-background-color.color-2-link-color a{color:#000360}.sidebar.transparent-background-color.color-2-link-color a:hover,.sidebar.transparent-background-color.color-2-link-color a:focus,.sidebar.transparent-background-color.color-2-link-color a:active,.sidebar.transparent-background-color.color-2-link-color a.highlighted{color:black}.sidebar.transparent-background-color.color-3-link-color a{color:#eee}.sidebar.transparent-background-color.color-3-link-color a:hover,.sidebar.transparent-background-color.color-3-link-color a:focus,.sidebar.transparent-background-color.color-3-link-color a:active,.sidebar.transparent-background-color.color-3-link-color a.highlighted{color:#bbb}.sidebar.transparent-background-color.color-4-link-color a{color:#140070}.sidebar.transparent-background-color.color-4-link-color a:hover,.sidebar.transparent-background-color.color-4-link-color a:focus,.sidebar.transparent-background-color.color-4-link-color a:active,.sidebar.transparent-background-color.color-4-link-color a.highlighted{color:#02000a}.sidebar.transparent-background-color.color-5-link-color a{color:#01013f}.sidebar.transparent-background-color.color-5-link-color a:hover,.sidebar.transparent-background-color.color-5-link-color a:focus,.sidebar.transparent-background-color.color-5-link-color a:active,.sidebar.transparent-background-color.color-5-link-color a.highlighted{color:#0303a3}.sidebar.transparent-background-color.color-neutral-link-color a{color:#eee}.sidebar.transparent-background-color.color-neutral-link-color a:hover,.sidebar.transparent-background-color.color-neutral-link-color a:focus,.sidebar.transparent-background-color.color-neutral-link-color a:active,.sidebar.transparent-background-color.color-neutral-link-color a.highlighted{color:#bbb}.sidebar.transparent-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a{color:#eee}.sidebar.transparent-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a:hover,.sidebar.transparent-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a:focus,.sidebar.transparent-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a:active,.sidebar.transparent-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a.highlighted{color:#bbb}.sidebar.transparent-background-color-hover:focus,.sidebar.transparent-background-color-hover:hover{background-color:#140070 ! important}.sidebar.transparent-background-color.color-1-link-color a{color:#00a7e1}.sidebar.transparent-background-color.color-1-link-color a:hover,.sidebar.transparent-background-color.color-1-link-color a:focus,.sidebar.transparent-background-color.color-1-link-color a:active,.sidebar.transparent-background-color.color-1-link-color a.highlighted{color:#48d0ff}.sidebar.transparent-background-color.color-2-link-color a{color:#000360}.sidebar.transparent-background-color.color-2-link-color a:hover,.sidebar.transparent-background-color.color-2-link-color a:focus,.sidebar.transparent-background-color.color-2-link-color a:active,.sidebar.transparent-background-color.color-2-link-color a.highlighted{color:#0006c6}.sidebar.transparent-background-color.color-3-link-color a{color:#eee}.sidebar.transparent-background-color.color-3-link-color a:hover,.sidebar.transparent-background-color.color-3-link-color a:focus,.sidebar.transparent-background-color.color-3-link-color a:active,.sidebar.transparent-background-color.color-3-link-color a.highlighted{color:#bbb}.sidebar.transparent-background-color.color-4-link-color a{color:#140070}.sidebar.transparent-background-color.color-4-link-color a:hover,.sidebar.transparent-background-color.color-4-link-color a:focus,.sidebar.transparent-background-color.color-4-link-color a:active,.sidebar.transparent-background-color.color-4-link-color a.highlighted{color:#2600d6}.sidebar.transparent-background-color.color-5-link-color a{color:#01013f}.sidebar.transparent-background-color.color-5-link-color a:hover,.sidebar.transparent-background-color.color-5-link-color a:focus,.sidebar.transparent-background-color.color-5-link-color a:active,.sidebar.transparent-background-color.color-5-link-color a.highlighted{color:#0303a3}.sidebar.transparent-background-color.color-neutral-link-color a{color:#eee}.sidebar.transparent-background-color.color-neutral-link-color a:hover,.sidebar.transparent-background-color.color-neutral-link-color a:focus,.sidebar.transparent-background-color.color-neutral-link-color a:active,.sidebar.transparent-background-color.color-neutral-link-color a.highlighted{color:#bbb}.sidebar.transparent-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a{color:#eee}.sidebar.transparent-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a:hover,.sidebar.transparent-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a:focus,.sidebar.transparent-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a:active,.sidebar.transparent-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a.highlighted{color:#bbb}.sidebar.transparent-background-color-hover:focus,.sidebar.transparent-background-color-hover:hover{background-color:#01013f ! important}.color1-background.color-1-link-color a{color:#00a7e1}.color1-background.color-1-link-color a:hover,.color1-background.color-1-link-color a:focus,.color1-background.color-1-link-color a:active,.color1-background.color-1-link-color a.highlighted{color:#005b7b}.color1-background.sidebar.color-1-link-color a{color:#00a7e1}.color1-background.sidebar.color-1-link-color a:hover,.color1-background.sidebar.color-1-link-color a:focus,.color1-background.sidebar.color-1-link-color a:active,.color1-background.sidebar.color-1-link-color a.highlighted{color:#005b7b}.color1-background.sm.color-1-link-color li.btn a,.color1-background.sm.color-1-link-color .palette-primary li.button-primary a,.palette-primary .color1-background.sm.color-1-link-color li.button-primary a,.color1-background.sm.color-1-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color1-background.sm.color-1-link-color li.button a,.color1-background.sm.color-1-link-color .palette-primary li.button-secondary a,.palette-primary .color1-background.sm.color-1-link-color li.button-secondary a,.color1-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color1-background.sm.color-1-link-color li.alt.button a{color:inherit}.color1-background.sm.color-1-link-color li.btn a:hover,.color1-background.sm.color-1-link-color .palette-primary li.button-primary a:hover,.palette-primary .color1-background.sm.color-1-link-color li.button-primary a:hover,.color1-background.sm.color-1-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color1-background.sm.color-1-link-color li.button a:hover,.color1-background.sm.color-1-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color1-background.sm.color-1-link-color li.button-secondary a:hover,.color1-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color1-background.sm.color-1-link-color li.alt.button a:hover,.color1-background.sm.color-1-link-color li.btn a:focus,.color1-background.sm.color-1-link-color .palette-primary li.button-primary a:focus,.palette-primary .color1-background.sm.color-1-link-color li.button-primary a:focus,.color1-background.sm.color-1-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color1-background.sm.color-1-link-color li.button a:focus,.color1-background.sm.color-1-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color1-background.sm.color-1-link-color li.button-secondary a:focus,.color1-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color1-background.sm.color-1-link-color li.alt.button a:focus,.color1-background.sm.color-1-link-color li.btn a:active,.color1-background.sm.color-1-link-color .palette-primary li.button-primary a:active,.palette-primary .color1-background.sm.color-1-link-color li.button-primary a:active,.color1-background.sm.color-1-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color1-background.sm.color-1-link-color li.button a:active,.color1-background.sm.color-1-link-color .palette-primary li.button-secondary a:active,.palette-primary .color1-background.sm.color-1-link-color li.button-secondary a:active,.color1-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color1-background.sm.color-1-link-color li.alt.button a:active,.color1-background.sm.color-1-link-color li.btn a.highlighted,.color1-background.sm.color-1-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color1-background.sm.color-1-link-color li.button-primary a.highlighted,.color1-background.sm.color-1-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color1-background.sm.color-1-link-color li.button a.highlighted,.color1-background.sm.color-1-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color1-background.sm.color-1-link-color li.button-secondary a.highlighted,.color1-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color1-background.sm.color-1-link-color li.alt.button a.highlighted{color:inherit}.color1-background.sm.color-1-link-color li:not(.btn) a{color:#00a7e1}.color1-background.sm.color-1-link-color li:not(.btn) a:hover,.color1-background.sm.color-1-link-color li:not(.btn) a:focus,.color1-background.sm.color-1-link-color li:not(.btn) a:active,.color1-background.sm.color-1-link-color li:not(.btn) a.highlighted{color:#005b7b}.color1-background.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color1-background.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color1-background.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color1-background.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color1-background.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color1-background.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color1-background.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color1-background.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color1-background.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color1-background.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color1-background.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color1-background.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color1-background.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color1-background.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color1-background.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color1-background.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color1-background.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color1-background.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color1-background.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color1-background.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color1-background.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color1-background.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color1-background.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color1-background.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color1-background.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color1-background.color-2-link-color a{color:#000360}.color1-background.color-2-link-color a:hover,.color1-background.color-2-link-color a:focus,.color1-background.color-2-link-color a:active,.color1-background.color-2-link-color a.highlighted{color:black}.color1-background.sidebar.color-2-link-color a{color:#000360}.color1-background.sidebar.color-2-link-color a:hover,.color1-background.sidebar.color-2-link-color a:focus,.color1-background.sidebar.color-2-link-color a:active,.color1-background.sidebar.color-2-link-color a.highlighted{color:black}.color1-background.sm.color-2-link-color li.btn a,.color1-background.sm.color-2-link-color .palette-primary li.button-primary a,.palette-primary .color1-background.sm.color-2-link-color li.button-primary a,.color1-background.sm.color-2-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color1-background.sm.color-2-link-color li.button a,.color1-background.sm.color-2-link-color .palette-primary li.button-secondary a,.palette-primary .color1-background.sm.color-2-link-color li.button-secondary a,.color1-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color1-background.sm.color-2-link-color li.alt.button a{color:inherit}.color1-background.sm.color-2-link-color li.btn a:hover,.color1-background.sm.color-2-link-color .palette-primary li.button-primary a:hover,.palette-primary .color1-background.sm.color-2-link-color li.button-primary a:hover,.color1-background.sm.color-2-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color1-background.sm.color-2-link-color li.button a:hover,.color1-background.sm.color-2-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color1-background.sm.color-2-link-color li.button-secondary a:hover,.color1-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color1-background.sm.color-2-link-color li.alt.button a:hover,.color1-background.sm.color-2-link-color li.btn a:focus,.color1-background.sm.color-2-link-color .palette-primary li.button-primary a:focus,.palette-primary .color1-background.sm.color-2-link-color li.button-primary a:focus,.color1-background.sm.color-2-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color1-background.sm.color-2-link-color li.button a:focus,.color1-background.sm.color-2-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color1-background.sm.color-2-link-color li.button-secondary a:focus,.color1-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color1-background.sm.color-2-link-color li.alt.button a:focus,.color1-background.sm.color-2-link-color li.btn a:active,.color1-background.sm.color-2-link-color .palette-primary li.button-primary a:active,.palette-primary .color1-background.sm.color-2-link-color li.button-primary a:active,.color1-background.sm.color-2-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color1-background.sm.color-2-link-color li.button a:active,.color1-background.sm.color-2-link-color .palette-primary li.button-secondary a:active,.palette-primary .color1-background.sm.color-2-link-color li.button-secondary a:active,.color1-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color1-background.sm.color-2-link-color li.alt.button a:active,.color1-background.sm.color-2-link-color li.btn a.highlighted,.color1-background.sm.color-2-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color1-background.sm.color-2-link-color li.button-primary a.highlighted,.color1-background.sm.color-2-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color1-background.sm.color-2-link-color li.button a.highlighted,.color1-background.sm.color-2-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color1-background.sm.color-2-link-color li.button-secondary a.highlighted,.color1-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color1-background.sm.color-2-link-color li.alt.button a.highlighted{color:inherit}.color1-background.sm.color-2-link-color li:not(.btn) a{color:#000360}.color1-background.sm.color-2-link-color li:not(.btn) a:hover,.color1-background.sm.color-2-link-color li:not(.btn) a:focus,.color1-background.sm.color-2-link-color li:not(.btn) a:active,.color1-background.sm.color-2-link-color li:not(.btn) a.highlighted{color:black}.color1-background.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color1-background.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color1-background.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color1-background.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color1-background.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color1-background.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color1-background.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color1-background.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color1-background.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color1-background.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color1-background.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color1-background.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color1-background.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color1-background.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color1-background.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color1-background.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color1-background.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color1-background.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color1-background.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color1-background.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color1-background.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color1-background.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color1-background.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color1-background.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color1-background.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color1-background.color-3-link-color a{color:#eee}.color1-background.color-3-link-color a:hover,.color1-background.color-3-link-color a:focus,.color1-background.color-3-link-color a:active,.color1-background.color-3-link-color a.highlighted{color:#bbb}.color1-background.sidebar.color-3-link-color a{color:#eee}.color1-background.sidebar.color-3-link-color a:hover,.color1-background.sidebar.color-3-link-color a:focus,.color1-background.sidebar.color-3-link-color a:active,.color1-background.sidebar.color-3-link-color a.highlighted{color:#bbb}.color1-background.sm.color-3-link-color li.btn a,.color1-background.sm.color-3-link-color .palette-primary li.button-primary a,.palette-primary .color1-background.sm.color-3-link-color li.button-primary a,.color1-background.sm.color-3-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color1-background.sm.color-3-link-color li.button a,.color1-background.sm.color-3-link-color .palette-primary li.button-secondary a,.palette-primary .color1-background.sm.color-3-link-color li.button-secondary a,.color1-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color1-background.sm.color-3-link-color li.alt.button a{color:inherit}.color1-background.sm.color-3-link-color li.btn a:hover,.color1-background.sm.color-3-link-color .palette-primary li.button-primary a:hover,.palette-primary .color1-background.sm.color-3-link-color li.button-primary a:hover,.color1-background.sm.color-3-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color1-background.sm.color-3-link-color li.button a:hover,.color1-background.sm.color-3-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color1-background.sm.color-3-link-color li.button-secondary a:hover,.color1-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color1-background.sm.color-3-link-color li.alt.button a:hover,.color1-background.sm.color-3-link-color li.btn a:focus,.color1-background.sm.color-3-link-color .palette-primary li.button-primary a:focus,.palette-primary .color1-background.sm.color-3-link-color li.button-primary a:focus,.color1-background.sm.color-3-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color1-background.sm.color-3-link-color li.button a:focus,.color1-background.sm.color-3-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color1-background.sm.color-3-link-color li.button-secondary a:focus,.color1-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color1-background.sm.color-3-link-color li.alt.button a:focus,.color1-background.sm.color-3-link-color li.btn a:active,.color1-background.sm.color-3-link-color .palette-primary li.button-primary a:active,.palette-primary .color1-background.sm.color-3-link-color li.button-primary a:active,.color1-background.sm.color-3-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color1-background.sm.color-3-link-color li.button a:active,.color1-background.sm.color-3-link-color .palette-primary li.button-secondary a:active,.palette-primary .color1-background.sm.color-3-link-color li.button-secondary a:active,.color1-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color1-background.sm.color-3-link-color li.alt.button a:active,.color1-background.sm.color-3-link-color li.btn a.highlighted,.color1-background.sm.color-3-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color1-background.sm.color-3-link-color li.button-primary a.highlighted,.color1-background.sm.color-3-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color1-background.sm.color-3-link-color li.button a.highlighted,.color1-background.sm.color-3-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color1-background.sm.color-3-link-color li.button-secondary a.highlighted,.color1-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color1-background.sm.color-3-link-color li.alt.button a.highlighted{color:inherit}.color1-background.sm.color-3-link-color li:not(.btn) a{color:#eee}.color1-background.sm.color-3-link-color li:not(.btn) a:hover,.color1-background.sm.color-3-link-color li:not(.btn) a:focus,.color1-background.sm.color-3-link-color li:not(.btn) a:active,.color1-background.sm.color-3-link-color li:not(.btn) a.highlighted{color:#bbb}.color1-background.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color1-background.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color1-background.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color1-background.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color1-background.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color1-background.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color1-background.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color1-background.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color1-background.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color1-background.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color1-background.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color1-background.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color1-background.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color1-background.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color1-background.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color1-background.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color1-background.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color1-background.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color1-background.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color1-background.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color1-background.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color1-background.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color1-background.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color1-background.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color1-background.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color1-background.color-4-link-color a{color:#140070}.color1-background.color-4-link-color a:hover,.color1-background.color-4-link-color a:focus,.color1-background.color-4-link-color a:active,.color1-background.color-4-link-color a.highlighted{color:#02000a}.color1-background.sidebar.color-4-link-color a{color:#140070}.color1-background.sidebar.color-4-link-color a:hover,.color1-background.sidebar.color-4-link-color a:focus,.color1-background.sidebar.color-4-link-color a:active,.color1-background.sidebar.color-4-link-color a.highlighted{color:#02000a}.color1-background.sm.color-4-link-color li.btn a,.color1-background.sm.color-4-link-color .palette-primary li.button-primary a,.palette-primary .color1-background.sm.color-4-link-color li.button-primary a,.color1-background.sm.color-4-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color1-background.sm.color-4-link-color li.button a,.color1-background.sm.color-4-link-color .palette-primary li.button-secondary a,.palette-primary .color1-background.sm.color-4-link-color li.button-secondary a,.color1-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color1-background.sm.color-4-link-color li.alt.button a{color:inherit}.color1-background.sm.color-4-link-color li.btn a:hover,.color1-background.sm.color-4-link-color .palette-primary li.button-primary a:hover,.palette-primary .color1-background.sm.color-4-link-color li.button-primary a:hover,.color1-background.sm.color-4-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color1-background.sm.color-4-link-color li.button a:hover,.color1-background.sm.color-4-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color1-background.sm.color-4-link-color li.button-secondary a:hover,.color1-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color1-background.sm.color-4-link-color li.alt.button a:hover,.color1-background.sm.color-4-link-color li.btn a:focus,.color1-background.sm.color-4-link-color .palette-primary li.button-primary a:focus,.palette-primary .color1-background.sm.color-4-link-color li.button-primary a:focus,.color1-background.sm.color-4-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color1-background.sm.color-4-link-color li.button a:focus,.color1-background.sm.color-4-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color1-background.sm.color-4-link-color li.button-secondary a:focus,.color1-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color1-background.sm.color-4-link-color li.alt.button a:focus,.color1-background.sm.color-4-link-color li.btn a:active,.color1-background.sm.color-4-link-color .palette-primary li.button-primary a:active,.palette-primary .color1-background.sm.color-4-link-color li.button-primary a:active,.color1-background.sm.color-4-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color1-background.sm.color-4-link-color li.button a:active,.color1-background.sm.color-4-link-color .palette-primary li.button-secondary a:active,.palette-primary .color1-background.sm.color-4-link-color li.button-secondary a:active,.color1-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color1-background.sm.color-4-link-color li.alt.button a:active,.color1-background.sm.color-4-link-color li.btn a.highlighted,.color1-background.sm.color-4-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color1-background.sm.color-4-link-color li.button-primary a.highlighted,.color1-background.sm.color-4-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color1-background.sm.color-4-link-color li.button a.highlighted,.color1-background.sm.color-4-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color1-background.sm.color-4-link-color li.button-secondary a.highlighted,.color1-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color1-background.sm.color-4-link-color li.alt.button a.highlighted{color:inherit}.color1-background.sm.color-4-link-color li:not(.btn) a{color:#140070}.color1-background.sm.color-4-link-color li:not(.btn) a:hover,.color1-background.sm.color-4-link-color li:not(.btn) a:focus,.color1-background.sm.color-4-link-color li:not(.btn) a:active,.color1-background.sm.color-4-link-color li:not(.btn) a.highlighted{color:#02000a}.color1-background.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color1-background.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color1-background.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color1-background.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color1-background.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color1-background.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color1-background.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color1-background.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color1-background.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color1-background.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color1-background.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color1-background.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color1-background.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color1-background.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color1-background.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color1-background.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color1-background.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color1-background.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color1-background.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color1-background.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color1-background.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color1-background.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color1-background.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color1-background.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color1-background.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color1-background.color-5-link-color a{color:#01013f}.color1-background.color-5-link-color a:hover,.color1-background.color-5-link-color a:focus,.color1-background.color-5-link-color a:active,.color1-background.color-5-link-color a.highlighted{color:#0303a3}.color1-background.sidebar.color-5-link-color a{color:#01013f}.color1-background.sidebar.color-5-link-color a:hover,.color1-background.sidebar.color-5-link-color a:focus,.color1-background.sidebar.color-5-link-color a:active,.color1-background.sidebar.color-5-link-color a.highlighted{color:#0303a3}.color1-background.sm.color-5-link-color li.btn a,.color1-background.sm.color-5-link-color .palette-primary li.button-primary a,.palette-primary .color1-background.sm.color-5-link-color li.button-primary a,.color1-background.sm.color-5-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color1-background.sm.color-5-link-color li.button a,.color1-background.sm.color-5-link-color .palette-primary li.button-secondary a,.palette-primary .color1-background.sm.color-5-link-color li.button-secondary a,.color1-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color1-background.sm.color-5-link-color li.alt.button a{color:inherit}.color1-background.sm.color-5-link-color li.btn a:hover,.color1-background.sm.color-5-link-color .palette-primary li.button-primary a:hover,.palette-primary .color1-background.sm.color-5-link-color li.button-primary a:hover,.color1-background.sm.color-5-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color1-background.sm.color-5-link-color li.button a:hover,.color1-background.sm.color-5-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color1-background.sm.color-5-link-color li.button-secondary a:hover,.color1-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color1-background.sm.color-5-link-color li.alt.button a:hover,.color1-background.sm.color-5-link-color li.btn a:focus,.color1-background.sm.color-5-link-color .palette-primary li.button-primary a:focus,.palette-primary .color1-background.sm.color-5-link-color li.button-primary a:focus,.color1-background.sm.color-5-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color1-background.sm.color-5-link-color li.button a:focus,.color1-background.sm.color-5-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color1-background.sm.color-5-link-color li.button-secondary a:focus,.color1-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color1-background.sm.color-5-link-color li.alt.button a:focus,.color1-background.sm.color-5-link-color li.btn a:active,.color1-background.sm.color-5-link-color .palette-primary li.button-primary a:active,.palette-primary .color1-background.sm.color-5-link-color li.button-primary a:active,.color1-background.sm.color-5-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color1-background.sm.color-5-link-color li.button a:active,.color1-background.sm.color-5-link-color .palette-primary li.button-secondary a:active,.palette-primary .color1-background.sm.color-5-link-color li.button-secondary a:active,.color1-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color1-background.sm.color-5-link-color li.alt.button a:active,.color1-background.sm.color-5-link-color li.btn a.highlighted,.color1-background.sm.color-5-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color1-background.sm.color-5-link-color li.button-primary a.highlighted,.color1-background.sm.color-5-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color1-background.sm.color-5-link-color li.button a.highlighted,.color1-background.sm.color-5-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color1-background.sm.color-5-link-color li.button-secondary a.highlighted,.color1-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color1-background.sm.color-5-link-color li.alt.button a.highlighted{color:inherit}.color1-background.sm.color-5-link-color li:not(.btn) a{color:#01013f}.color1-background.sm.color-5-link-color li:not(.btn) a:hover,.color1-background.sm.color-5-link-color li:not(.btn) a:focus,.color1-background.sm.color-5-link-color li:not(.btn) a:active,.color1-background.sm.color-5-link-color li:not(.btn) a.highlighted{color:#0303a3}.color1-background.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color1-background.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color1-background.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color1-background.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color1-background.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color1-background.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color1-background.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color1-background.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color1-background.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color1-background.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color1-background.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color1-background.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color1-background.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color1-background.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color1-background.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color1-background.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color1-background.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color1-background.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color1-background.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color1-background.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color1-background.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color1-background.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color1-background.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color1-background.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color1-background.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color1-background.color-neutral-link-color a{color:#eee}.color1-background.color-neutral-link-color a:hover,.color1-background.color-neutral-link-color a:focus,.color1-background.color-neutral-link-color a:active,.color1-background.color-neutral-link-color a.highlighted{color:#bbb}.color1-background.color-neutral-sub-link-color.sm ul li:not(.btn) a{color:#eee}.color1-background.color-neutral-sub-link-color.sm ul li:not(.btn) a:hover,.color1-background.color-neutral-sub-link-color.sm ul li:not(.btn) a:focus,.color1-background.color-neutral-sub-link-color.sm ul li:not(.btn) a:active,.color1-background.color-neutral-sub-link-color.sm ul li:not(.btn) a.highlighted{color:#bbb}.color1-background.color-1-sub-link-color ul li:not(.btn) a{color:#00a7e1}.color1-background.color-1-sub-link-color ul li:not(.btn) a:hover,.color1-background.color-1-sub-link-color ul li:not(.btn) a:focus,.color1-background.color-1-sub-link-color ul li:not(.btn) a:active,.color1-background.color-1-sub-link-color ul li:not(.btn) a.highlighted{color:#005b7b}.color1-background.color-2-sub-link-color ul li:not(.btn) a{color:#000360}.color1-background.color-2-sub-link-color ul li:not(.btn) a:hover,.color1-background.color-2-sub-link-color ul li:not(.btn) a:focus,.color1-background.color-2-sub-link-color ul li:not(.btn) a:active,.color1-background.color-2-sub-link-color ul li:not(.btn) a.highlighted{color:black}.color1-background.color-3-sub-link-color ul li:not(.btn) a{color:#eee}.color1-background.color-3-sub-link-color ul li:not(.btn) a:hover,.color1-background.color-3-sub-link-color ul li:not(.btn) a:focus,.color1-background.color-3-sub-link-color ul li:not(.btn) a:active,.color1-background.color-3-sub-link-color ul li:not(.btn) a.highlighted{color:#bbb}.color1-background.color-4-sub-link-color ul li:not(.btn) a{color:#140070}.color1-background.color-4-sub-link-color ul li:not(.btn) a:hover,.color1-background.color-4-sub-link-color ul li:not(.btn) a:focus,.color1-background.color-4-sub-link-color ul li:not(.btn) a:active,.color1-background.color-4-sub-link-color ul li:not(.btn) a.highlighted{color:#02000a}.color1-background.color-5-sub-link-color ul li:not(.btn) a{color:#01013f}.color1-background.color-5-sub-link-color ul li:not(.btn) a:hover,.color1-background.color-5-sub-link-color ul li:not(.btn) a:focus,.color1-background.color-5-sub-link-color ul li:not(.btn) a:active,.color1-background.color-5-sub-link-color ul li:not(.btn) a.highlighted{color:#0303a3}.color1-background-hover:focus,.color1-background-hover:hover{background:#00a7e1 ! important}.color2-background.color-1-link-color a{color:#00a7e1}.color2-background.color-1-link-color a:hover,.color2-background.color-1-link-color a:focus,.color2-background.color-1-link-color a:active,.color2-background.color-1-link-color a.highlighted{color:#48d0ff}.color2-background.sidebar.color-1-link-color a{color:#00a7e1}.color2-background.sidebar.color-1-link-color a:hover,.color2-background.sidebar.color-1-link-color a:focus,.color2-background.sidebar.color-1-link-color a:active,.color2-background.sidebar.color-1-link-color a.highlighted{color:#48d0ff}.color2-background.sm.color-1-link-color li.btn a,.color2-background.sm.color-1-link-color .palette-primary li.button-primary a,.palette-primary .color2-background.sm.color-1-link-color li.button-primary a,.color2-background.sm.color-1-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color2-background.sm.color-1-link-color li.button a,.color2-background.sm.color-1-link-color .palette-primary li.button-secondary a,.palette-primary .color2-background.sm.color-1-link-color li.button-secondary a,.color2-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color2-background.sm.color-1-link-color li.alt.button a{color:inherit}.color2-background.sm.color-1-link-color li.btn a:hover,.color2-background.sm.color-1-link-color .palette-primary li.button-primary a:hover,.palette-primary .color2-background.sm.color-1-link-color li.button-primary a:hover,.color2-background.sm.color-1-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color2-background.sm.color-1-link-color li.button a:hover,.color2-background.sm.color-1-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color2-background.sm.color-1-link-color li.button-secondary a:hover,.color2-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color2-background.sm.color-1-link-color li.alt.button a:hover,.color2-background.sm.color-1-link-color li.btn a:focus,.color2-background.sm.color-1-link-color .palette-primary li.button-primary a:focus,.palette-primary .color2-background.sm.color-1-link-color li.button-primary a:focus,.color2-background.sm.color-1-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color2-background.sm.color-1-link-color li.button a:focus,.color2-background.sm.color-1-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color2-background.sm.color-1-link-color li.button-secondary a:focus,.color2-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color2-background.sm.color-1-link-color li.alt.button a:focus,.color2-background.sm.color-1-link-color li.btn a:active,.color2-background.sm.color-1-link-color .palette-primary li.button-primary a:active,.palette-primary .color2-background.sm.color-1-link-color li.button-primary a:active,.color2-background.sm.color-1-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color2-background.sm.color-1-link-color li.button a:active,.color2-background.sm.color-1-link-color .palette-primary li.button-secondary a:active,.palette-primary .color2-background.sm.color-1-link-color li.button-secondary a:active,.color2-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color2-background.sm.color-1-link-color li.alt.button a:active,.color2-background.sm.color-1-link-color li.btn a.highlighted,.color2-background.sm.color-1-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color2-background.sm.color-1-link-color li.button-primary a.highlighted,.color2-background.sm.color-1-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color2-background.sm.color-1-link-color li.button a.highlighted,.color2-background.sm.color-1-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color2-background.sm.color-1-link-color li.button-secondary a.highlighted,.color2-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color2-background.sm.color-1-link-color li.alt.button a.highlighted{color:inherit}.color2-background.sm.color-1-link-color li:not(.btn) a{color:#00a7e1}.color2-background.sm.color-1-link-color li:not(.btn) a:hover,.color2-background.sm.color-1-link-color li:not(.btn) a:focus,.color2-background.sm.color-1-link-color li:not(.btn) a:active,.color2-background.sm.color-1-link-color li:not(.btn) a.highlighted{color:#48d0ff}.color2-background.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color2-background.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color2-background.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color2-background.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color2-background.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color2-background.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color2-background.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color2-background.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color2-background.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color2-background.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color2-background.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color2-background.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color2-background.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color2-background.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color2-background.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color2-background.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color2-background.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color2-background.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color2-background.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color2-background.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color2-background.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color2-background.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color2-background.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color2-background.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color2-background.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color2-background.color-2-link-color a{color:#000360}.color2-background.color-2-link-color a:hover,.color2-background.color-2-link-color a:focus,.color2-background.color-2-link-color a:active,.color2-background.color-2-link-color a.highlighted{color:black}.color2-background.sidebar.color-2-link-color a{color:#000360}.color2-background.sidebar.color-2-link-color a:hover,.color2-background.sidebar.color-2-link-color a:focus,.color2-background.sidebar.color-2-link-color a:active,.color2-background.sidebar.color-2-link-color a.highlighted{color:black}.color2-background.sm.color-2-link-color li.btn a,.color2-background.sm.color-2-link-color .palette-primary li.button-primary a,.palette-primary .color2-background.sm.color-2-link-color li.button-primary a,.color2-background.sm.color-2-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color2-background.sm.color-2-link-color li.button a,.color2-background.sm.color-2-link-color .palette-primary li.button-secondary a,.palette-primary .color2-background.sm.color-2-link-color li.button-secondary a,.color2-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color2-background.sm.color-2-link-color li.alt.button a{color:inherit}.color2-background.sm.color-2-link-color li.btn a:hover,.color2-background.sm.color-2-link-color .palette-primary li.button-primary a:hover,.palette-primary .color2-background.sm.color-2-link-color li.button-primary a:hover,.color2-background.sm.color-2-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color2-background.sm.color-2-link-color li.button a:hover,.color2-background.sm.color-2-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color2-background.sm.color-2-link-color li.button-secondary a:hover,.color2-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color2-background.sm.color-2-link-color li.alt.button a:hover,.color2-background.sm.color-2-link-color li.btn a:focus,.color2-background.sm.color-2-link-color .palette-primary li.button-primary a:focus,.palette-primary .color2-background.sm.color-2-link-color li.button-primary a:focus,.color2-background.sm.color-2-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color2-background.sm.color-2-link-color li.button a:focus,.color2-background.sm.color-2-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color2-background.sm.color-2-link-color li.button-secondary a:focus,.color2-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color2-background.sm.color-2-link-color li.alt.button a:focus,.color2-background.sm.color-2-link-color li.btn a:active,.color2-background.sm.color-2-link-color .palette-primary li.button-primary a:active,.palette-primary .color2-background.sm.color-2-link-color li.button-primary a:active,.color2-background.sm.color-2-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color2-background.sm.color-2-link-color li.button a:active,.color2-background.sm.color-2-link-color .palette-primary li.button-secondary a:active,.palette-primary .color2-background.sm.color-2-link-color li.button-secondary a:active,.color2-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color2-background.sm.color-2-link-color li.alt.button a:active,.color2-background.sm.color-2-link-color li.btn a.highlighted,.color2-background.sm.color-2-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color2-background.sm.color-2-link-color li.button-primary a.highlighted,.color2-background.sm.color-2-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color2-background.sm.color-2-link-color li.button a.highlighted,.color2-background.sm.color-2-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color2-background.sm.color-2-link-color li.button-secondary a.highlighted,.color2-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color2-background.sm.color-2-link-color li.alt.button a.highlighted{color:inherit}.color2-background.sm.color-2-link-color li:not(.btn) a{color:#000360}.color2-background.sm.color-2-link-color li:not(.btn) a:hover,.color2-background.sm.color-2-link-color li:not(.btn) a:focus,.color2-background.sm.color-2-link-color li:not(.btn) a:active,.color2-background.sm.color-2-link-color li:not(.btn) a.highlighted{color:black}.color2-background.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color2-background.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color2-background.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color2-background.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color2-background.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color2-background.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color2-background.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color2-background.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color2-background.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color2-background.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color2-background.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color2-background.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color2-background.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color2-background.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color2-background.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color2-background.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color2-background.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color2-background.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color2-background.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color2-background.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color2-background.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color2-background.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color2-background.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color2-background.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color2-background.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color2-background.color-3-link-color a{color:#eee}.color2-background.color-3-link-color a:hover,.color2-background.color-3-link-color a:focus,.color2-background.color-3-link-color a:active,.color2-background.color-3-link-color a.highlighted{color:#bbb}.color2-background.sidebar.color-3-link-color a{color:#eee}.color2-background.sidebar.color-3-link-color a:hover,.color2-background.sidebar.color-3-link-color a:focus,.color2-background.sidebar.color-3-link-color a:active,.color2-background.sidebar.color-3-link-color a.highlighted{color:#bbb}.color2-background.sm.color-3-link-color li.btn a,.color2-background.sm.color-3-link-color .palette-primary li.button-primary a,.palette-primary .color2-background.sm.color-3-link-color li.button-primary a,.color2-background.sm.color-3-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color2-background.sm.color-3-link-color li.button a,.color2-background.sm.color-3-link-color .palette-primary li.button-secondary a,.palette-primary .color2-background.sm.color-3-link-color li.button-secondary a,.color2-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color2-background.sm.color-3-link-color li.alt.button a{color:inherit}.color2-background.sm.color-3-link-color li.btn a:hover,.color2-background.sm.color-3-link-color .palette-primary li.button-primary a:hover,.palette-primary .color2-background.sm.color-3-link-color li.button-primary a:hover,.color2-background.sm.color-3-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color2-background.sm.color-3-link-color li.button a:hover,.color2-background.sm.color-3-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color2-background.sm.color-3-link-color li.button-secondary a:hover,.color2-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color2-background.sm.color-3-link-color li.alt.button a:hover,.color2-background.sm.color-3-link-color li.btn a:focus,.color2-background.sm.color-3-link-color .palette-primary li.button-primary a:focus,.palette-primary .color2-background.sm.color-3-link-color li.button-primary a:focus,.color2-background.sm.color-3-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color2-background.sm.color-3-link-color li.button a:focus,.color2-background.sm.color-3-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color2-background.sm.color-3-link-color li.button-secondary a:focus,.color2-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color2-background.sm.color-3-link-color li.alt.button a:focus,.color2-background.sm.color-3-link-color li.btn a:active,.color2-background.sm.color-3-link-color .palette-primary li.button-primary a:active,.palette-primary .color2-background.sm.color-3-link-color li.button-primary a:active,.color2-background.sm.color-3-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color2-background.sm.color-3-link-color li.button a:active,.color2-background.sm.color-3-link-color .palette-primary li.button-secondary a:active,.palette-primary .color2-background.sm.color-3-link-color li.button-secondary a:active,.color2-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color2-background.sm.color-3-link-color li.alt.button a:active,.color2-background.sm.color-3-link-color li.btn a.highlighted,.color2-background.sm.color-3-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color2-background.sm.color-3-link-color li.button-primary a.highlighted,.color2-background.sm.color-3-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color2-background.sm.color-3-link-color li.button a.highlighted,.color2-background.sm.color-3-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color2-background.sm.color-3-link-color li.button-secondary a.highlighted,.color2-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color2-background.sm.color-3-link-color li.alt.button a.highlighted{color:inherit}.color2-background.sm.color-3-link-color li:not(.btn) a{color:#eee}.color2-background.sm.color-3-link-color li:not(.btn) a:hover,.color2-background.sm.color-3-link-color li:not(.btn) a:focus,.color2-background.sm.color-3-link-color li:not(.btn) a:active,.color2-background.sm.color-3-link-color li:not(.btn) a.highlighted{color:#bbb}.color2-background.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color2-background.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color2-background.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color2-background.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color2-background.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color2-background.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color2-background.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color2-background.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color2-background.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color2-background.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color2-background.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color2-background.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color2-background.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color2-background.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color2-background.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color2-background.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color2-background.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color2-background.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color2-background.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color2-background.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color2-background.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color2-background.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color2-background.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color2-background.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color2-background.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color2-background.color-4-link-color a{color:#140070}.color2-background.color-4-link-color a:hover,.color2-background.color-4-link-color a:focus,.color2-background.color-4-link-color a:active,.color2-background.color-4-link-color a.highlighted{color:#2600d6}.color2-background.sidebar.color-4-link-color a{color:#140070}.color2-background.sidebar.color-4-link-color a:hover,.color2-background.sidebar.color-4-link-color a:focus,.color2-background.sidebar.color-4-link-color a:active,.color2-background.sidebar.color-4-link-color a.highlighted{color:#2600d6}.color2-background.sm.color-4-link-color li.btn a,.color2-background.sm.color-4-link-color .palette-primary li.button-primary a,.palette-primary .color2-background.sm.color-4-link-color li.button-primary a,.color2-background.sm.color-4-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color2-background.sm.color-4-link-color li.button a,.color2-background.sm.color-4-link-color .palette-primary li.button-secondary a,.palette-primary .color2-background.sm.color-4-link-color li.button-secondary a,.color2-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color2-background.sm.color-4-link-color li.alt.button a{color:inherit}.color2-background.sm.color-4-link-color li.btn a:hover,.color2-background.sm.color-4-link-color .palette-primary li.button-primary a:hover,.palette-primary .color2-background.sm.color-4-link-color li.button-primary a:hover,.color2-background.sm.color-4-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color2-background.sm.color-4-link-color li.button a:hover,.color2-background.sm.color-4-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color2-background.sm.color-4-link-color li.button-secondary a:hover,.color2-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color2-background.sm.color-4-link-color li.alt.button a:hover,.color2-background.sm.color-4-link-color li.btn a:focus,.color2-background.sm.color-4-link-color .palette-primary li.button-primary a:focus,.palette-primary .color2-background.sm.color-4-link-color li.button-primary a:focus,.color2-background.sm.color-4-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color2-background.sm.color-4-link-color li.button a:focus,.color2-background.sm.color-4-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color2-background.sm.color-4-link-color li.button-secondary a:focus,.color2-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color2-background.sm.color-4-link-color li.alt.button a:focus,.color2-background.sm.color-4-link-color li.btn a:active,.color2-background.sm.color-4-link-color .palette-primary li.button-primary a:active,.palette-primary .color2-background.sm.color-4-link-color li.button-primary a:active,.color2-background.sm.color-4-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color2-background.sm.color-4-link-color li.button a:active,.color2-background.sm.color-4-link-color .palette-primary li.button-secondary a:active,.palette-primary .color2-background.sm.color-4-link-color li.button-secondary a:active,.color2-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color2-background.sm.color-4-link-color li.alt.button a:active,.color2-background.sm.color-4-link-color li.btn a.highlighted,.color2-background.sm.color-4-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color2-background.sm.color-4-link-color li.button-primary a.highlighted,.color2-background.sm.color-4-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color2-background.sm.color-4-link-color li.button a.highlighted,.color2-background.sm.color-4-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color2-background.sm.color-4-link-color li.button-secondary a.highlighted,.color2-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color2-background.sm.color-4-link-color li.alt.button a.highlighted{color:inherit}.color2-background.sm.color-4-link-color li:not(.btn) a{color:#140070}.color2-background.sm.color-4-link-color li:not(.btn) a:hover,.color2-background.sm.color-4-link-color li:not(.btn) a:focus,.color2-background.sm.color-4-link-color li:not(.btn) a:active,.color2-background.sm.color-4-link-color li:not(.btn) a.highlighted{color:#2600d6}.color2-background.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color2-background.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color2-background.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color2-background.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color2-background.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color2-background.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color2-background.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color2-background.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color2-background.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color2-background.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color2-background.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color2-background.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color2-background.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color2-background.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color2-background.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color2-background.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color2-background.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color2-background.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color2-background.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color2-background.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color2-background.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color2-background.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color2-background.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color2-background.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color2-background.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color2-background.color-5-link-color a{color:#01013f}.color2-background.color-5-link-color a:hover,.color2-background.color-5-link-color a:focus,.color2-background.color-5-link-color a:active,.color2-background.color-5-link-color a.highlighted{color:#0303a3}.color2-background.sidebar.color-5-link-color a{color:#01013f}.color2-background.sidebar.color-5-link-color a:hover,.color2-background.sidebar.color-5-link-color a:focus,.color2-background.sidebar.color-5-link-color a:active,.color2-background.sidebar.color-5-link-color a.highlighted{color:#0303a3}.color2-background.sm.color-5-link-color li.btn a,.color2-background.sm.color-5-link-color .palette-primary li.button-primary a,.palette-primary .color2-background.sm.color-5-link-color li.button-primary a,.color2-background.sm.color-5-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color2-background.sm.color-5-link-color li.button a,.color2-background.sm.color-5-link-color .palette-primary li.button-secondary a,.palette-primary .color2-background.sm.color-5-link-color li.button-secondary a,.color2-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color2-background.sm.color-5-link-color li.alt.button a{color:inherit}.color2-background.sm.color-5-link-color li.btn a:hover,.color2-background.sm.color-5-link-color .palette-primary li.button-primary a:hover,.palette-primary .color2-background.sm.color-5-link-color li.button-primary a:hover,.color2-background.sm.color-5-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color2-background.sm.color-5-link-color li.button a:hover,.color2-background.sm.color-5-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color2-background.sm.color-5-link-color li.button-secondary a:hover,.color2-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color2-background.sm.color-5-link-color li.alt.button a:hover,.color2-background.sm.color-5-link-color li.btn a:focus,.color2-background.sm.color-5-link-color .palette-primary li.button-primary a:focus,.palette-primary .color2-background.sm.color-5-link-color li.button-primary a:focus,.color2-background.sm.color-5-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color2-background.sm.color-5-link-color li.button a:focus,.color2-background.sm.color-5-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color2-background.sm.color-5-link-color li.button-secondary a:focus,.color2-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color2-background.sm.color-5-link-color li.alt.button a:focus,.color2-background.sm.color-5-link-color li.btn a:active,.color2-background.sm.color-5-link-color .palette-primary li.button-primary a:active,.palette-primary .color2-background.sm.color-5-link-color li.button-primary a:active,.color2-background.sm.color-5-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color2-background.sm.color-5-link-color li.button a:active,.color2-background.sm.color-5-link-color .palette-primary li.button-secondary a:active,.palette-primary .color2-background.sm.color-5-link-color li.button-secondary a:active,.color2-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color2-background.sm.color-5-link-color li.alt.button a:active,.color2-background.sm.color-5-link-color li.btn a.highlighted,.color2-background.sm.color-5-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color2-background.sm.color-5-link-color li.button-primary a.highlighted,.color2-background.sm.color-5-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color2-background.sm.color-5-link-color li.button a.highlighted,.color2-background.sm.color-5-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color2-background.sm.color-5-link-color li.button-secondary a.highlighted,.color2-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color2-background.sm.color-5-link-color li.alt.button a.highlighted{color:inherit}.color2-background.sm.color-5-link-color li:not(.btn) a{color:#01013f}.color2-background.sm.color-5-link-color li:not(.btn) a:hover,.color2-background.sm.color-5-link-color li:not(.btn) a:focus,.color2-background.sm.color-5-link-color li:not(.btn) a:active,.color2-background.sm.color-5-link-color li:not(.btn) a.highlighted{color:#0303a3}.color2-background.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color2-background.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color2-background.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color2-background.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color2-background.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color2-background.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color2-background.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color2-background.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color2-background.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color2-background.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color2-background.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color2-background.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color2-background.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color2-background.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color2-background.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color2-background.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color2-background.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color2-background.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color2-background.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color2-background.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color2-background.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color2-background.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color2-background.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color2-background.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color2-background.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color2-background.color-neutral-link-color a{color:#eee}.color2-background.color-neutral-link-color a:hover,.color2-background.color-neutral-link-color a:focus,.color2-background.color-neutral-link-color a:active,.color2-background.color-neutral-link-color a.highlighted{color:#bbb}.color2-background.color-neutral-sub-link-color.sm ul li:not(.btn) a{color:#eee}.color2-background.color-neutral-sub-link-color.sm ul li:not(.btn) a:hover,.color2-background.color-neutral-sub-link-color.sm ul li:not(.btn) a:focus,.color2-background.color-neutral-sub-link-color.sm ul li:not(.btn) a:active,.color2-background.color-neutral-sub-link-color.sm ul li:not(.btn) a.highlighted{color:#bbb}.color2-background.color-1-sub-link-color ul li:not(.btn) a{color:#00a7e1}.color2-background.color-1-sub-link-color ul li:not(.btn) a:hover,.color2-background.color-1-sub-link-color ul li:not(.btn) a:focus,.color2-background.color-1-sub-link-color ul li:not(.btn) a:active,.color2-background.color-1-sub-link-color ul li:not(.btn) a.highlighted{color:#48d0ff}.color2-background.color-2-sub-link-color ul li:not(.btn) a{color:#000360}.color2-background.color-2-sub-link-color ul li:not(.btn) a:hover,.color2-background.color-2-sub-link-color ul li:not(.btn) a:focus,.color2-background.color-2-sub-link-color ul li:not(.btn) a:active,.color2-background.color-2-sub-link-color ul li:not(.btn) a.highlighted{color:black}.color2-background.color-3-sub-link-color ul li:not(.btn) a{color:#eee}.color2-background.color-3-sub-link-color ul li:not(.btn) a:hover,.color2-background.color-3-sub-link-color ul li:not(.btn) a:focus,.color2-background.color-3-sub-link-color ul li:not(.btn) a:active,.color2-background.color-3-sub-link-color ul li:not(.btn) a.highlighted{color:#bbb}.color2-background.color-4-sub-link-color ul li:not(.btn) a{color:#140070}.color2-background.color-4-sub-link-color ul li:not(.btn) a:hover,.color2-background.color-4-sub-link-color ul li:not(.btn) a:focus,.color2-background.color-4-sub-link-color ul li:not(.btn) a:active,.color2-background.color-4-sub-link-color ul li:not(.btn) a.highlighted{color:#2600d6}.color2-background.color-5-sub-link-color ul li:not(.btn) a{color:#01013f}.color2-background.color-5-sub-link-color ul li:not(.btn) a:hover,.color2-background.color-5-sub-link-color ul li:not(.btn) a:focus,.color2-background.color-5-sub-link-color ul li:not(.btn) a:active,.color2-background.color-5-sub-link-color ul li:not(.btn) a.highlighted{color:#0303a3}.color2-background-hover:focus,.color2-background-hover:hover{background:#000360 ! important}.color3-background.color-1-link-color a{color:#00a7e1}.color3-background.color-1-link-color a:hover,.color3-background.color-1-link-color a:focus,.color3-background.color-1-link-color a:active,.color3-background.color-1-link-color a.highlighted{color:#005b7b}.color3-background.sidebar.color-1-link-color a{color:#00a7e1}.color3-background.sidebar.color-1-link-color a:hover,.color3-background.sidebar.color-1-link-color a:focus,.color3-background.sidebar.color-1-link-color a:active,.color3-background.sidebar.color-1-link-color a.highlighted{color:#005b7b}.color3-background.sm.color-1-link-color li.btn a,.color3-background.sm.color-1-link-color .palette-primary li.button-primary a,.palette-primary .color3-background.sm.color-1-link-color li.button-primary a,.color3-background.sm.color-1-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color3-background.sm.color-1-link-color li.button a,.color3-background.sm.color-1-link-color .palette-primary li.button-secondary a,.palette-primary .color3-background.sm.color-1-link-color li.button-secondary a,.color3-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color3-background.sm.color-1-link-color li.alt.button a{color:inherit}.color3-background.sm.color-1-link-color li.btn a:hover,.color3-background.sm.color-1-link-color .palette-primary li.button-primary a:hover,.palette-primary .color3-background.sm.color-1-link-color li.button-primary a:hover,.color3-background.sm.color-1-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color3-background.sm.color-1-link-color li.button a:hover,.color3-background.sm.color-1-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color3-background.sm.color-1-link-color li.button-secondary a:hover,.color3-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color3-background.sm.color-1-link-color li.alt.button a:hover,.color3-background.sm.color-1-link-color li.btn a:focus,.color3-background.sm.color-1-link-color .palette-primary li.button-primary a:focus,.palette-primary .color3-background.sm.color-1-link-color li.button-primary a:focus,.color3-background.sm.color-1-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color3-background.sm.color-1-link-color li.button a:focus,.color3-background.sm.color-1-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color3-background.sm.color-1-link-color li.button-secondary a:focus,.color3-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color3-background.sm.color-1-link-color li.alt.button a:focus,.color3-background.sm.color-1-link-color li.btn a:active,.color3-background.sm.color-1-link-color .palette-primary li.button-primary a:active,.palette-primary .color3-background.sm.color-1-link-color li.button-primary a:active,.color3-background.sm.color-1-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color3-background.sm.color-1-link-color li.button a:active,.color3-background.sm.color-1-link-color .palette-primary li.button-secondary a:active,.palette-primary .color3-background.sm.color-1-link-color li.button-secondary a:active,.color3-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color3-background.sm.color-1-link-color li.alt.button a:active,.color3-background.sm.color-1-link-color li.btn a.highlighted,.color3-background.sm.color-1-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color3-background.sm.color-1-link-color li.button-primary a.highlighted,.color3-background.sm.color-1-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color3-background.sm.color-1-link-color li.button a.highlighted,.color3-background.sm.color-1-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color3-background.sm.color-1-link-color li.button-secondary a.highlighted,.color3-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color3-background.sm.color-1-link-color li.alt.button a.highlighted{color:inherit}.color3-background.sm.color-1-link-color li:not(.btn) a{color:#00a7e1}.color3-background.sm.color-1-link-color li:not(.btn) a:hover,.color3-background.sm.color-1-link-color li:not(.btn) a:focus,.color3-background.sm.color-1-link-color li:not(.btn) a:active,.color3-background.sm.color-1-link-color li:not(.btn) a.highlighted{color:#005b7b}.color3-background.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color3-background.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color3-background.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color3-background.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color3-background.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color3-background.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color3-background.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color3-background.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color3-background.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color3-background.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color3-background.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color3-background.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color3-background.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color3-background.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color3-background.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color3-background.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color3-background.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color3-background.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color3-background.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color3-background.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color3-background.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color3-background.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color3-background.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color3-background.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color3-background.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color3-background.color-2-link-color a{color:#000360}.color3-background.color-2-link-color a:hover,.color3-background.color-2-link-color a:focus,.color3-background.color-2-link-color a:active,.color3-background.color-2-link-color a.highlighted{color:black}.color3-background.sidebar.color-2-link-color a{color:#000360}.color3-background.sidebar.color-2-link-color a:hover,.color3-background.sidebar.color-2-link-color a:focus,.color3-background.sidebar.color-2-link-color a:active,.color3-background.sidebar.color-2-link-color a.highlighted{color:black}.color3-background.sm.color-2-link-color li.btn a,.color3-background.sm.color-2-link-color .palette-primary li.button-primary a,.palette-primary .color3-background.sm.color-2-link-color li.button-primary a,.color3-background.sm.color-2-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color3-background.sm.color-2-link-color li.button a,.color3-background.sm.color-2-link-color .palette-primary li.button-secondary a,.palette-primary .color3-background.sm.color-2-link-color li.button-secondary a,.color3-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color3-background.sm.color-2-link-color li.alt.button a{color:inherit}.color3-background.sm.color-2-link-color li.btn a:hover,.color3-background.sm.color-2-link-color .palette-primary li.button-primary a:hover,.palette-primary .color3-background.sm.color-2-link-color li.button-primary a:hover,.color3-background.sm.color-2-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color3-background.sm.color-2-link-color li.button a:hover,.color3-background.sm.color-2-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color3-background.sm.color-2-link-color li.button-secondary a:hover,.color3-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color3-background.sm.color-2-link-color li.alt.button a:hover,.color3-background.sm.color-2-link-color li.btn a:focus,.color3-background.sm.color-2-link-color .palette-primary li.button-primary a:focus,.palette-primary .color3-background.sm.color-2-link-color li.button-primary a:focus,.color3-background.sm.color-2-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color3-background.sm.color-2-link-color li.button a:focus,.color3-background.sm.color-2-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color3-background.sm.color-2-link-color li.button-secondary a:focus,.color3-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color3-background.sm.color-2-link-color li.alt.button a:focus,.color3-background.sm.color-2-link-color li.btn a:active,.color3-background.sm.color-2-link-color .palette-primary li.button-primary a:active,.palette-primary .color3-background.sm.color-2-link-color li.button-primary a:active,.color3-background.sm.color-2-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color3-background.sm.color-2-link-color li.button a:active,.color3-background.sm.color-2-link-color .palette-primary li.button-secondary a:active,.palette-primary .color3-background.sm.color-2-link-color li.button-secondary a:active,.color3-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color3-background.sm.color-2-link-color li.alt.button a:active,.color3-background.sm.color-2-link-color li.btn a.highlighted,.color3-background.sm.color-2-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color3-background.sm.color-2-link-color li.button-primary a.highlighted,.color3-background.sm.color-2-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color3-background.sm.color-2-link-color li.button a.highlighted,.color3-background.sm.color-2-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color3-background.sm.color-2-link-color li.button-secondary a.highlighted,.color3-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color3-background.sm.color-2-link-color li.alt.button a.highlighted{color:inherit}.color3-background.sm.color-2-link-color li:not(.btn) a{color:#000360}.color3-background.sm.color-2-link-color li:not(.btn) a:hover,.color3-background.sm.color-2-link-color li:not(.btn) a:focus,.color3-background.sm.color-2-link-color li:not(.btn) a:active,.color3-background.sm.color-2-link-color li:not(.btn) a.highlighted{color:black}.color3-background.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color3-background.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color3-background.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color3-background.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color3-background.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color3-background.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color3-background.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color3-background.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color3-background.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color3-background.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color3-background.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color3-background.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color3-background.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color3-background.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color3-background.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color3-background.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color3-background.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color3-background.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color3-background.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color3-background.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color3-background.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color3-background.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color3-background.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color3-background.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color3-background.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color3-background.color-3-link-color a{color:#eee}.color3-background.color-3-link-color a:hover,.color3-background.color-3-link-color a:focus,.color3-background.color-3-link-color a:active,.color3-background.color-3-link-color a.highlighted{color:#bbb}.color3-background.sidebar.color-3-link-color a{color:#eee}.color3-background.sidebar.color-3-link-color a:hover,.color3-background.sidebar.color-3-link-color a:focus,.color3-background.sidebar.color-3-link-color a:active,.color3-background.sidebar.color-3-link-color a.highlighted{color:#bbb}.color3-background.sm.color-3-link-color li.btn a,.color3-background.sm.color-3-link-color .palette-primary li.button-primary a,.palette-primary .color3-background.sm.color-3-link-color li.button-primary a,.color3-background.sm.color-3-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color3-background.sm.color-3-link-color li.button a,.color3-background.sm.color-3-link-color .palette-primary li.button-secondary a,.palette-primary .color3-background.sm.color-3-link-color li.button-secondary a,.color3-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color3-background.sm.color-3-link-color li.alt.button a{color:inherit}.color3-background.sm.color-3-link-color li.btn a:hover,.color3-background.sm.color-3-link-color .palette-primary li.button-primary a:hover,.palette-primary .color3-background.sm.color-3-link-color li.button-primary a:hover,.color3-background.sm.color-3-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color3-background.sm.color-3-link-color li.button a:hover,.color3-background.sm.color-3-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color3-background.sm.color-3-link-color li.button-secondary a:hover,.color3-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color3-background.sm.color-3-link-color li.alt.button a:hover,.color3-background.sm.color-3-link-color li.btn a:focus,.color3-background.sm.color-3-link-color .palette-primary li.button-primary a:focus,.palette-primary .color3-background.sm.color-3-link-color li.button-primary a:focus,.color3-background.sm.color-3-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color3-background.sm.color-3-link-color li.button a:focus,.color3-background.sm.color-3-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color3-background.sm.color-3-link-color li.button-secondary a:focus,.color3-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color3-background.sm.color-3-link-color li.alt.button a:focus,.color3-background.sm.color-3-link-color li.btn a:active,.color3-background.sm.color-3-link-color .palette-primary li.button-primary a:active,.palette-primary .color3-background.sm.color-3-link-color li.button-primary a:active,.color3-background.sm.color-3-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color3-background.sm.color-3-link-color li.button a:active,.color3-background.sm.color-3-link-color .palette-primary li.button-secondary a:active,.palette-primary .color3-background.sm.color-3-link-color li.button-secondary a:active,.color3-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color3-background.sm.color-3-link-color li.alt.button a:active,.color3-background.sm.color-3-link-color li.btn a.highlighted,.color3-background.sm.color-3-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color3-background.sm.color-3-link-color li.button-primary a.highlighted,.color3-background.sm.color-3-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color3-background.sm.color-3-link-color li.button a.highlighted,.color3-background.sm.color-3-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color3-background.sm.color-3-link-color li.button-secondary a.highlighted,.color3-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color3-background.sm.color-3-link-color li.alt.button a.highlighted{color:inherit}.color3-background.sm.color-3-link-color li:not(.btn) a{color:#eee}.color3-background.sm.color-3-link-color li:not(.btn) a:hover,.color3-background.sm.color-3-link-color li:not(.btn) a:focus,.color3-background.sm.color-3-link-color li:not(.btn) a:active,.color3-background.sm.color-3-link-color li:not(.btn) a.highlighted{color:#bbb}.color3-background.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color3-background.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color3-background.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color3-background.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color3-background.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color3-background.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color3-background.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color3-background.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color3-background.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color3-background.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color3-background.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color3-background.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color3-background.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color3-background.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color3-background.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color3-background.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color3-background.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color3-background.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color3-background.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color3-background.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color3-background.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color3-background.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color3-background.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color3-background.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color3-background.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color3-background.color-4-link-color a{color:#140070}.color3-background.color-4-link-color a:hover,.color3-background.color-4-link-color a:focus,.color3-background.color-4-link-color a:active,.color3-background.color-4-link-color a.highlighted{color:#02000a}.color3-background.sidebar.color-4-link-color a{color:#140070}.color3-background.sidebar.color-4-link-color a:hover,.color3-background.sidebar.color-4-link-color a:focus,.color3-background.sidebar.color-4-link-color a:active,.color3-background.sidebar.color-4-link-color a.highlighted{color:#02000a}.color3-background.sm.color-4-link-color li.btn a,.color3-background.sm.color-4-link-color .palette-primary li.button-primary a,.palette-primary .color3-background.sm.color-4-link-color li.button-primary a,.color3-background.sm.color-4-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color3-background.sm.color-4-link-color li.button a,.color3-background.sm.color-4-link-color .palette-primary li.button-secondary a,.palette-primary .color3-background.sm.color-4-link-color li.button-secondary a,.color3-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color3-background.sm.color-4-link-color li.alt.button a{color:inherit}.color3-background.sm.color-4-link-color li.btn a:hover,.color3-background.sm.color-4-link-color .palette-primary li.button-primary a:hover,.palette-primary .color3-background.sm.color-4-link-color li.button-primary a:hover,.color3-background.sm.color-4-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color3-background.sm.color-4-link-color li.button a:hover,.color3-background.sm.color-4-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color3-background.sm.color-4-link-color li.button-secondary a:hover,.color3-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color3-background.sm.color-4-link-color li.alt.button a:hover,.color3-background.sm.color-4-link-color li.btn a:focus,.color3-background.sm.color-4-link-color .palette-primary li.button-primary a:focus,.palette-primary .color3-background.sm.color-4-link-color li.button-primary a:focus,.color3-background.sm.color-4-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color3-background.sm.color-4-link-color li.button a:focus,.color3-background.sm.color-4-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color3-background.sm.color-4-link-color li.button-secondary a:focus,.color3-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color3-background.sm.color-4-link-color li.alt.button a:focus,.color3-background.sm.color-4-link-color li.btn a:active,.color3-background.sm.color-4-link-color .palette-primary li.button-primary a:active,.palette-primary .color3-background.sm.color-4-link-color li.button-primary a:active,.color3-background.sm.color-4-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color3-background.sm.color-4-link-color li.button a:active,.color3-background.sm.color-4-link-color .palette-primary li.button-secondary a:active,.palette-primary .color3-background.sm.color-4-link-color li.button-secondary a:active,.color3-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color3-background.sm.color-4-link-color li.alt.button a:active,.color3-background.sm.color-4-link-color li.btn a.highlighted,.color3-background.sm.color-4-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color3-background.sm.color-4-link-color li.button-primary a.highlighted,.color3-background.sm.color-4-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color3-background.sm.color-4-link-color li.button a.highlighted,.color3-background.sm.color-4-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color3-background.sm.color-4-link-color li.button-secondary a.highlighted,.color3-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color3-background.sm.color-4-link-color li.alt.button a.highlighted{color:inherit}.color3-background.sm.color-4-link-color li:not(.btn) a{color:#140070}.color3-background.sm.color-4-link-color li:not(.btn) a:hover,.color3-background.sm.color-4-link-color li:not(.btn) a:focus,.color3-background.sm.color-4-link-color li:not(.btn) a:active,.color3-background.sm.color-4-link-color li:not(.btn) a.highlighted{color:#02000a}.color3-background.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color3-background.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color3-background.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color3-background.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color3-background.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color3-background.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color3-background.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color3-background.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color3-background.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color3-background.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color3-background.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color3-background.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color3-background.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color3-background.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color3-background.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color3-background.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color3-background.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color3-background.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color3-background.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color3-background.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color3-background.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color3-background.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color3-background.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color3-background.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color3-background.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color3-background.color-5-link-color a{color:#01013f}.color3-background.color-5-link-color a:hover,.color3-background.color-5-link-color a:focus,.color3-background.color-5-link-color a:active,.color3-background.color-5-link-color a.highlighted{color:#0303a3}.color3-background.sidebar.color-5-link-color a{color:#01013f}.color3-background.sidebar.color-5-link-color a:hover,.color3-background.sidebar.color-5-link-color a:focus,.color3-background.sidebar.color-5-link-color a:active,.color3-background.sidebar.color-5-link-color a.highlighted{color:#0303a3}.color3-background.sm.color-5-link-color li.btn a,.color3-background.sm.color-5-link-color .palette-primary li.button-primary a,.palette-primary .color3-background.sm.color-5-link-color li.button-primary a,.color3-background.sm.color-5-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color3-background.sm.color-5-link-color li.button a,.color3-background.sm.color-5-link-color .palette-primary li.button-secondary a,.palette-primary .color3-background.sm.color-5-link-color li.button-secondary a,.color3-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color3-background.sm.color-5-link-color li.alt.button a{color:inherit}.color3-background.sm.color-5-link-color li.btn a:hover,.color3-background.sm.color-5-link-color .palette-primary li.button-primary a:hover,.palette-primary .color3-background.sm.color-5-link-color li.button-primary a:hover,.color3-background.sm.color-5-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color3-background.sm.color-5-link-color li.button a:hover,.color3-background.sm.color-5-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color3-background.sm.color-5-link-color li.button-secondary a:hover,.color3-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color3-background.sm.color-5-link-color li.alt.button a:hover,.color3-background.sm.color-5-link-color li.btn a:focus,.color3-background.sm.color-5-link-color .palette-primary li.button-primary a:focus,.palette-primary .color3-background.sm.color-5-link-color li.button-primary a:focus,.color3-background.sm.color-5-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color3-background.sm.color-5-link-color li.button a:focus,.color3-background.sm.color-5-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color3-background.sm.color-5-link-color li.button-secondary a:focus,.color3-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color3-background.sm.color-5-link-color li.alt.button a:focus,.color3-background.sm.color-5-link-color li.btn a:active,.color3-background.sm.color-5-link-color .palette-primary li.button-primary a:active,.palette-primary .color3-background.sm.color-5-link-color li.button-primary a:active,.color3-background.sm.color-5-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color3-background.sm.color-5-link-color li.button a:active,.color3-background.sm.color-5-link-color .palette-primary li.button-secondary a:active,.palette-primary .color3-background.sm.color-5-link-color li.button-secondary a:active,.color3-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color3-background.sm.color-5-link-color li.alt.button a:active,.color3-background.sm.color-5-link-color li.btn a.highlighted,.color3-background.sm.color-5-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color3-background.sm.color-5-link-color li.button-primary a.highlighted,.color3-background.sm.color-5-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color3-background.sm.color-5-link-color li.button a.highlighted,.color3-background.sm.color-5-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color3-background.sm.color-5-link-color li.button-secondary a.highlighted,.color3-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color3-background.sm.color-5-link-color li.alt.button a.highlighted{color:inherit}.color3-background.sm.color-5-link-color li:not(.btn) a{color:#01013f}.color3-background.sm.color-5-link-color li:not(.btn) a:hover,.color3-background.sm.color-5-link-color li:not(.btn) a:focus,.color3-background.sm.color-5-link-color li:not(.btn) a:active,.color3-background.sm.color-5-link-color li:not(.btn) a.highlighted{color:#0303a3}.color3-background.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color3-background.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color3-background.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color3-background.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color3-background.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color3-background.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color3-background.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color3-background.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color3-background.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color3-background.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color3-background.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color3-background.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color3-background.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color3-background.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color3-background.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color3-background.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color3-background.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color3-background.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color3-background.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color3-background.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color3-background.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color3-background.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color3-background.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color3-background.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color3-background.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color3-background.color-neutral-link-color a{color:#eee}.color3-background.color-neutral-link-color a:hover,.color3-background.color-neutral-link-color a:focus,.color3-background.color-neutral-link-color a:active,.color3-background.color-neutral-link-color a.highlighted{color:#bbb}.color3-background.color-neutral-sub-link-color.sm ul li:not(.btn) a{color:#eee}.color3-background.color-neutral-sub-link-color.sm ul li:not(.btn) a:hover,.color3-background.color-neutral-sub-link-color.sm ul li:not(.btn) a:focus,.color3-background.color-neutral-sub-link-color.sm ul li:not(.btn) a:active,.color3-background.color-neutral-sub-link-color.sm ul li:not(.btn) a.highlighted{color:#bbb}.color3-background.color-1-sub-link-color ul li:not(.btn) a{color:#00a7e1}.color3-background.color-1-sub-link-color ul li:not(.btn) a:hover,.color3-background.color-1-sub-link-color ul li:not(.btn) a:focus,.color3-background.color-1-sub-link-color ul li:not(.btn) a:active,.color3-background.color-1-sub-link-color ul li:not(.btn) a.highlighted{color:#005b7b}.color3-background.color-2-sub-link-color ul li:not(.btn) a{color:#000360}.color3-background.color-2-sub-link-color ul li:not(.btn) a:hover,.color3-background.color-2-sub-link-color ul li:not(.btn) a:focus,.color3-background.color-2-sub-link-color ul li:not(.btn) a:active,.color3-background.color-2-sub-link-color ul li:not(.btn) a.highlighted{color:black}.color3-background.color-3-sub-link-color ul li:not(.btn) a{color:#eee}.color3-background.color-3-sub-link-color ul li:not(.btn) a:hover,.color3-background.color-3-sub-link-color ul li:not(.btn) a:focus,.color3-background.color-3-sub-link-color ul li:not(.btn) a:active,.color3-background.color-3-sub-link-color ul li:not(.btn) a.highlighted{color:#bbb}.color3-background.color-4-sub-link-color ul li:not(.btn) a{color:#140070}.color3-background.color-4-sub-link-color ul li:not(.btn) a:hover,.color3-background.color-4-sub-link-color ul li:not(.btn) a:focus,.color3-background.color-4-sub-link-color ul li:not(.btn) a:active,.color3-background.color-4-sub-link-color ul li:not(.btn) a.highlighted{color:#02000a}.color3-background.color-5-sub-link-color ul li:not(.btn) a{color:#01013f}.color3-background.color-5-sub-link-color ul li:not(.btn) a:hover,.color3-background.color-5-sub-link-color ul li:not(.btn) a:focus,.color3-background.color-5-sub-link-color ul li:not(.btn) a:active,.color3-background.color-5-sub-link-color ul li:not(.btn) a.highlighted{color:#0303a3}.color3-background-hover:focus,.color3-background-hover:hover{background:#eee ! important}.color4-background.color-1-link-color a{color:#00a7e1}.color4-background.color-1-link-color a:hover,.color4-background.color-1-link-color a:focus,.color4-background.color-1-link-color a:active,.color4-background.color-1-link-color a.highlighted{color:#48d0ff}.color4-background.sidebar.color-1-link-color a{color:#00a7e1}.color4-background.sidebar.color-1-link-color a:hover,.color4-background.sidebar.color-1-link-color a:focus,.color4-background.sidebar.color-1-link-color a:active,.color4-background.sidebar.color-1-link-color a.highlighted{color:#48d0ff}.color4-background.sm.color-1-link-color li.btn a,.color4-background.sm.color-1-link-color .palette-primary li.button-primary a,.palette-primary .color4-background.sm.color-1-link-color li.button-primary a,.color4-background.sm.color-1-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color4-background.sm.color-1-link-color li.button a,.color4-background.sm.color-1-link-color .palette-primary li.button-secondary a,.palette-primary .color4-background.sm.color-1-link-color li.button-secondary a,.color4-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color4-background.sm.color-1-link-color li.alt.button a{color:inherit}.color4-background.sm.color-1-link-color li.btn a:hover,.color4-background.sm.color-1-link-color .palette-primary li.button-primary a:hover,.palette-primary .color4-background.sm.color-1-link-color li.button-primary a:hover,.color4-background.sm.color-1-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color4-background.sm.color-1-link-color li.button a:hover,.color4-background.sm.color-1-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color4-background.sm.color-1-link-color li.button-secondary a:hover,.color4-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color4-background.sm.color-1-link-color li.alt.button a:hover,.color4-background.sm.color-1-link-color li.btn a:focus,.color4-background.sm.color-1-link-color .palette-primary li.button-primary a:focus,.palette-primary .color4-background.sm.color-1-link-color li.button-primary a:focus,.color4-background.sm.color-1-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color4-background.sm.color-1-link-color li.button a:focus,.color4-background.sm.color-1-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color4-background.sm.color-1-link-color li.button-secondary a:focus,.color4-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color4-background.sm.color-1-link-color li.alt.button a:focus,.color4-background.sm.color-1-link-color li.btn a:active,.color4-background.sm.color-1-link-color .palette-primary li.button-primary a:active,.palette-primary .color4-background.sm.color-1-link-color li.button-primary a:active,.color4-background.sm.color-1-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color4-background.sm.color-1-link-color li.button a:active,.color4-background.sm.color-1-link-color .palette-primary li.button-secondary a:active,.palette-primary .color4-background.sm.color-1-link-color li.button-secondary a:active,.color4-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color4-background.sm.color-1-link-color li.alt.button a:active,.color4-background.sm.color-1-link-color li.btn a.highlighted,.color4-background.sm.color-1-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color4-background.sm.color-1-link-color li.button-primary a.highlighted,.color4-background.sm.color-1-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color4-background.sm.color-1-link-color li.button a.highlighted,.color4-background.sm.color-1-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color4-background.sm.color-1-link-color li.button-secondary a.highlighted,.color4-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color4-background.sm.color-1-link-color li.alt.button a.highlighted{color:inherit}.color4-background.sm.color-1-link-color li:not(.btn) a{color:#00a7e1}.color4-background.sm.color-1-link-color li:not(.btn) a:hover,.color4-background.sm.color-1-link-color li:not(.btn) a:focus,.color4-background.sm.color-1-link-color li:not(.btn) a:active,.color4-background.sm.color-1-link-color li:not(.btn) a.highlighted{color:#48d0ff}.color4-background.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color4-background.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color4-background.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color4-background.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color4-background.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color4-background.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color4-background.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color4-background.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color4-background.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color4-background.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color4-background.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color4-background.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color4-background.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color4-background.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color4-background.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color4-background.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color4-background.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color4-background.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color4-background.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color4-background.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color4-background.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color4-background.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color4-background.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color4-background.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color4-background.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color4-background.color-2-link-color a{color:#000360}.color4-background.color-2-link-color a:hover,.color4-background.color-2-link-color a:focus,.color4-background.color-2-link-color a:active,.color4-background.color-2-link-color a.highlighted{color:black}.color4-background.sidebar.color-2-link-color a{color:#000360}.color4-background.sidebar.color-2-link-color a:hover,.color4-background.sidebar.color-2-link-color a:focus,.color4-background.sidebar.color-2-link-color a:active,.color4-background.sidebar.color-2-link-color a.highlighted{color:black}.color4-background.sm.color-2-link-color li.btn a,.color4-background.sm.color-2-link-color .palette-primary li.button-primary a,.palette-primary .color4-background.sm.color-2-link-color li.button-primary a,.color4-background.sm.color-2-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color4-background.sm.color-2-link-color li.button a,.color4-background.sm.color-2-link-color .palette-primary li.button-secondary a,.palette-primary .color4-background.sm.color-2-link-color li.button-secondary a,.color4-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color4-background.sm.color-2-link-color li.alt.button a{color:inherit}.color4-background.sm.color-2-link-color li.btn a:hover,.color4-background.sm.color-2-link-color .palette-primary li.button-primary a:hover,.palette-primary .color4-background.sm.color-2-link-color li.button-primary a:hover,.color4-background.sm.color-2-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color4-background.sm.color-2-link-color li.button a:hover,.color4-background.sm.color-2-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color4-background.sm.color-2-link-color li.button-secondary a:hover,.color4-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color4-background.sm.color-2-link-color li.alt.button a:hover,.color4-background.sm.color-2-link-color li.btn a:focus,.color4-background.sm.color-2-link-color .palette-primary li.button-primary a:focus,.palette-primary .color4-background.sm.color-2-link-color li.button-primary a:focus,.color4-background.sm.color-2-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color4-background.sm.color-2-link-color li.button a:focus,.color4-background.sm.color-2-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color4-background.sm.color-2-link-color li.button-secondary a:focus,.color4-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color4-background.sm.color-2-link-color li.alt.button a:focus,.color4-background.sm.color-2-link-color li.btn a:active,.color4-background.sm.color-2-link-color .palette-primary li.button-primary a:active,.palette-primary .color4-background.sm.color-2-link-color li.button-primary a:active,.color4-background.sm.color-2-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color4-background.sm.color-2-link-color li.button a:active,.color4-background.sm.color-2-link-color .palette-primary li.button-secondary a:active,.palette-primary .color4-background.sm.color-2-link-color li.button-secondary a:active,.color4-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color4-background.sm.color-2-link-color li.alt.button a:active,.color4-background.sm.color-2-link-color li.btn a.highlighted,.color4-background.sm.color-2-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color4-background.sm.color-2-link-color li.button-primary a.highlighted,.color4-background.sm.color-2-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color4-background.sm.color-2-link-color li.button a.highlighted,.color4-background.sm.color-2-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color4-background.sm.color-2-link-color li.button-secondary a.highlighted,.color4-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color4-background.sm.color-2-link-color li.alt.button a.highlighted{color:inherit}.color4-background.sm.color-2-link-color li:not(.btn) a{color:#000360}.color4-background.sm.color-2-link-color li:not(.btn) a:hover,.color4-background.sm.color-2-link-color li:not(.btn) a:focus,.color4-background.sm.color-2-link-color li:not(.btn) a:active,.color4-background.sm.color-2-link-color li:not(.btn) a.highlighted{color:black}.color4-background.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color4-background.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color4-background.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color4-background.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color4-background.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color4-background.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color4-background.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color4-background.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color4-background.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color4-background.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color4-background.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color4-background.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color4-background.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color4-background.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color4-background.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color4-background.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color4-background.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color4-background.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color4-background.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color4-background.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color4-background.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color4-background.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color4-background.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color4-background.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color4-background.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color4-background.color-3-link-color a{color:#eee}.color4-background.color-3-link-color a:hover,.color4-background.color-3-link-color a:focus,.color4-background.color-3-link-color a:active,.color4-background.color-3-link-color a.highlighted{color:#bbb}.color4-background.sidebar.color-3-link-color a{color:#eee}.color4-background.sidebar.color-3-link-color a:hover,.color4-background.sidebar.color-3-link-color a:focus,.color4-background.sidebar.color-3-link-color a:active,.color4-background.sidebar.color-3-link-color a.highlighted{color:#bbb}.color4-background.sm.color-3-link-color li.btn a,.color4-background.sm.color-3-link-color .palette-primary li.button-primary a,.palette-primary .color4-background.sm.color-3-link-color li.button-primary a,.color4-background.sm.color-3-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color4-background.sm.color-3-link-color li.button a,.color4-background.sm.color-3-link-color .palette-primary li.button-secondary a,.palette-primary .color4-background.sm.color-3-link-color li.button-secondary a,.color4-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color4-background.sm.color-3-link-color li.alt.button a{color:inherit}.color4-background.sm.color-3-link-color li.btn a:hover,.color4-background.sm.color-3-link-color .palette-primary li.button-primary a:hover,.palette-primary .color4-background.sm.color-3-link-color li.button-primary a:hover,.color4-background.sm.color-3-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color4-background.sm.color-3-link-color li.button a:hover,.color4-background.sm.color-3-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color4-background.sm.color-3-link-color li.button-secondary a:hover,.color4-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color4-background.sm.color-3-link-color li.alt.button a:hover,.color4-background.sm.color-3-link-color li.btn a:focus,.color4-background.sm.color-3-link-color .palette-primary li.button-primary a:focus,.palette-primary .color4-background.sm.color-3-link-color li.button-primary a:focus,.color4-background.sm.color-3-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color4-background.sm.color-3-link-color li.button a:focus,.color4-background.sm.color-3-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color4-background.sm.color-3-link-color li.button-secondary a:focus,.color4-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color4-background.sm.color-3-link-color li.alt.button a:focus,.color4-background.sm.color-3-link-color li.btn a:active,.color4-background.sm.color-3-link-color .palette-primary li.button-primary a:active,.palette-primary .color4-background.sm.color-3-link-color li.button-primary a:active,.color4-background.sm.color-3-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color4-background.sm.color-3-link-color li.button a:active,.color4-background.sm.color-3-link-color .palette-primary li.button-secondary a:active,.palette-primary .color4-background.sm.color-3-link-color li.button-secondary a:active,.color4-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color4-background.sm.color-3-link-color li.alt.button a:active,.color4-background.sm.color-3-link-color li.btn a.highlighted,.color4-background.sm.color-3-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color4-background.sm.color-3-link-color li.button-primary a.highlighted,.color4-background.sm.color-3-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color4-background.sm.color-3-link-color li.button a.highlighted,.color4-background.sm.color-3-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color4-background.sm.color-3-link-color li.button-secondary a.highlighted,.color4-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color4-background.sm.color-3-link-color li.alt.button a.highlighted{color:inherit}.color4-background.sm.color-3-link-color li:not(.btn) a{color:#eee}.color4-background.sm.color-3-link-color li:not(.btn) a:hover,.color4-background.sm.color-3-link-color li:not(.btn) a:focus,.color4-background.sm.color-3-link-color li:not(.btn) a:active,.color4-background.sm.color-3-link-color li:not(.btn) a.highlighted{color:#bbb}.color4-background.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color4-background.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color4-background.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color4-background.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color4-background.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color4-background.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color4-background.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color4-background.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color4-background.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color4-background.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color4-background.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color4-background.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color4-background.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color4-background.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color4-background.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color4-background.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color4-background.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color4-background.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color4-background.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color4-background.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color4-background.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color4-background.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color4-background.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color4-background.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color4-background.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color4-background.color-4-link-color a{color:#140070}.color4-background.color-4-link-color a:hover,.color4-background.color-4-link-color a:focus,.color4-background.color-4-link-color a:active,.color4-background.color-4-link-color a.highlighted{color:#02000a}.color4-background.sidebar.color-4-link-color a{color:#140070}.color4-background.sidebar.color-4-link-color a:hover,.color4-background.sidebar.color-4-link-color a:focus,.color4-background.sidebar.color-4-link-color a:active,.color4-background.sidebar.color-4-link-color a.highlighted{color:#02000a}.color4-background.sm.color-4-link-color li.btn a,.color4-background.sm.color-4-link-color .palette-primary li.button-primary a,.palette-primary .color4-background.sm.color-4-link-color li.button-primary a,.color4-background.sm.color-4-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color4-background.sm.color-4-link-color li.button a,.color4-background.sm.color-4-link-color .palette-primary li.button-secondary a,.palette-primary .color4-background.sm.color-4-link-color li.button-secondary a,.color4-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color4-background.sm.color-4-link-color li.alt.button a{color:inherit}.color4-background.sm.color-4-link-color li.btn a:hover,.color4-background.sm.color-4-link-color .palette-primary li.button-primary a:hover,.palette-primary .color4-background.sm.color-4-link-color li.button-primary a:hover,.color4-background.sm.color-4-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color4-background.sm.color-4-link-color li.button a:hover,.color4-background.sm.color-4-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color4-background.sm.color-4-link-color li.button-secondary a:hover,.color4-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color4-background.sm.color-4-link-color li.alt.button a:hover,.color4-background.sm.color-4-link-color li.btn a:focus,.color4-background.sm.color-4-link-color .palette-primary li.button-primary a:focus,.palette-primary .color4-background.sm.color-4-link-color li.button-primary a:focus,.color4-background.sm.color-4-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color4-background.sm.color-4-link-color li.button a:focus,.color4-background.sm.color-4-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color4-background.sm.color-4-link-color li.button-secondary a:focus,.color4-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color4-background.sm.color-4-link-color li.alt.button a:focus,.color4-background.sm.color-4-link-color li.btn a:active,.color4-background.sm.color-4-link-color .palette-primary li.button-primary a:active,.palette-primary .color4-background.sm.color-4-link-color li.button-primary a:active,.color4-background.sm.color-4-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color4-background.sm.color-4-link-color li.button a:active,.color4-background.sm.color-4-link-color .palette-primary li.button-secondary a:active,.palette-primary .color4-background.sm.color-4-link-color li.button-secondary a:active,.color4-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color4-background.sm.color-4-link-color li.alt.button a:active,.color4-background.sm.color-4-link-color li.btn a.highlighted,.color4-background.sm.color-4-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color4-background.sm.color-4-link-color li.button-primary a.highlighted,.color4-background.sm.color-4-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color4-background.sm.color-4-link-color li.button a.highlighted,.color4-background.sm.color-4-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color4-background.sm.color-4-link-color li.button-secondary a.highlighted,.color4-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color4-background.sm.color-4-link-color li.alt.button a.highlighted{color:inherit}.color4-background.sm.color-4-link-color li:not(.btn) a{color:#140070}.color4-background.sm.color-4-link-color li:not(.btn) a:hover,.color4-background.sm.color-4-link-color li:not(.btn) a:focus,.color4-background.sm.color-4-link-color li:not(.btn) a:active,.color4-background.sm.color-4-link-color li:not(.btn) a.highlighted{color:#02000a}.color4-background.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color4-background.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color4-background.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color4-background.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color4-background.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color4-background.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color4-background.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color4-background.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color4-background.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color4-background.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color4-background.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color4-background.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color4-background.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color4-background.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color4-background.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color4-background.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color4-background.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color4-background.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color4-background.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color4-background.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color4-background.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color4-background.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color4-background.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color4-background.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color4-background.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color4-background.color-5-link-color a{color:#01013f}.color4-background.color-5-link-color a:hover,.color4-background.color-5-link-color a:focus,.color4-background.color-5-link-color a:active,.color4-background.color-5-link-color a.highlighted{color:#0303a3}.color4-background.sidebar.color-5-link-color a{color:#01013f}.color4-background.sidebar.color-5-link-color a:hover,.color4-background.sidebar.color-5-link-color a:focus,.color4-background.sidebar.color-5-link-color a:active,.color4-background.sidebar.color-5-link-color a.highlighted{color:#0303a3}.color4-background.sm.color-5-link-color li.btn a,.color4-background.sm.color-5-link-color .palette-primary li.button-primary a,.palette-primary .color4-background.sm.color-5-link-color li.button-primary a,.color4-background.sm.color-5-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color4-background.sm.color-5-link-color li.button a,.color4-background.sm.color-5-link-color .palette-primary li.button-secondary a,.palette-primary .color4-background.sm.color-5-link-color li.button-secondary a,.color4-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color4-background.sm.color-5-link-color li.alt.button a{color:inherit}.color4-background.sm.color-5-link-color li.btn a:hover,.color4-background.sm.color-5-link-color .palette-primary li.button-primary a:hover,.palette-primary .color4-background.sm.color-5-link-color li.button-primary a:hover,.color4-background.sm.color-5-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color4-background.sm.color-5-link-color li.button a:hover,.color4-background.sm.color-5-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color4-background.sm.color-5-link-color li.button-secondary a:hover,.color4-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color4-background.sm.color-5-link-color li.alt.button a:hover,.color4-background.sm.color-5-link-color li.btn a:focus,.color4-background.sm.color-5-link-color .palette-primary li.button-primary a:focus,.palette-primary .color4-background.sm.color-5-link-color li.button-primary a:focus,.color4-background.sm.color-5-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color4-background.sm.color-5-link-color li.button a:focus,.color4-background.sm.color-5-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color4-background.sm.color-5-link-color li.button-secondary a:focus,.color4-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color4-background.sm.color-5-link-color li.alt.button a:focus,.color4-background.sm.color-5-link-color li.btn a:active,.color4-background.sm.color-5-link-color .palette-primary li.button-primary a:active,.palette-primary .color4-background.sm.color-5-link-color li.button-primary a:active,.color4-background.sm.color-5-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color4-background.sm.color-5-link-color li.button a:active,.color4-background.sm.color-5-link-color .palette-primary li.button-secondary a:active,.palette-primary .color4-background.sm.color-5-link-color li.button-secondary a:active,.color4-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color4-background.sm.color-5-link-color li.alt.button a:active,.color4-background.sm.color-5-link-color li.btn a.highlighted,.color4-background.sm.color-5-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color4-background.sm.color-5-link-color li.button-primary a.highlighted,.color4-background.sm.color-5-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color4-background.sm.color-5-link-color li.button a.highlighted,.color4-background.sm.color-5-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color4-background.sm.color-5-link-color li.button-secondary a.highlighted,.color4-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color4-background.sm.color-5-link-color li.alt.button a.highlighted{color:inherit}.color4-background.sm.color-5-link-color li:not(.btn) a{color:#01013f}.color4-background.sm.color-5-link-color li:not(.btn) a:hover,.color4-background.sm.color-5-link-color li:not(.btn) a:focus,.color4-background.sm.color-5-link-color li:not(.btn) a:active,.color4-background.sm.color-5-link-color li:not(.btn) a.highlighted{color:#0303a3}.color4-background.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color4-background.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color4-background.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color4-background.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color4-background.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color4-background.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color4-background.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color4-background.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color4-background.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color4-background.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color4-background.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color4-background.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color4-background.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color4-background.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color4-background.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color4-background.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color4-background.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color4-background.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color4-background.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color4-background.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color4-background.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color4-background.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color4-background.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color4-background.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color4-background.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color4-background.color-neutral-link-color a{color:#eee}.color4-background.color-neutral-link-color a:hover,.color4-background.color-neutral-link-color a:focus,.color4-background.color-neutral-link-color a:active,.color4-background.color-neutral-link-color a.highlighted{color:#bbb}.color4-background.color-neutral-sub-link-color.sm ul li:not(.btn) a{color:#eee}.color4-background.color-neutral-sub-link-color.sm ul li:not(.btn) a:hover,.color4-background.color-neutral-sub-link-color.sm ul li:not(.btn) a:focus,.color4-background.color-neutral-sub-link-color.sm ul li:not(.btn) a:active,.color4-background.color-neutral-sub-link-color.sm ul li:not(.btn) a.highlighted{color:#bbb}.color4-background.color-1-sub-link-color ul li:not(.btn) a{color:#00a7e1}.color4-background.color-1-sub-link-color ul li:not(.btn) a:hover,.color4-background.color-1-sub-link-color ul li:not(.btn) a:focus,.color4-background.color-1-sub-link-color ul li:not(.btn) a:active,.color4-background.color-1-sub-link-color ul li:not(.btn) a.highlighted{color:#48d0ff}.color4-background.color-2-sub-link-color ul li:not(.btn) a{color:#000360}.color4-background.color-2-sub-link-color ul li:not(.btn) a:hover,.color4-background.color-2-sub-link-color ul li:not(.btn) a:focus,.color4-background.color-2-sub-link-color ul li:not(.btn) a:active,.color4-background.color-2-sub-link-color ul li:not(.btn) a.highlighted{color:black}.color4-background.color-3-sub-link-color ul li:not(.btn) a{color:#eee}.color4-background.color-3-sub-link-color ul li:not(.btn) a:hover,.color4-background.color-3-sub-link-color ul li:not(.btn) a:focus,.color4-background.color-3-sub-link-color ul li:not(.btn) a:active,.color4-background.color-3-sub-link-color ul li:not(.btn) a.highlighted{color:#bbb}.color4-background.color-4-sub-link-color ul li:not(.btn) a{color:#140070}.color4-background.color-4-sub-link-color ul li:not(.btn) a:hover,.color4-background.color-4-sub-link-color ul li:not(.btn) a:focus,.color4-background.color-4-sub-link-color ul li:not(.btn) a:active,.color4-background.color-4-sub-link-color ul li:not(.btn) a.highlighted{color:#02000a}.color4-background.color-5-sub-link-color ul li:not(.btn) a{color:#01013f}.color4-background.color-5-sub-link-color ul li:not(.btn) a:hover,.color4-background.color-5-sub-link-color ul li:not(.btn) a:focus,.color4-background.color-5-sub-link-color ul li:not(.btn) a:active,.color4-background.color-5-sub-link-color ul li:not(.btn) a.highlighted{color:#0303a3}.color4-background-hover:focus,.color4-background-hover:hover{background:#140070 ! important}.color5-background.color-1-link-color a{color:#00a7e1}.color5-background.color-1-link-color a:hover,.color5-background.color-1-link-color a:focus,.color5-background.color-1-link-color a:active,.color5-background.color-1-link-color a.highlighted{color:#48d0ff}.color5-background.sidebar.color-1-link-color a{color:#00a7e1}.color5-background.sidebar.color-1-link-color a:hover,.color5-background.sidebar.color-1-link-color a:focus,.color5-background.sidebar.color-1-link-color a:active,.color5-background.sidebar.color-1-link-color a.highlighted{color:#48d0ff}.color5-background.sm.color-1-link-color li.btn a,.color5-background.sm.color-1-link-color .palette-primary li.button-primary a,.palette-primary .color5-background.sm.color-1-link-color li.button-primary a,.color5-background.sm.color-1-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color5-background.sm.color-1-link-color li.button a,.color5-background.sm.color-1-link-color .palette-primary li.button-secondary a,.palette-primary .color5-background.sm.color-1-link-color li.button-secondary a,.color5-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color5-background.sm.color-1-link-color li.alt.button a{color:inherit}.color5-background.sm.color-1-link-color li.btn a:hover,.color5-background.sm.color-1-link-color .palette-primary li.button-primary a:hover,.palette-primary .color5-background.sm.color-1-link-color li.button-primary a:hover,.color5-background.sm.color-1-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color5-background.sm.color-1-link-color li.button a:hover,.color5-background.sm.color-1-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color5-background.sm.color-1-link-color li.button-secondary a:hover,.color5-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color5-background.sm.color-1-link-color li.alt.button a:hover,.color5-background.sm.color-1-link-color li.btn a:focus,.color5-background.sm.color-1-link-color .palette-primary li.button-primary a:focus,.palette-primary .color5-background.sm.color-1-link-color li.button-primary a:focus,.color5-background.sm.color-1-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color5-background.sm.color-1-link-color li.button a:focus,.color5-background.sm.color-1-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color5-background.sm.color-1-link-color li.button-secondary a:focus,.color5-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color5-background.sm.color-1-link-color li.alt.button a:focus,.color5-background.sm.color-1-link-color li.btn a:active,.color5-background.sm.color-1-link-color .palette-primary li.button-primary a:active,.palette-primary .color5-background.sm.color-1-link-color li.button-primary a:active,.color5-background.sm.color-1-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color5-background.sm.color-1-link-color li.button a:active,.color5-background.sm.color-1-link-color .palette-primary li.button-secondary a:active,.palette-primary .color5-background.sm.color-1-link-color li.button-secondary a:active,.color5-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color5-background.sm.color-1-link-color li.alt.button a:active,.color5-background.sm.color-1-link-color li.btn a.highlighted,.color5-background.sm.color-1-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color5-background.sm.color-1-link-color li.button-primary a.highlighted,.color5-background.sm.color-1-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color5-background.sm.color-1-link-color li.button a.highlighted,.color5-background.sm.color-1-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color5-background.sm.color-1-link-color li.button-secondary a.highlighted,.color5-background.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color5-background.sm.color-1-link-color li.alt.button a.highlighted{color:inherit}.color5-background.sm.color-1-link-color li:not(.btn) a{color:#00a7e1}.color5-background.sm.color-1-link-color li:not(.btn) a:hover,.color5-background.sm.color-1-link-color li:not(.btn) a:focus,.color5-background.sm.color-1-link-color li:not(.btn) a:active,.color5-background.sm.color-1-link-color li:not(.btn) a.highlighted{color:#48d0ff}.color5-background.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color5-background.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color5-background.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color5-background.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color5-background.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color5-background.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color5-background.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color5-background.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color5-background.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color5-background.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color5-background.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color5-background.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color5-background.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color5-background.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color5-background.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color5-background.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color5-background.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color5-background.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color5-background.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color5-background.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color5-background.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color5-background.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color5-background.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color5-background.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color5-background.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color5-background.color-2-link-color a{color:#000360}.color5-background.color-2-link-color a:hover,.color5-background.color-2-link-color a:focus,.color5-background.color-2-link-color a:active,.color5-background.color-2-link-color a.highlighted{color:#0006c6}.color5-background.sidebar.color-2-link-color a{color:#000360}.color5-background.sidebar.color-2-link-color a:hover,.color5-background.sidebar.color-2-link-color a:focus,.color5-background.sidebar.color-2-link-color a:active,.color5-background.sidebar.color-2-link-color a.highlighted{color:#0006c6}.color5-background.sm.color-2-link-color li.btn a,.color5-background.sm.color-2-link-color .palette-primary li.button-primary a,.palette-primary .color5-background.sm.color-2-link-color li.button-primary a,.color5-background.sm.color-2-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color5-background.sm.color-2-link-color li.button a,.color5-background.sm.color-2-link-color .palette-primary li.button-secondary a,.palette-primary .color5-background.sm.color-2-link-color li.button-secondary a,.color5-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color5-background.sm.color-2-link-color li.alt.button a{color:inherit}.color5-background.sm.color-2-link-color li.btn a:hover,.color5-background.sm.color-2-link-color .palette-primary li.button-primary a:hover,.palette-primary .color5-background.sm.color-2-link-color li.button-primary a:hover,.color5-background.sm.color-2-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color5-background.sm.color-2-link-color li.button a:hover,.color5-background.sm.color-2-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color5-background.sm.color-2-link-color li.button-secondary a:hover,.color5-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color5-background.sm.color-2-link-color li.alt.button a:hover,.color5-background.sm.color-2-link-color li.btn a:focus,.color5-background.sm.color-2-link-color .palette-primary li.button-primary a:focus,.palette-primary .color5-background.sm.color-2-link-color li.button-primary a:focus,.color5-background.sm.color-2-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color5-background.sm.color-2-link-color li.button a:focus,.color5-background.sm.color-2-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color5-background.sm.color-2-link-color li.button-secondary a:focus,.color5-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color5-background.sm.color-2-link-color li.alt.button a:focus,.color5-background.sm.color-2-link-color li.btn a:active,.color5-background.sm.color-2-link-color .palette-primary li.button-primary a:active,.palette-primary .color5-background.sm.color-2-link-color li.button-primary a:active,.color5-background.sm.color-2-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color5-background.sm.color-2-link-color li.button a:active,.color5-background.sm.color-2-link-color .palette-primary li.button-secondary a:active,.palette-primary .color5-background.sm.color-2-link-color li.button-secondary a:active,.color5-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color5-background.sm.color-2-link-color li.alt.button a:active,.color5-background.sm.color-2-link-color li.btn a.highlighted,.color5-background.sm.color-2-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color5-background.sm.color-2-link-color li.button-primary a.highlighted,.color5-background.sm.color-2-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color5-background.sm.color-2-link-color li.button a.highlighted,.color5-background.sm.color-2-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color5-background.sm.color-2-link-color li.button-secondary a.highlighted,.color5-background.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color5-background.sm.color-2-link-color li.alt.button a.highlighted{color:inherit}.color5-background.sm.color-2-link-color li:not(.btn) a{color:#000360}.color5-background.sm.color-2-link-color li:not(.btn) a:hover,.color5-background.sm.color-2-link-color li:not(.btn) a:focus,.color5-background.sm.color-2-link-color li:not(.btn) a:active,.color5-background.sm.color-2-link-color li:not(.btn) a.highlighted{color:#0006c6}.color5-background.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color5-background.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color5-background.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color5-background.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color5-background.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color5-background.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color5-background.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color5-background.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color5-background.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color5-background.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color5-background.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color5-background.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color5-background.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color5-background.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color5-background.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color5-background.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color5-background.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color5-background.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color5-background.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color5-background.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color5-background.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color5-background.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color5-background.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color5-background.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color5-background.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color5-background.color-3-link-color a{color:#eee}.color5-background.color-3-link-color a:hover,.color5-background.color-3-link-color a:focus,.color5-background.color-3-link-color a:active,.color5-background.color-3-link-color a.highlighted{color:#bbb}.color5-background.sidebar.color-3-link-color a{color:#eee}.color5-background.sidebar.color-3-link-color a:hover,.color5-background.sidebar.color-3-link-color a:focus,.color5-background.sidebar.color-3-link-color a:active,.color5-background.sidebar.color-3-link-color a.highlighted{color:#bbb}.color5-background.sm.color-3-link-color li.btn a,.color5-background.sm.color-3-link-color .palette-primary li.button-primary a,.palette-primary .color5-background.sm.color-3-link-color li.button-primary a,.color5-background.sm.color-3-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color5-background.sm.color-3-link-color li.button a,.color5-background.sm.color-3-link-color .palette-primary li.button-secondary a,.palette-primary .color5-background.sm.color-3-link-color li.button-secondary a,.color5-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color5-background.sm.color-3-link-color li.alt.button a{color:inherit}.color5-background.sm.color-3-link-color li.btn a:hover,.color5-background.sm.color-3-link-color .palette-primary li.button-primary a:hover,.palette-primary .color5-background.sm.color-3-link-color li.button-primary a:hover,.color5-background.sm.color-3-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color5-background.sm.color-3-link-color li.button a:hover,.color5-background.sm.color-3-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color5-background.sm.color-3-link-color li.button-secondary a:hover,.color5-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color5-background.sm.color-3-link-color li.alt.button a:hover,.color5-background.sm.color-3-link-color li.btn a:focus,.color5-background.sm.color-3-link-color .palette-primary li.button-primary a:focus,.palette-primary .color5-background.sm.color-3-link-color li.button-primary a:focus,.color5-background.sm.color-3-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color5-background.sm.color-3-link-color li.button a:focus,.color5-background.sm.color-3-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color5-background.sm.color-3-link-color li.button-secondary a:focus,.color5-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color5-background.sm.color-3-link-color li.alt.button a:focus,.color5-background.sm.color-3-link-color li.btn a:active,.color5-background.sm.color-3-link-color .palette-primary li.button-primary a:active,.palette-primary .color5-background.sm.color-3-link-color li.button-primary a:active,.color5-background.sm.color-3-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color5-background.sm.color-3-link-color li.button a:active,.color5-background.sm.color-3-link-color .palette-primary li.button-secondary a:active,.palette-primary .color5-background.sm.color-3-link-color li.button-secondary a:active,.color5-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color5-background.sm.color-3-link-color li.alt.button a:active,.color5-background.sm.color-3-link-color li.btn a.highlighted,.color5-background.sm.color-3-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color5-background.sm.color-3-link-color li.button-primary a.highlighted,.color5-background.sm.color-3-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color5-background.sm.color-3-link-color li.button a.highlighted,.color5-background.sm.color-3-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color5-background.sm.color-3-link-color li.button-secondary a.highlighted,.color5-background.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color5-background.sm.color-3-link-color li.alt.button a.highlighted{color:inherit}.color5-background.sm.color-3-link-color li:not(.btn) a{color:#eee}.color5-background.sm.color-3-link-color li:not(.btn) a:hover,.color5-background.sm.color-3-link-color li:not(.btn) a:focus,.color5-background.sm.color-3-link-color li:not(.btn) a:active,.color5-background.sm.color-3-link-color li:not(.btn) a.highlighted{color:#bbb}.color5-background.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color5-background.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color5-background.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color5-background.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color5-background.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color5-background.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color5-background.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color5-background.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color5-background.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color5-background.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color5-background.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color5-background.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color5-background.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color5-background.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color5-background.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color5-background.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color5-background.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color5-background.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color5-background.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color5-background.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color5-background.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color5-background.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color5-background.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color5-background.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color5-background.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color5-background.color-4-link-color a{color:#140070}.color5-background.color-4-link-color a:hover,.color5-background.color-4-link-color a:focus,.color5-background.color-4-link-color a:active,.color5-background.color-4-link-color a.highlighted{color:#2600d6}.color5-background.sidebar.color-4-link-color a{color:#140070}.color5-background.sidebar.color-4-link-color a:hover,.color5-background.sidebar.color-4-link-color a:focus,.color5-background.sidebar.color-4-link-color a:active,.color5-background.sidebar.color-4-link-color a.highlighted{color:#2600d6}.color5-background.sm.color-4-link-color li.btn a,.color5-background.sm.color-4-link-color .palette-primary li.button-primary a,.palette-primary .color5-background.sm.color-4-link-color li.button-primary a,.color5-background.sm.color-4-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color5-background.sm.color-4-link-color li.button a,.color5-background.sm.color-4-link-color .palette-primary li.button-secondary a,.palette-primary .color5-background.sm.color-4-link-color li.button-secondary a,.color5-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color5-background.sm.color-4-link-color li.alt.button a{color:inherit}.color5-background.sm.color-4-link-color li.btn a:hover,.color5-background.sm.color-4-link-color .palette-primary li.button-primary a:hover,.palette-primary .color5-background.sm.color-4-link-color li.button-primary a:hover,.color5-background.sm.color-4-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color5-background.sm.color-4-link-color li.button a:hover,.color5-background.sm.color-4-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color5-background.sm.color-4-link-color li.button-secondary a:hover,.color5-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color5-background.sm.color-4-link-color li.alt.button a:hover,.color5-background.sm.color-4-link-color li.btn a:focus,.color5-background.sm.color-4-link-color .palette-primary li.button-primary a:focus,.palette-primary .color5-background.sm.color-4-link-color li.button-primary a:focus,.color5-background.sm.color-4-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color5-background.sm.color-4-link-color li.button a:focus,.color5-background.sm.color-4-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color5-background.sm.color-4-link-color li.button-secondary a:focus,.color5-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color5-background.sm.color-4-link-color li.alt.button a:focus,.color5-background.sm.color-4-link-color li.btn a:active,.color5-background.sm.color-4-link-color .palette-primary li.button-primary a:active,.palette-primary .color5-background.sm.color-4-link-color li.button-primary a:active,.color5-background.sm.color-4-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color5-background.sm.color-4-link-color li.button a:active,.color5-background.sm.color-4-link-color .palette-primary li.button-secondary a:active,.palette-primary .color5-background.sm.color-4-link-color li.button-secondary a:active,.color5-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color5-background.sm.color-4-link-color li.alt.button a:active,.color5-background.sm.color-4-link-color li.btn a.highlighted,.color5-background.sm.color-4-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color5-background.sm.color-4-link-color li.button-primary a.highlighted,.color5-background.sm.color-4-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color5-background.sm.color-4-link-color li.button a.highlighted,.color5-background.sm.color-4-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color5-background.sm.color-4-link-color li.button-secondary a.highlighted,.color5-background.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color5-background.sm.color-4-link-color li.alt.button a.highlighted{color:inherit}.color5-background.sm.color-4-link-color li:not(.btn) a{color:#140070}.color5-background.sm.color-4-link-color li:not(.btn) a:hover,.color5-background.sm.color-4-link-color li:not(.btn) a:focus,.color5-background.sm.color-4-link-color li:not(.btn) a:active,.color5-background.sm.color-4-link-color li:not(.btn) a.highlighted{color:#2600d6}.color5-background.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color5-background.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color5-background.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color5-background.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color5-background.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color5-background.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color5-background.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color5-background.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color5-background.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color5-background.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color5-background.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color5-background.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color5-background.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color5-background.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color5-background.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color5-background.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color5-background.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color5-background.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color5-background.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color5-background.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color5-background.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color5-background.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color5-background.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color5-background.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color5-background.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color5-background.color-5-link-color a{color:#01013f}.color5-background.color-5-link-color a:hover,.color5-background.color-5-link-color a:focus,.color5-background.color-5-link-color a:active,.color5-background.color-5-link-color a.highlighted{color:#0303a3}.color5-background.sidebar.color-5-link-color a{color:#01013f}.color5-background.sidebar.color-5-link-color a:hover,.color5-background.sidebar.color-5-link-color a:focus,.color5-background.sidebar.color-5-link-color a:active,.color5-background.sidebar.color-5-link-color a.highlighted{color:#0303a3}.color5-background.sm.color-5-link-color li.btn a,.color5-background.sm.color-5-link-color .palette-primary li.button-primary a,.palette-primary .color5-background.sm.color-5-link-color li.button-primary a,.color5-background.sm.color-5-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color5-background.sm.color-5-link-color li.button a,.color5-background.sm.color-5-link-color .palette-primary li.button-secondary a,.palette-primary .color5-background.sm.color-5-link-color li.button-secondary a,.color5-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color5-background.sm.color-5-link-color li.alt.button a{color:inherit}.color5-background.sm.color-5-link-color li.btn a:hover,.color5-background.sm.color-5-link-color .palette-primary li.button-primary a:hover,.palette-primary .color5-background.sm.color-5-link-color li.button-primary a:hover,.color5-background.sm.color-5-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color5-background.sm.color-5-link-color li.button a:hover,.color5-background.sm.color-5-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color5-background.sm.color-5-link-color li.button-secondary a:hover,.color5-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color5-background.sm.color-5-link-color li.alt.button a:hover,.color5-background.sm.color-5-link-color li.btn a:focus,.color5-background.sm.color-5-link-color .palette-primary li.button-primary a:focus,.palette-primary .color5-background.sm.color-5-link-color li.button-primary a:focus,.color5-background.sm.color-5-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color5-background.sm.color-5-link-color li.button a:focus,.color5-background.sm.color-5-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color5-background.sm.color-5-link-color li.button-secondary a:focus,.color5-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color5-background.sm.color-5-link-color li.alt.button a:focus,.color5-background.sm.color-5-link-color li.btn a:active,.color5-background.sm.color-5-link-color .palette-primary li.button-primary a:active,.palette-primary .color5-background.sm.color-5-link-color li.button-primary a:active,.color5-background.sm.color-5-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color5-background.sm.color-5-link-color li.button a:active,.color5-background.sm.color-5-link-color .palette-primary li.button-secondary a:active,.palette-primary .color5-background.sm.color-5-link-color li.button-secondary a:active,.color5-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color5-background.sm.color-5-link-color li.alt.button a:active,.color5-background.sm.color-5-link-color li.btn a.highlighted,.color5-background.sm.color-5-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color5-background.sm.color-5-link-color li.button-primary a.highlighted,.color5-background.sm.color-5-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color5-background.sm.color-5-link-color li.button a.highlighted,.color5-background.sm.color-5-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color5-background.sm.color-5-link-color li.button-secondary a.highlighted,.color5-background.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color5-background.sm.color-5-link-color li.alt.button a.highlighted{color:inherit}.color5-background.sm.color-5-link-color li:not(.btn) a{color:#01013f}.color5-background.sm.color-5-link-color li:not(.btn) a:hover,.color5-background.sm.color-5-link-color li:not(.btn) a:focus,.color5-background.sm.color-5-link-color li:not(.btn) a:active,.color5-background.sm.color-5-link-color li:not(.btn) a.highlighted{color:#0303a3}.color5-background.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color5-background.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color5-background.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color5-background.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color5-background.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color5-background.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color5-background.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color5-background.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color5-background.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color5-background.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color5-background.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color5-background.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color5-background.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color5-background.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color5-background.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color5-background.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color5-background.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color5-background.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color5-background.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color5-background.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color5-background.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color5-background.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color5-background.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color5-background.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color5-background.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color5-background.color-neutral-link-color a{color:#eee}.color5-background.color-neutral-link-color a:hover,.color5-background.color-neutral-link-color a:focus,.color5-background.color-neutral-link-color a:active,.color5-background.color-neutral-link-color a.highlighted{color:#bbb}.color5-background.color-neutral-sub-link-color.sm ul li:not(.btn) a{color:#eee}.color5-background.color-neutral-sub-link-color.sm ul li:not(.btn) a:hover,.color5-background.color-neutral-sub-link-color.sm ul li:not(.btn) a:focus,.color5-background.color-neutral-sub-link-color.sm ul li:not(.btn) a:active,.color5-background.color-neutral-sub-link-color.sm ul li:not(.btn) a.highlighted{color:#bbb}.color5-background.color-1-sub-link-color ul li:not(.btn) a{color:#00a7e1}.color5-background.color-1-sub-link-color ul li:not(.btn) a:hover,.color5-background.color-1-sub-link-color ul li:not(.btn) a:focus,.color5-background.color-1-sub-link-color ul li:not(.btn) a:active,.color5-background.color-1-sub-link-color ul li:not(.btn) a.highlighted{color:#48d0ff}.color5-background.color-2-sub-link-color ul li:not(.btn) a{color:#000360}.color5-background.color-2-sub-link-color ul li:not(.btn) a:hover,.color5-background.color-2-sub-link-color ul li:not(.btn) a:focus,.color5-background.color-2-sub-link-color ul li:not(.btn) a:active,.color5-background.color-2-sub-link-color ul li:not(.btn) a.highlighted{color:#0006c6}.color5-background.color-3-sub-link-color ul li:not(.btn) a{color:#eee}.color5-background.color-3-sub-link-color ul li:not(.btn) a:hover,.color5-background.color-3-sub-link-color ul li:not(.btn) a:focus,.color5-background.color-3-sub-link-color ul li:not(.btn) a:active,.color5-background.color-3-sub-link-color ul li:not(.btn) a.highlighted{color:#bbb}.color5-background.color-4-sub-link-color ul li:not(.btn) a{color:#140070}.color5-background.color-4-sub-link-color ul li:not(.btn) a:hover,.color5-background.color-4-sub-link-color ul li:not(.btn) a:focus,.color5-background.color-4-sub-link-color ul li:not(.btn) a:active,.color5-background.color-4-sub-link-color ul li:not(.btn) a.highlighted{color:#2600d6}.color5-background.color-5-sub-link-color ul li:not(.btn) a{color:#01013f}.color5-background.color-5-sub-link-color ul li:not(.btn) a:hover,.color5-background.color-5-sub-link-color ul li:not(.btn) a:focus,.color5-background.color-5-sub-link-color ul li:not(.btn) a:active,.color5-background.color-5-sub-link-color ul li:not(.btn) a.highlighted{color:#0303a3}.color5-background-hover:focus,.color5-background-hover:hover{background:#01013f ! important}.color-neutral-background.color-1-link-color a{color:#00a7e1}.color-neutral-background.color-1-link-color a:hover,.color-neutral-background.color-1-link-color a:focus,.color-neutral-background.color-1-link-color a:active,.color-neutral-background.color-1-link-color a.highlighted{color:#005b7b}.color-neutral-background.color-1-sub-link-color.sm ul li:not(.btn) a{color:#00a7e1}.color-neutral-background.color-1-sub-link-color.sm ul li:not(.btn) a:hover,.color-neutral-background.color-1-sub-link-color.sm ul li:not(.btn) a:focus,.color-neutral-background.color-1-sub-link-color.sm ul li:not(.btn) a:active,.color-neutral-background.color-1-sub-link-color.sm ul li:not(.btn) a.highlighted{color:#005b7b}.color-neutral-background.color-2-link-color a{color:#000360}.color-neutral-background.color-2-link-color a:hover,.color-neutral-background.color-2-link-color a:focus,.color-neutral-background.color-2-link-color a:active,.color-neutral-background.color-2-link-color a.highlighted{color:black}.color-neutral-background.color-2-sub-link-color.sm ul li:not(.btn) a{color:#000360}.color-neutral-background.color-2-sub-link-color.sm ul li:not(.btn) a:hover,.color-neutral-background.color-2-sub-link-color.sm ul li:not(.btn) a:focus,.color-neutral-background.color-2-sub-link-color.sm ul li:not(.btn) a:active,.color-neutral-background.color-2-sub-link-color.sm ul li:not(.btn) a.highlighted{color:black}.color-neutral-background.color-3-link-color a{color:#eee}.color-neutral-background.color-3-link-color a:hover,.color-neutral-background.color-3-link-color a:focus,.color-neutral-background.color-3-link-color a:active,.color-neutral-background.color-3-link-color a.highlighted{color:#bbb}.color-neutral-background.color-3-sub-link-color.sm ul li:not(.btn) a{color:#eee}.color-neutral-background.color-3-sub-link-color.sm ul li:not(.btn) a:hover,.color-neutral-background.color-3-sub-link-color.sm ul li:not(.btn) a:focus,.color-neutral-background.color-3-sub-link-color.sm ul li:not(.btn) a:active,.color-neutral-background.color-3-sub-link-color.sm ul li:not(.btn) a.highlighted{color:#bbb}.color-neutral-background.color-4-link-color a{color:#140070}.color-neutral-background.color-4-link-color a:hover,.color-neutral-background.color-4-link-color a:focus,.color-neutral-background.color-4-link-color a:active,.color-neutral-background.color-4-link-color a.highlighted{color:#02000a}.color-neutral-background.color-4-sub-link-color.sm ul li:not(.btn) a{color:#140070}.color-neutral-background.color-4-sub-link-color.sm ul li:not(.btn) a:hover,.color-neutral-background.color-4-sub-link-color.sm ul li:not(.btn) a:focus,.color-neutral-background.color-4-sub-link-color.sm ul li:not(.btn) a:active,.color-neutral-background.color-4-sub-link-color.sm ul li:not(.btn) a.highlighted{color:#02000a}.color-neutral-background.color-5-link-color a{color:#01013f}.color-neutral-background.color-5-link-color a:hover,.color-neutral-background.color-5-link-color a:focus,.color-neutral-background.color-5-link-color a:active,.color-neutral-background.color-5-link-color a.highlighted{color:#0303a3}.color-neutral-background.color-5-sub-link-color.sm ul li:not(.btn) a{color:#01013f}.color-neutral-background.color-5-sub-link-color.sm ul li:not(.btn) a:hover,.color-neutral-background.color-5-sub-link-color.sm ul li:not(.btn) a:focus,.color-neutral-background.color-5-sub-link-color.sm ul li:not(.btn) a:active,.color-neutral-background.color-5-sub-link-color.sm ul li:not(.btn) a.highlighted{color:#0303a3}.color-neutral-background.color-neutral-link-color a{color:#eee}.color-neutral-background.color-neutral-link-color a:hover,.color-neutral-background.color-neutral-link-color a:focus,.color-neutral-background.color-neutral-link-color a:active,.color-neutral-background.color-neutral-link-color a.highlighted{color:#bbb}.color-neutral-background.color-neutral-sub-link-color.sm ul li:not(.btn) a{color:#eee}.color-neutral-background.color-neutral-sub-link-color.sm ul li:not(.btn) a:hover,.color-neutral-background.color-neutral-sub-link-color.sm ul li:not(.btn) a:focus,.color-neutral-background.color-neutral-sub-link-color.sm ul li:not(.btn) a:active,.color-neutral-background.color-neutral-sub-link-color.sm ul li:not(.btn) a.highlighted{color:#bbb}.color1-background-color.color-1-link-color a{color:#00a7e1}.color1-background-color.color-1-link-color a:hover,.color1-background-color.color-1-link-color a:focus,.color1-background-color.color-1-link-color a:active,.color1-background-color.color-1-link-color a.highlighted{color:#005b7b}.color1-background-color.sidebar.color-1-link-color a{color:#00a7e1}.color1-background-color.sidebar.color-1-link-color a:hover,.color1-background-color.sidebar.color-1-link-color a:focus,.color1-background-color.sidebar.color-1-link-color a:active,.color1-background-color.sidebar.color-1-link-color a.highlighted{color:#005b7b}.color1-background-color.sm.color-1-link-color li.btn a,.color1-background-color.sm.color-1-link-color .palette-primary li.button-primary a,.palette-primary .color1-background-color.sm.color-1-link-color li.button-primary a,.color1-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color1-background-color.sm.color-1-link-color li.button a,.color1-background-color.sm.color-1-link-color .palette-primary li.button-secondary a,.palette-primary .color1-background-color.sm.color-1-link-color li.button-secondary a,.color1-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color1-background-color.sm.color-1-link-color li.alt.button a{color:inherit}.color1-background-color.sm.color-1-link-color li.btn a:hover,.color1-background-color.sm.color-1-link-color .palette-primary li.button-primary a:hover,.palette-primary .color1-background-color.sm.color-1-link-color li.button-primary a:hover,.color1-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color1-background-color.sm.color-1-link-color li.button a:hover,.color1-background-color.sm.color-1-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color1-background-color.sm.color-1-link-color li.button-secondary a:hover,.color1-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color1-background-color.sm.color-1-link-color li.alt.button a:hover,.color1-background-color.sm.color-1-link-color li.btn a:focus,.color1-background-color.sm.color-1-link-color .palette-primary li.button-primary a:focus,.palette-primary .color1-background-color.sm.color-1-link-color li.button-primary a:focus,.color1-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color1-background-color.sm.color-1-link-color li.button a:focus,.color1-background-color.sm.color-1-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color1-background-color.sm.color-1-link-color li.button-secondary a:focus,.color1-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color1-background-color.sm.color-1-link-color li.alt.button a:focus,.color1-background-color.sm.color-1-link-color li.btn a:active,.color1-background-color.sm.color-1-link-color .palette-primary li.button-primary a:active,.palette-primary .color1-background-color.sm.color-1-link-color li.button-primary a:active,.color1-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color1-background-color.sm.color-1-link-color li.button a:active,.color1-background-color.sm.color-1-link-color .palette-primary li.button-secondary a:active,.palette-primary .color1-background-color.sm.color-1-link-color li.button-secondary a:active,.color1-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color1-background-color.sm.color-1-link-color li.alt.button a:active,.color1-background-color.sm.color-1-link-color li.btn a.highlighted,.color1-background-color.sm.color-1-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color1-background-color.sm.color-1-link-color li.button-primary a.highlighted,.color1-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color1-background-color.sm.color-1-link-color li.button a.highlighted,.color1-background-color.sm.color-1-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color1-background-color.sm.color-1-link-color li.button-secondary a.highlighted,.color1-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color1-background-color.sm.color-1-link-color li.alt.button a.highlighted{color:inherit}.color1-background-color.sm.color-1-link-color li:not(.btn) a{color:#00a7e1}.color1-background-color.sm.color-1-link-color li:not(.btn) a:hover,.color1-background-color.sm.color-1-link-color li:not(.btn) a:focus,.color1-background-color.sm.color-1-link-color li:not(.btn) a:active,.color1-background-color.sm.color-1-link-color li:not(.btn) a.highlighted{color:#005b7b}.color1-background-color.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color1-background-color.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color1-background-color.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color1-background-color.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color1-background-color.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color1-background-color.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color1-background-color.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color1-background-color.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color1-background-color.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color1-background-color.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color1-background-color.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color1-background-color.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color1-background-color.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color1-background-color.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color1-background-color.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color1-background-color.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color1-background-color.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color1-background-color.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color1-background-color.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color1-background-color.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color1-background-color.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color1-background-color.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color1-background-color.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color1-background-color.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color1-background-color.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color1-background-color.color-2-link-color a{color:#000360}.color1-background-color.color-2-link-color a:hover,.color1-background-color.color-2-link-color a:focus,.color1-background-color.color-2-link-color a:active,.color1-background-color.color-2-link-color a.highlighted{color:black}.color1-background-color.sidebar.color-2-link-color a{color:#000360}.color1-background-color.sidebar.color-2-link-color a:hover,.color1-background-color.sidebar.color-2-link-color a:focus,.color1-background-color.sidebar.color-2-link-color a:active,.color1-background-color.sidebar.color-2-link-color a.highlighted{color:black}.color1-background-color.sm.color-2-link-color li.btn a,.color1-background-color.sm.color-2-link-color .palette-primary li.button-primary a,.palette-primary .color1-background-color.sm.color-2-link-color li.button-primary a,.color1-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color1-background-color.sm.color-2-link-color li.button a,.color1-background-color.sm.color-2-link-color .palette-primary li.button-secondary a,.palette-primary .color1-background-color.sm.color-2-link-color li.button-secondary a,.color1-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color1-background-color.sm.color-2-link-color li.alt.button a{color:inherit}.color1-background-color.sm.color-2-link-color li.btn a:hover,.color1-background-color.sm.color-2-link-color .palette-primary li.button-primary a:hover,.palette-primary .color1-background-color.sm.color-2-link-color li.button-primary a:hover,.color1-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color1-background-color.sm.color-2-link-color li.button a:hover,.color1-background-color.sm.color-2-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color1-background-color.sm.color-2-link-color li.button-secondary a:hover,.color1-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color1-background-color.sm.color-2-link-color li.alt.button a:hover,.color1-background-color.sm.color-2-link-color li.btn a:focus,.color1-background-color.sm.color-2-link-color .palette-primary li.button-primary a:focus,.palette-primary .color1-background-color.sm.color-2-link-color li.button-primary a:focus,.color1-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color1-background-color.sm.color-2-link-color li.button a:focus,.color1-background-color.sm.color-2-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color1-background-color.sm.color-2-link-color li.button-secondary a:focus,.color1-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color1-background-color.sm.color-2-link-color li.alt.button a:focus,.color1-background-color.sm.color-2-link-color li.btn a:active,.color1-background-color.sm.color-2-link-color .palette-primary li.button-primary a:active,.palette-primary .color1-background-color.sm.color-2-link-color li.button-primary a:active,.color1-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color1-background-color.sm.color-2-link-color li.button a:active,.color1-background-color.sm.color-2-link-color .palette-primary li.button-secondary a:active,.palette-primary .color1-background-color.sm.color-2-link-color li.button-secondary a:active,.color1-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color1-background-color.sm.color-2-link-color li.alt.button a:active,.color1-background-color.sm.color-2-link-color li.btn a.highlighted,.color1-background-color.sm.color-2-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color1-background-color.sm.color-2-link-color li.button-primary a.highlighted,.color1-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color1-background-color.sm.color-2-link-color li.button a.highlighted,.color1-background-color.sm.color-2-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color1-background-color.sm.color-2-link-color li.button-secondary a.highlighted,.color1-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color1-background-color.sm.color-2-link-color li.alt.button a.highlighted{color:inherit}.color1-background-color.sm.color-2-link-color li:not(.btn) a{color:#000360}.color1-background-color.sm.color-2-link-color li:not(.btn) a:hover,.color1-background-color.sm.color-2-link-color li:not(.btn) a:focus,.color1-background-color.sm.color-2-link-color li:not(.btn) a:active,.color1-background-color.sm.color-2-link-color li:not(.btn) a.highlighted{color:black}.color1-background-color.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color1-background-color.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color1-background-color.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color1-background-color.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color1-background-color.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color1-background-color.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color1-background-color.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color1-background-color.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color1-background-color.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color1-background-color.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color1-background-color.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color1-background-color.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color1-background-color.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color1-background-color.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color1-background-color.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color1-background-color.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color1-background-color.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color1-background-color.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color1-background-color.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color1-background-color.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color1-background-color.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color1-background-color.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color1-background-color.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color1-background-color.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color1-background-color.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color1-background-color.color-3-link-color a{color:#eee}.color1-background-color.color-3-link-color a:hover,.color1-background-color.color-3-link-color a:focus,.color1-background-color.color-3-link-color a:active,.color1-background-color.color-3-link-color a.highlighted{color:#bbb}.color1-background-color.sidebar.color-3-link-color a{color:#eee}.color1-background-color.sidebar.color-3-link-color a:hover,.color1-background-color.sidebar.color-3-link-color a:focus,.color1-background-color.sidebar.color-3-link-color a:active,.color1-background-color.sidebar.color-3-link-color a.highlighted{color:#bbb}.color1-background-color.sm.color-3-link-color li.btn a,.color1-background-color.sm.color-3-link-color .palette-primary li.button-primary a,.palette-primary .color1-background-color.sm.color-3-link-color li.button-primary a,.color1-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color1-background-color.sm.color-3-link-color li.button a,.color1-background-color.sm.color-3-link-color .palette-primary li.button-secondary a,.palette-primary .color1-background-color.sm.color-3-link-color li.button-secondary a,.color1-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color1-background-color.sm.color-3-link-color li.alt.button a{color:inherit}.color1-background-color.sm.color-3-link-color li.btn a:hover,.color1-background-color.sm.color-3-link-color .palette-primary li.button-primary a:hover,.palette-primary .color1-background-color.sm.color-3-link-color li.button-primary a:hover,.color1-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color1-background-color.sm.color-3-link-color li.button a:hover,.color1-background-color.sm.color-3-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color1-background-color.sm.color-3-link-color li.button-secondary a:hover,.color1-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color1-background-color.sm.color-3-link-color li.alt.button a:hover,.color1-background-color.sm.color-3-link-color li.btn a:focus,.color1-background-color.sm.color-3-link-color .palette-primary li.button-primary a:focus,.palette-primary .color1-background-color.sm.color-3-link-color li.button-primary a:focus,.color1-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color1-background-color.sm.color-3-link-color li.button a:focus,.color1-background-color.sm.color-3-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color1-background-color.sm.color-3-link-color li.button-secondary a:focus,.color1-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color1-background-color.sm.color-3-link-color li.alt.button a:focus,.color1-background-color.sm.color-3-link-color li.btn a:active,.color1-background-color.sm.color-3-link-color .palette-primary li.button-primary a:active,.palette-primary .color1-background-color.sm.color-3-link-color li.button-primary a:active,.color1-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color1-background-color.sm.color-3-link-color li.button a:active,.color1-background-color.sm.color-3-link-color .palette-primary li.button-secondary a:active,.palette-primary .color1-background-color.sm.color-3-link-color li.button-secondary a:active,.color1-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color1-background-color.sm.color-3-link-color li.alt.button a:active,.color1-background-color.sm.color-3-link-color li.btn a.highlighted,.color1-background-color.sm.color-3-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color1-background-color.sm.color-3-link-color li.button-primary a.highlighted,.color1-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color1-background-color.sm.color-3-link-color li.button a.highlighted,.color1-background-color.sm.color-3-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color1-background-color.sm.color-3-link-color li.button-secondary a.highlighted,.color1-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color1-background-color.sm.color-3-link-color li.alt.button a.highlighted{color:inherit}.color1-background-color.sm.color-3-link-color li:not(.btn) a{color:#eee}.color1-background-color.sm.color-3-link-color li:not(.btn) a:hover,.color1-background-color.sm.color-3-link-color li:not(.btn) a:focus,.color1-background-color.sm.color-3-link-color li:not(.btn) a:active,.color1-background-color.sm.color-3-link-color li:not(.btn) a.highlighted{color:#bbb}.color1-background-color.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color1-background-color.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color1-background-color.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color1-background-color.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color1-background-color.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color1-background-color.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color1-background-color.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color1-background-color.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color1-background-color.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color1-background-color.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color1-background-color.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color1-background-color.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color1-background-color.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color1-background-color.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color1-background-color.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color1-background-color.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color1-background-color.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color1-background-color.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color1-background-color.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color1-background-color.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color1-background-color.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color1-background-color.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color1-background-color.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color1-background-color.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color1-background-color.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color1-background-color.color-4-link-color a{color:#140070}.color1-background-color.color-4-link-color a:hover,.color1-background-color.color-4-link-color a:focus,.color1-background-color.color-4-link-color a:active,.color1-background-color.color-4-link-color a.highlighted{color:#02000a}.color1-background-color.sidebar.color-4-link-color a{color:#140070}.color1-background-color.sidebar.color-4-link-color a:hover,.color1-background-color.sidebar.color-4-link-color a:focus,.color1-background-color.sidebar.color-4-link-color a:active,.color1-background-color.sidebar.color-4-link-color a.highlighted{color:#02000a}.color1-background-color.sm.color-4-link-color li.btn a,.color1-background-color.sm.color-4-link-color .palette-primary li.button-primary a,.palette-primary .color1-background-color.sm.color-4-link-color li.button-primary a,.color1-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color1-background-color.sm.color-4-link-color li.button a,.color1-background-color.sm.color-4-link-color .palette-primary li.button-secondary a,.palette-primary .color1-background-color.sm.color-4-link-color li.button-secondary a,.color1-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color1-background-color.sm.color-4-link-color li.alt.button a{color:inherit}.color1-background-color.sm.color-4-link-color li.btn a:hover,.color1-background-color.sm.color-4-link-color .palette-primary li.button-primary a:hover,.palette-primary .color1-background-color.sm.color-4-link-color li.button-primary a:hover,.color1-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color1-background-color.sm.color-4-link-color li.button a:hover,.color1-background-color.sm.color-4-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color1-background-color.sm.color-4-link-color li.button-secondary a:hover,.color1-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color1-background-color.sm.color-4-link-color li.alt.button a:hover,.color1-background-color.sm.color-4-link-color li.btn a:focus,.color1-background-color.sm.color-4-link-color .palette-primary li.button-primary a:focus,.palette-primary .color1-background-color.sm.color-4-link-color li.button-primary a:focus,.color1-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color1-background-color.sm.color-4-link-color li.button a:focus,.color1-background-color.sm.color-4-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color1-background-color.sm.color-4-link-color li.button-secondary a:focus,.color1-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color1-background-color.sm.color-4-link-color li.alt.button a:focus,.color1-background-color.sm.color-4-link-color li.btn a:active,.color1-background-color.sm.color-4-link-color .palette-primary li.button-primary a:active,.palette-primary .color1-background-color.sm.color-4-link-color li.button-primary a:active,.color1-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color1-background-color.sm.color-4-link-color li.button a:active,.color1-background-color.sm.color-4-link-color .palette-primary li.button-secondary a:active,.palette-primary .color1-background-color.sm.color-4-link-color li.button-secondary a:active,.color1-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color1-background-color.sm.color-4-link-color li.alt.button a:active,.color1-background-color.sm.color-4-link-color li.btn a.highlighted,.color1-background-color.sm.color-4-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color1-background-color.sm.color-4-link-color li.button-primary a.highlighted,.color1-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color1-background-color.sm.color-4-link-color li.button a.highlighted,.color1-background-color.sm.color-4-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color1-background-color.sm.color-4-link-color li.button-secondary a.highlighted,.color1-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color1-background-color.sm.color-4-link-color li.alt.button a.highlighted{color:inherit}.color1-background-color.sm.color-4-link-color li:not(.btn) a{color:#140070}.color1-background-color.sm.color-4-link-color li:not(.btn) a:hover,.color1-background-color.sm.color-4-link-color li:not(.btn) a:focus,.color1-background-color.sm.color-4-link-color li:not(.btn) a:active,.color1-background-color.sm.color-4-link-color li:not(.btn) a.highlighted{color:#02000a}.color1-background-color.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color1-background-color.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color1-background-color.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color1-background-color.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color1-background-color.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color1-background-color.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color1-background-color.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color1-background-color.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color1-background-color.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color1-background-color.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color1-background-color.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color1-background-color.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color1-background-color.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color1-background-color.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color1-background-color.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color1-background-color.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color1-background-color.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color1-background-color.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color1-background-color.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color1-background-color.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color1-background-color.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color1-background-color.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color1-background-color.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color1-background-color.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color1-background-color.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color1-background-color.color-5-link-color a{color:#01013f}.color1-background-color.color-5-link-color a:hover,.color1-background-color.color-5-link-color a:focus,.color1-background-color.color-5-link-color a:active,.color1-background-color.color-5-link-color a.highlighted{color:#0303a3}.color1-background-color.sidebar.color-5-link-color a{color:#01013f}.color1-background-color.sidebar.color-5-link-color a:hover,.color1-background-color.sidebar.color-5-link-color a:focus,.color1-background-color.sidebar.color-5-link-color a:active,.color1-background-color.sidebar.color-5-link-color a.highlighted{color:#0303a3}.color1-background-color.sm.color-5-link-color li.btn a,.color1-background-color.sm.color-5-link-color .palette-primary li.button-primary a,.palette-primary .color1-background-color.sm.color-5-link-color li.button-primary a,.color1-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color1-background-color.sm.color-5-link-color li.button a,.color1-background-color.sm.color-5-link-color .palette-primary li.button-secondary a,.palette-primary .color1-background-color.sm.color-5-link-color li.button-secondary a,.color1-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color1-background-color.sm.color-5-link-color li.alt.button a{color:inherit}.color1-background-color.sm.color-5-link-color li.btn a:hover,.color1-background-color.sm.color-5-link-color .palette-primary li.button-primary a:hover,.palette-primary .color1-background-color.sm.color-5-link-color li.button-primary a:hover,.color1-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color1-background-color.sm.color-5-link-color li.button a:hover,.color1-background-color.sm.color-5-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color1-background-color.sm.color-5-link-color li.button-secondary a:hover,.color1-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color1-background-color.sm.color-5-link-color li.alt.button a:hover,.color1-background-color.sm.color-5-link-color li.btn a:focus,.color1-background-color.sm.color-5-link-color .palette-primary li.button-primary a:focus,.palette-primary .color1-background-color.sm.color-5-link-color li.button-primary a:focus,.color1-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color1-background-color.sm.color-5-link-color li.button a:focus,.color1-background-color.sm.color-5-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color1-background-color.sm.color-5-link-color li.button-secondary a:focus,.color1-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color1-background-color.sm.color-5-link-color li.alt.button a:focus,.color1-background-color.sm.color-5-link-color li.btn a:active,.color1-background-color.sm.color-5-link-color .palette-primary li.button-primary a:active,.palette-primary .color1-background-color.sm.color-5-link-color li.button-primary a:active,.color1-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color1-background-color.sm.color-5-link-color li.button a:active,.color1-background-color.sm.color-5-link-color .palette-primary li.button-secondary a:active,.palette-primary .color1-background-color.sm.color-5-link-color li.button-secondary a:active,.color1-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color1-background-color.sm.color-5-link-color li.alt.button a:active,.color1-background-color.sm.color-5-link-color li.btn a.highlighted,.color1-background-color.sm.color-5-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color1-background-color.sm.color-5-link-color li.button-primary a.highlighted,.color1-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color1-background-color.sm.color-5-link-color li.button a.highlighted,.color1-background-color.sm.color-5-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color1-background-color.sm.color-5-link-color li.button-secondary a.highlighted,.color1-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color1-background-color.sm.color-5-link-color li.alt.button a.highlighted{color:inherit}.color1-background-color.sm.color-5-link-color li:not(.btn) a{color:#01013f}.color1-background-color.sm.color-5-link-color li:not(.btn) a:hover,.color1-background-color.sm.color-5-link-color li:not(.btn) a:focus,.color1-background-color.sm.color-5-link-color li:not(.btn) a:active,.color1-background-color.sm.color-5-link-color li:not(.btn) a.highlighted{color:#0303a3}.color1-background-color.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color1-background-color.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color1-background-color.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color1-background-color.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color1-background-color.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color1-background-color.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color1-background-color.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color1-background-color.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color1-background-color.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color1-background-color.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color1-background-color.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color1-background-color.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color1-background-color.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color1-background-color.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color1-background-color.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color1-background-color.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color1-background-color.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color1-background-color.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color1-background-color.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color1-background-color.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color1-background-color.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color1-background-color.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color1-background-color.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color1-background-color.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color1-background-color.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color1-background-color.color-neutral-link-color a{color:#eee}.color1-background-color.color-neutral-link-color a:hover,.color1-background-color.color-neutral-link-color a:focus,.color1-background-color.color-neutral-link-color a:active,.color1-background-color.color-neutral-link-color a.highlighted{color:#bbb}.color1-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a{color:#eee}.color1-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a:hover,.color1-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a:focus,.color1-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a:active,.color1-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a.highlighted{color:#bbb}.color1-background-color.color-1-sub-link-color ul li:not(.btn) a{color:#00a7e1}.color1-background-color.color-1-sub-link-color ul li:not(.btn) a:hover,.color1-background-color.color-1-sub-link-color ul li:not(.btn) a:focus,.color1-background-color.color-1-sub-link-color ul li:not(.btn) a:active,.color1-background-color.color-1-sub-link-color ul li:not(.btn) a.highlighted{color:#005b7b}.color1-background-color.color-2-sub-link-color ul li:not(.btn) a{color:#000360}.color1-background-color.color-2-sub-link-color ul li:not(.btn) a:hover,.color1-background-color.color-2-sub-link-color ul li:not(.btn) a:focus,.color1-background-color.color-2-sub-link-color ul li:not(.btn) a:active,.color1-background-color.color-2-sub-link-color ul li:not(.btn) a.highlighted{color:black}.color1-background-color.color-3-sub-link-color ul li:not(.btn) a{color:#eee}.color1-background-color.color-3-sub-link-color ul li:not(.btn) a:hover,.color1-background-color.color-3-sub-link-color ul li:not(.btn) a:focus,.color1-background-color.color-3-sub-link-color ul li:not(.btn) a:active,.color1-background-color.color-3-sub-link-color ul li:not(.btn) a.highlighted{color:#bbb}.color1-background-color.color-4-sub-link-color ul li:not(.btn) a{color:#140070}.color1-background-color.color-4-sub-link-color ul li:not(.btn) a:hover,.color1-background-color.color-4-sub-link-color ul li:not(.btn) a:focus,.color1-background-color.color-4-sub-link-color ul li:not(.btn) a:active,.color1-background-color.color-4-sub-link-color ul li:not(.btn) a.highlighted{color:#02000a}.color1-background-color.color-5-sub-link-color ul li:not(.btn) a{color:#01013f}.color1-background-color.color-5-sub-link-color ul li:not(.btn) a:hover,.color1-background-color.color-5-sub-link-color ul li:not(.btn) a:focus,.color1-background-color.color-5-sub-link-color ul li:not(.btn) a:active,.color1-background-color.color-5-sub-link-color ul li:not(.btn) a.highlighted{color:#0303a3}.color1-background-color-hover:focus,.color1-background-color-hover:hover{background-color:#00a7e1 ! important}.color2-background-color.color-1-link-color a{color:#00a7e1}.color2-background-color.color-1-link-color a:hover,.color2-background-color.color-1-link-color a:focus,.color2-background-color.color-1-link-color a:active,.color2-background-color.color-1-link-color a.highlighted{color:#48d0ff}.color2-background-color.sidebar.color-1-link-color a{color:#00a7e1}.color2-background-color.sidebar.color-1-link-color a:hover,.color2-background-color.sidebar.color-1-link-color a:focus,.color2-background-color.sidebar.color-1-link-color a:active,.color2-background-color.sidebar.color-1-link-color a.highlighted{color:#48d0ff}.color2-background-color.sm.color-1-link-color li.btn a,.color2-background-color.sm.color-1-link-color .palette-primary li.button-primary a,.palette-primary .color2-background-color.sm.color-1-link-color li.button-primary a,.color2-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color2-background-color.sm.color-1-link-color li.button a,.color2-background-color.sm.color-1-link-color .palette-primary li.button-secondary a,.palette-primary .color2-background-color.sm.color-1-link-color li.button-secondary a,.color2-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color2-background-color.sm.color-1-link-color li.alt.button a{color:inherit}.color2-background-color.sm.color-1-link-color li.btn a:hover,.color2-background-color.sm.color-1-link-color .palette-primary li.button-primary a:hover,.palette-primary .color2-background-color.sm.color-1-link-color li.button-primary a:hover,.color2-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color2-background-color.sm.color-1-link-color li.button a:hover,.color2-background-color.sm.color-1-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color2-background-color.sm.color-1-link-color li.button-secondary a:hover,.color2-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color2-background-color.sm.color-1-link-color li.alt.button a:hover,.color2-background-color.sm.color-1-link-color li.btn a:focus,.color2-background-color.sm.color-1-link-color .palette-primary li.button-primary a:focus,.palette-primary .color2-background-color.sm.color-1-link-color li.button-primary a:focus,.color2-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color2-background-color.sm.color-1-link-color li.button a:focus,.color2-background-color.sm.color-1-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color2-background-color.sm.color-1-link-color li.button-secondary a:focus,.color2-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color2-background-color.sm.color-1-link-color li.alt.button a:focus,.color2-background-color.sm.color-1-link-color li.btn a:active,.color2-background-color.sm.color-1-link-color .palette-primary li.button-primary a:active,.palette-primary .color2-background-color.sm.color-1-link-color li.button-primary a:active,.color2-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color2-background-color.sm.color-1-link-color li.button a:active,.color2-background-color.sm.color-1-link-color .palette-primary li.button-secondary a:active,.palette-primary .color2-background-color.sm.color-1-link-color li.button-secondary a:active,.color2-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color2-background-color.sm.color-1-link-color li.alt.button a:active,.color2-background-color.sm.color-1-link-color li.btn a.highlighted,.color2-background-color.sm.color-1-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color2-background-color.sm.color-1-link-color li.button-primary a.highlighted,.color2-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color2-background-color.sm.color-1-link-color li.button a.highlighted,.color2-background-color.sm.color-1-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color2-background-color.sm.color-1-link-color li.button-secondary a.highlighted,.color2-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color2-background-color.sm.color-1-link-color li.alt.button a.highlighted{color:inherit}.color2-background-color.sm.color-1-link-color li:not(.btn) a{color:#00a7e1}.color2-background-color.sm.color-1-link-color li:not(.btn) a:hover,.color2-background-color.sm.color-1-link-color li:not(.btn) a:focus,.color2-background-color.sm.color-1-link-color li:not(.btn) a:active,.color2-background-color.sm.color-1-link-color li:not(.btn) a.highlighted{color:#48d0ff}.color2-background-color.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color2-background-color.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color2-background-color.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color2-background-color.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color2-background-color.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color2-background-color.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color2-background-color.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color2-background-color.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color2-background-color.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color2-background-color.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color2-background-color.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color2-background-color.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color2-background-color.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color2-background-color.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color2-background-color.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color2-background-color.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color2-background-color.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color2-background-color.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color2-background-color.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color2-background-color.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color2-background-color.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color2-background-color.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color2-background-color.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color2-background-color.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color2-background-color.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color2-background-color.color-2-link-color a{color:#000360}.color2-background-color.color-2-link-color a:hover,.color2-background-color.color-2-link-color a:focus,.color2-background-color.color-2-link-color a:active,.color2-background-color.color-2-link-color a.highlighted{color:black}.color2-background-color.sidebar.color-2-link-color a{color:#000360}.color2-background-color.sidebar.color-2-link-color a:hover,.color2-background-color.sidebar.color-2-link-color a:focus,.color2-background-color.sidebar.color-2-link-color a:active,.color2-background-color.sidebar.color-2-link-color a.highlighted{color:black}.color2-background-color.sm.color-2-link-color li.btn a,.color2-background-color.sm.color-2-link-color .palette-primary li.button-primary a,.palette-primary .color2-background-color.sm.color-2-link-color li.button-primary a,.color2-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color2-background-color.sm.color-2-link-color li.button a,.color2-background-color.sm.color-2-link-color .palette-primary li.button-secondary a,.palette-primary .color2-background-color.sm.color-2-link-color li.button-secondary a,.color2-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color2-background-color.sm.color-2-link-color li.alt.button a{color:inherit}.color2-background-color.sm.color-2-link-color li.btn a:hover,.color2-background-color.sm.color-2-link-color .palette-primary li.button-primary a:hover,.palette-primary .color2-background-color.sm.color-2-link-color li.button-primary a:hover,.color2-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color2-background-color.sm.color-2-link-color li.button a:hover,.color2-background-color.sm.color-2-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color2-background-color.sm.color-2-link-color li.button-secondary a:hover,.color2-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color2-background-color.sm.color-2-link-color li.alt.button a:hover,.color2-background-color.sm.color-2-link-color li.btn a:focus,.color2-background-color.sm.color-2-link-color .palette-primary li.button-primary a:focus,.palette-primary .color2-background-color.sm.color-2-link-color li.button-primary a:focus,.color2-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color2-background-color.sm.color-2-link-color li.button a:focus,.color2-background-color.sm.color-2-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color2-background-color.sm.color-2-link-color li.button-secondary a:focus,.color2-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color2-background-color.sm.color-2-link-color li.alt.button a:focus,.color2-background-color.sm.color-2-link-color li.btn a:active,.color2-background-color.sm.color-2-link-color .palette-primary li.button-primary a:active,.palette-primary .color2-background-color.sm.color-2-link-color li.button-primary a:active,.color2-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color2-background-color.sm.color-2-link-color li.button a:active,.color2-background-color.sm.color-2-link-color .palette-primary li.button-secondary a:active,.palette-primary .color2-background-color.sm.color-2-link-color li.button-secondary a:active,.color2-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color2-background-color.sm.color-2-link-color li.alt.button a:active,.color2-background-color.sm.color-2-link-color li.btn a.highlighted,.color2-background-color.sm.color-2-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color2-background-color.sm.color-2-link-color li.button-primary a.highlighted,.color2-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color2-background-color.sm.color-2-link-color li.button a.highlighted,.color2-background-color.sm.color-2-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color2-background-color.sm.color-2-link-color li.button-secondary a.highlighted,.color2-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color2-background-color.sm.color-2-link-color li.alt.button a.highlighted{color:inherit}.color2-background-color.sm.color-2-link-color li:not(.btn) a{color:#000360}.color2-background-color.sm.color-2-link-color li:not(.btn) a:hover,.color2-background-color.sm.color-2-link-color li:not(.btn) a:focus,.color2-background-color.sm.color-2-link-color li:not(.btn) a:active,.color2-background-color.sm.color-2-link-color li:not(.btn) a.highlighted{color:black}.color2-background-color.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color2-background-color.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color2-background-color.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color2-background-color.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color2-background-color.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color2-background-color.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color2-background-color.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color2-background-color.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color2-background-color.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color2-background-color.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color2-background-color.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color2-background-color.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color2-background-color.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color2-background-color.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color2-background-color.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color2-background-color.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color2-background-color.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color2-background-color.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color2-background-color.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color2-background-color.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color2-background-color.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color2-background-color.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color2-background-color.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color2-background-color.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color2-background-color.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color2-background-color.color-3-link-color a{color:#eee}.color2-background-color.color-3-link-color a:hover,.color2-background-color.color-3-link-color a:focus,.color2-background-color.color-3-link-color a:active,.color2-background-color.color-3-link-color a.highlighted{color:#bbb}.color2-background-color.sidebar.color-3-link-color a{color:#eee}.color2-background-color.sidebar.color-3-link-color a:hover,.color2-background-color.sidebar.color-3-link-color a:focus,.color2-background-color.sidebar.color-3-link-color a:active,.color2-background-color.sidebar.color-3-link-color a.highlighted{color:#bbb}.color2-background-color.sm.color-3-link-color li.btn a,.color2-background-color.sm.color-3-link-color .palette-primary li.button-primary a,.palette-primary .color2-background-color.sm.color-3-link-color li.button-primary a,.color2-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color2-background-color.sm.color-3-link-color li.button a,.color2-background-color.sm.color-3-link-color .palette-primary li.button-secondary a,.palette-primary .color2-background-color.sm.color-3-link-color li.button-secondary a,.color2-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color2-background-color.sm.color-3-link-color li.alt.button a{color:inherit}.color2-background-color.sm.color-3-link-color li.btn a:hover,.color2-background-color.sm.color-3-link-color .palette-primary li.button-primary a:hover,.palette-primary .color2-background-color.sm.color-3-link-color li.button-primary a:hover,.color2-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color2-background-color.sm.color-3-link-color li.button a:hover,.color2-background-color.sm.color-3-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color2-background-color.sm.color-3-link-color li.button-secondary a:hover,.color2-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color2-background-color.sm.color-3-link-color li.alt.button a:hover,.color2-background-color.sm.color-3-link-color li.btn a:focus,.color2-background-color.sm.color-3-link-color .palette-primary li.button-primary a:focus,.palette-primary .color2-background-color.sm.color-3-link-color li.button-primary a:focus,.color2-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color2-background-color.sm.color-3-link-color li.button a:focus,.color2-background-color.sm.color-3-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color2-background-color.sm.color-3-link-color li.button-secondary a:focus,.color2-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color2-background-color.sm.color-3-link-color li.alt.button a:focus,.color2-background-color.sm.color-3-link-color li.btn a:active,.color2-background-color.sm.color-3-link-color .palette-primary li.button-primary a:active,.palette-primary .color2-background-color.sm.color-3-link-color li.button-primary a:active,.color2-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color2-background-color.sm.color-3-link-color li.button a:active,.color2-background-color.sm.color-3-link-color .palette-primary li.button-secondary a:active,.palette-primary .color2-background-color.sm.color-3-link-color li.button-secondary a:active,.color2-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color2-background-color.sm.color-3-link-color li.alt.button a:active,.color2-background-color.sm.color-3-link-color li.btn a.highlighted,.color2-background-color.sm.color-3-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color2-background-color.sm.color-3-link-color li.button-primary a.highlighted,.color2-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color2-background-color.sm.color-3-link-color li.button a.highlighted,.color2-background-color.sm.color-3-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color2-background-color.sm.color-3-link-color li.button-secondary a.highlighted,.color2-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color2-background-color.sm.color-3-link-color li.alt.button a.highlighted{color:inherit}.color2-background-color.sm.color-3-link-color li:not(.btn) a{color:#eee}.color2-background-color.sm.color-3-link-color li:not(.btn) a:hover,.color2-background-color.sm.color-3-link-color li:not(.btn) a:focus,.color2-background-color.sm.color-3-link-color li:not(.btn) a:active,.color2-background-color.sm.color-3-link-color li:not(.btn) a.highlighted{color:#bbb}.color2-background-color.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color2-background-color.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color2-background-color.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color2-background-color.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color2-background-color.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color2-background-color.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color2-background-color.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color2-background-color.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color2-background-color.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color2-background-color.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color2-background-color.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color2-background-color.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color2-background-color.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color2-background-color.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color2-background-color.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color2-background-color.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color2-background-color.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color2-background-color.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color2-background-color.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color2-background-color.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color2-background-color.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color2-background-color.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color2-background-color.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color2-background-color.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color2-background-color.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color2-background-color.color-4-link-color a{color:#140070}.color2-background-color.color-4-link-color a:hover,.color2-background-color.color-4-link-color a:focus,.color2-background-color.color-4-link-color a:active,.color2-background-color.color-4-link-color a.highlighted{color:#2600d6}.color2-background-color.sidebar.color-4-link-color a{color:#140070}.color2-background-color.sidebar.color-4-link-color a:hover,.color2-background-color.sidebar.color-4-link-color a:focus,.color2-background-color.sidebar.color-4-link-color a:active,.color2-background-color.sidebar.color-4-link-color a.highlighted{color:#2600d6}.color2-background-color.sm.color-4-link-color li.btn a,.color2-background-color.sm.color-4-link-color .palette-primary li.button-primary a,.palette-primary .color2-background-color.sm.color-4-link-color li.button-primary a,.color2-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color2-background-color.sm.color-4-link-color li.button a,.color2-background-color.sm.color-4-link-color .palette-primary li.button-secondary a,.palette-primary .color2-background-color.sm.color-4-link-color li.button-secondary a,.color2-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color2-background-color.sm.color-4-link-color li.alt.button a{color:inherit}.color2-background-color.sm.color-4-link-color li.btn a:hover,.color2-background-color.sm.color-4-link-color .palette-primary li.button-primary a:hover,.palette-primary .color2-background-color.sm.color-4-link-color li.button-primary a:hover,.color2-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color2-background-color.sm.color-4-link-color li.button a:hover,.color2-background-color.sm.color-4-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color2-background-color.sm.color-4-link-color li.button-secondary a:hover,.color2-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color2-background-color.sm.color-4-link-color li.alt.button a:hover,.color2-background-color.sm.color-4-link-color li.btn a:focus,.color2-background-color.sm.color-4-link-color .palette-primary li.button-primary a:focus,.palette-primary .color2-background-color.sm.color-4-link-color li.button-primary a:focus,.color2-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color2-background-color.sm.color-4-link-color li.button a:focus,.color2-background-color.sm.color-4-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color2-background-color.sm.color-4-link-color li.button-secondary a:focus,.color2-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color2-background-color.sm.color-4-link-color li.alt.button a:focus,.color2-background-color.sm.color-4-link-color li.btn a:active,.color2-background-color.sm.color-4-link-color .palette-primary li.button-primary a:active,.palette-primary .color2-background-color.sm.color-4-link-color li.button-primary a:active,.color2-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color2-background-color.sm.color-4-link-color li.button a:active,.color2-background-color.sm.color-4-link-color .palette-primary li.button-secondary a:active,.palette-primary .color2-background-color.sm.color-4-link-color li.button-secondary a:active,.color2-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color2-background-color.sm.color-4-link-color li.alt.button a:active,.color2-background-color.sm.color-4-link-color li.btn a.highlighted,.color2-background-color.sm.color-4-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color2-background-color.sm.color-4-link-color li.button-primary a.highlighted,.color2-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color2-background-color.sm.color-4-link-color li.button a.highlighted,.color2-background-color.sm.color-4-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color2-background-color.sm.color-4-link-color li.button-secondary a.highlighted,.color2-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color2-background-color.sm.color-4-link-color li.alt.button a.highlighted{color:inherit}.color2-background-color.sm.color-4-link-color li:not(.btn) a{color:#140070}.color2-background-color.sm.color-4-link-color li:not(.btn) a:hover,.color2-background-color.sm.color-4-link-color li:not(.btn) a:focus,.color2-background-color.sm.color-4-link-color li:not(.btn) a:active,.color2-background-color.sm.color-4-link-color li:not(.btn) a.highlighted{color:#2600d6}.color2-background-color.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color2-background-color.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color2-background-color.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color2-background-color.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color2-background-color.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color2-background-color.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color2-background-color.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color2-background-color.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color2-background-color.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color2-background-color.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color2-background-color.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color2-background-color.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color2-background-color.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color2-background-color.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color2-background-color.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color2-background-color.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color2-background-color.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color2-background-color.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color2-background-color.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color2-background-color.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color2-background-color.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color2-background-color.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color2-background-color.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color2-background-color.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color2-background-color.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color2-background-color.color-5-link-color a{color:#01013f}.color2-background-color.color-5-link-color a:hover,.color2-background-color.color-5-link-color a:focus,.color2-background-color.color-5-link-color a:active,.color2-background-color.color-5-link-color a.highlighted{color:#0303a3}.color2-background-color.sidebar.color-5-link-color a{color:#01013f}.color2-background-color.sidebar.color-5-link-color a:hover,.color2-background-color.sidebar.color-5-link-color a:focus,.color2-background-color.sidebar.color-5-link-color a:active,.color2-background-color.sidebar.color-5-link-color a.highlighted{color:#0303a3}.color2-background-color.sm.color-5-link-color li.btn a,.color2-background-color.sm.color-5-link-color .palette-primary li.button-primary a,.palette-primary .color2-background-color.sm.color-5-link-color li.button-primary a,.color2-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color2-background-color.sm.color-5-link-color li.button a,.color2-background-color.sm.color-5-link-color .palette-primary li.button-secondary a,.palette-primary .color2-background-color.sm.color-5-link-color li.button-secondary a,.color2-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color2-background-color.sm.color-5-link-color li.alt.button a{color:inherit}.color2-background-color.sm.color-5-link-color li.btn a:hover,.color2-background-color.sm.color-5-link-color .palette-primary li.button-primary a:hover,.palette-primary .color2-background-color.sm.color-5-link-color li.button-primary a:hover,.color2-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color2-background-color.sm.color-5-link-color li.button a:hover,.color2-background-color.sm.color-5-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color2-background-color.sm.color-5-link-color li.button-secondary a:hover,.color2-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color2-background-color.sm.color-5-link-color li.alt.button a:hover,.color2-background-color.sm.color-5-link-color li.btn a:focus,.color2-background-color.sm.color-5-link-color .palette-primary li.button-primary a:focus,.palette-primary .color2-background-color.sm.color-5-link-color li.button-primary a:focus,.color2-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color2-background-color.sm.color-5-link-color li.button a:focus,.color2-background-color.sm.color-5-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color2-background-color.sm.color-5-link-color li.button-secondary a:focus,.color2-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color2-background-color.sm.color-5-link-color li.alt.button a:focus,.color2-background-color.sm.color-5-link-color li.btn a:active,.color2-background-color.sm.color-5-link-color .palette-primary li.button-primary a:active,.palette-primary .color2-background-color.sm.color-5-link-color li.button-primary a:active,.color2-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color2-background-color.sm.color-5-link-color li.button a:active,.color2-background-color.sm.color-5-link-color .palette-primary li.button-secondary a:active,.palette-primary .color2-background-color.sm.color-5-link-color li.button-secondary a:active,.color2-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color2-background-color.sm.color-5-link-color li.alt.button a:active,.color2-background-color.sm.color-5-link-color li.btn a.highlighted,.color2-background-color.sm.color-5-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color2-background-color.sm.color-5-link-color li.button-primary a.highlighted,.color2-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color2-background-color.sm.color-5-link-color li.button a.highlighted,.color2-background-color.sm.color-5-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color2-background-color.sm.color-5-link-color li.button-secondary a.highlighted,.color2-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color2-background-color.sm.color-5-link-color li.alt.button a.highlighted{color:inherit}.color2-background-color.sm.color-5-link-color li:not(.btn) a{color:#01013f}.color2-background-color.sm.color-5-link-color li:not(.btn) a:hover,.color2-background-color.sm.color-5-link-color li:not(.btn) a:focus,.color2-background-color.sm.color-5-link-color li:not(.btn) a:active,.color2-background-color.sm.color-5-link-color li:not(.btn) a.highlighted{color:#0303a3}.color2-background-color.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color2-background-color.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color2-background-color.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color2-background-color.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color2-background-color.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color2-background-color.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color2-background-color.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color2-background-color.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color2-background-color.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color2-background-color.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color2-background-color.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color2-background-color.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color2-background-color.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color2-background-color.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color2-background-color.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color2-background-color.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color2-background-color.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color2-background-color.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color2-background-color.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color2-background-color.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color2-background-color.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color2-background-color.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color2-background-color.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color2-background-color.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color2-background-color.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color2-background-color.color-neutral-link-color a{color:#eee}.color2-background-color.color-neutral-link-color a:hover,.color2-background-color.color-neutral-link-color a:focus,.color2-background-color.color-neutral-link-color a:active,.color2-background-color.color-neutral-link-color a.highlighted{color:#bbb}.color2-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a{color:#eee}.color2-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a:hover,.color2-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a:focus,.color2-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a:active,.color2-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a.highlighted{color:#bbb}.color2-background-color.color-1-sub-link-color ul li:not(.btn) a{color:#00a7e1}.color2-background-color.color-1-sub-link-color ul li:not(.btn) a:hover,.color2-background-color.color-1-sub-link-color ul li:not(.btn) a:focus,.color2-background-color.color-1-sub-link-color ul li:not(.btn) a:active,.color2-background-color.color-1-sub-link-color ul li:not(.btn) a.highlighted{color:#48d0ff}.color2-background-color.color-2-sub-link-color ul li:not(.btn) a{color:#000360}.color2-background-color.color-2-sub-link-color ul li:not(.btn) a:hover,.color2-background-color.color-2-sub-link-color ul li:not(.btn) a:focus,.color2-background-color.color-2-sub-link-color ul li:not(.btn) a:active,.color2-background-color.color-2-sub-link-color ul li:not(.btn) a.highlighted{color:black}.color2-background-color.color-3-sub-link-color ul li:not(.btn) a{color:#eee}.color2-background-color.color-3-sub-link-color ul li:not(.btn) a:hover,.color2-background-color.color-3-sub-link-color ul li:not(.btn) a:focus,.color2-background-color.color-3-sub-link-color ul li:not(.btn) a:active,.color2-background-color.color-3-sub-link-color ul li:not(.btn) a.highlighted{color:#bbb}.color2-background-color.color-4-sub-link-color ul li:not(.btn) a{color:#140070}.color2-background-color.color-4-sub-link-color ul li:not(.btn) a:hover,.color2-background-color.color-4-sub-link-color ul li:not(.btn) a:focus,.color2-background-color.color-4-sub-link-color ul li:not(.btn) a:active,.color2-background-color.color-4-sub-link-color ul li:not(.btn) a.highlighted{color:#2600d6}.color2-background-color.color-5-sub-link-color ul li:not(.btn) a{color:#01013f}.color2-background-color.color-5-sub-link-color ul li:not(.btn) a:hover,.color2-background-color.color-5-sub-link-color ul li:not(.btn) a:focus,.color2-background-color.color-5-sub-link-color ul li:not(.btn) a:active,.color2-background-color.color-5-sub-link-color ul li:not(.btn) a.highlighted{color:#0303a3}.color2-background-color-hover:focus,.color2-background-color-hover:hover{background-color:#000360 ! important}.color3-background-color.color-1-link-color a{color:#00a7e1}.color3-background-color.color-1-link-color a:hover,.color3-background-color.color-1-link-color a:focus,.color3-background-color.color-1-link-color a:active,.color3-background-color.color-1-link-color a.highlighted{color:#005b7b}.color3-background-color.sidebar.color-1-link-color a{color:#00a7e1}.color3-background-color.sidebar.color-1-link-color a:hover,.color3-background-color.sidebar.color-1-link-color a:focus,.color3-background-color.sidebar.color-1-link-color a:active,.color3-background-color.sidebar.color-1-link-color a.highlighted{color:#005b7b}.color3-background-color.sm.color-1-link-color li.btn a,.color3-background-color.sm.color-1-link-color .palette-primary li.button-primary a,.palette-primary .color3-background-color.sm.color-1-link-color li.button-primary a,.color3-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color3-background-color.sm.color-1-link-color li.button a,.color3-background-color.sm.color-1-link-color .palette-primary li.button-secondary a,.palette-primary .color3-background-color.sm.color-1-link-color li.button-secondary a,.color3-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color3-background-color.sm.color-1-link-color li.alt.button a{color:inherit}.color3-background-color.sm.color-1-link-color li.btn a:hover,.color3-background-color.sm.color-1-link-color .palette-primary li.button-primary a:hover,.palette-primary .color3-background-color.sm.color-1-link-color li.button-primary a:hover,.color3-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color3-background-color.sm.color-1-link-color li.button a:hover,.color3-background-color.sm.color-1-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color3-background-color.sm.color-1-link-color li.button-secondary a:hover,.color3-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color3-background-color.sm.color-1-link-color li.alt.button a:hover,.color3-background-color.sm.color-1-link-color li.btn a:focus,.color3-background-color.sm.color-1-link-color .palette-primary li.button-primary a:focus,.palette-primary .color3-background-color.sm.color-1-link-color li.button-primary a:focus,.color3-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color3-background-color.sm.color-1-link-color li.button a:focus,.color3-background-color.sm.color-1-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color3-background-color.sm.color-1-link-color li.button-secondary a:focus,.color3-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color3-background-color.sm.color-1-link-color li.alt.button a:focus,.color3-background-color.sm.color-1-link-color li.btn a:active,.color3-background-color.sm.color-1-link-color .palette-primary li.button-primary a:active,.palette-primary .color3-background-color.sm.color-1-link-color li.button-primary a:active,.color3-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color3-background-color.sm.color-1-link-color li.button a:active,.color3-background-color.sm.color-1-link-color .palette-primary li.button-secondary a:active,.palette-primary .color3-background-color.sm.color-1-link-color li.button-secondary a:active,.color3-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color3-background-color.sm.color-1-link-color li.alt.button a:active,.color3-background-color.sm.color-1-link-color li.btn a.highlighted,.color3-background-color.sm.color-1-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color3-background-color.sm.color-1-link-color li.button-primary a.highlighted,.color3-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color3-background-color.sm.color-1-link-color li.button a.highlighted,.color3-background-color.sm.color-1-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color3-background-color.sm.color-1-link-color li.button-secondary a.highlighted,.color3-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color3-background-color.sm.color-1-link-color li.alt.button a.highlighted{color:inherit}.color3-background-color.sm.color-1-link-color li:not(.btn) a{color:#00a7e1}.color3-background-color.sm.color-1-link-color li:not(.btn) a:hover,.color3-background-color.sm.color-1-link-color li:not(.btn) a:focus,.color3-background-color.sm.color-1-link-color li:not(.btn) a:active,.color3-background-color.sm.color-1-link-color li:not(.btn) a.highlighted{color:#005b7b}.color3-background-color.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color3-background-color.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color3-background-color.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color3-background-color.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color3-background-color.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color3-background-color.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color3-background-color.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color3-background-color.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color3-background-color.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color3-background-color.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color3-background-color.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color3-background-color.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color3-background-color.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color3-background-color.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color3-background-color.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color3-background-color.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color3-background-color.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color3-background-color.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color3-background-color.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color3-background-color.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color3-background-color.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color3-background-color.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color3-background-color.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color3-background-color.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color3-background-color.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color3-background-color.color-2-link-color a{color:#000360}.color3-background-color.color-2-link-color a:hover,.color3-background-color.color-2-link-color a:focus,.color3-background-color.color-2-link-color a:active,.color3-background-color.color-2-link-color a.highlighted{color:black}.color3-background-color.sidebar.color-2-link-color a{color:#000360}.color3-background-color.sidebar.color-2-link-color a:hover,.color3-background-color.sidebar.color-2-link-color a:focus,.color3-background-color.sidebar.color-2-link-color a:active,.color3-background-color.sidebar.color-2-link-color a.highlighted{color:black}.color3-background-color.sm.color-2-link-color li.btn a,.color3-background-color.sm.color-2-link-color .palette-primary li.button-primary a,.palette-primary .color3-background-color.sm.color-2-link-color li.button-primary a,.color3-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color3-background-color.sm.color-2-link-color li.button a,.color3-background-color.sm.color-2-link-color .palette-primary li.button-secondary a,.palette-primary .color3-background-color.sm.color-2-link-color li.button-secondary a,.color3-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color3-background-color.sm.color-2-link-color li.alt.button a{color:inherit}.color3-background-color.sm.color-2-link-color li.btn a:hover,.color3-background-color.sm.color-2-link-color .palette-primary li.button-primary a:hover,.palette-primary .color3-background-color.sm.color-2-link-color li.button-primary a:hover,.color3-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color3-background-color.sm.color-2-link-color li.button a:hover,.color3-background-color.sm.color-2-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color3-background-color.sm.color-2-link-color li.button-secondary a:hover,.color3-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color3-background-color.sm.color-2-link-color li.alt.button a:hover,.color3-background-color.sm.color-2-link-color li.btn a:focus,.color3-background-color.sm.color-2-link-color .palette-primary li.button-primary a:focus,.palette-primary .color3-background-color.sm.color-2-link-color li.button-primary a:focus,.color3-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color3-background-color.sm.color-2-link-color li.button a:focus,.color3-background-color.sm.color-2-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color3-background-color.sm.color-2-link-color li.button-secondary a:focus,.color3-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color3-background-color.sm.color-2-link-color li.alt.button a:focus,.color3-background-color.sm.color-2-link-color li.btn a:active,.color3-background-color.sm.color-2-link-color .palette-primary li.button-primary a:active,.palette-primary .color3-background-color.sm.color-2-link-color li.button-primary a:active,.color3-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color3-background-color.sm.color-2-link-color li.button a:active,.color3-background-color.sm.color-2-link-color .palette-primary li.button-secondary a:active,.palette-primary .color3-background-color.sm.color-2-link-color li.button-secondary a:active,.color3-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color3-background-color.sm.color-2-link-color li.alt.button a:active,.color3-background-color.sm.color-2-link-color li.btn a.highlighted,.color3-background-color.sm.color-2-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color3-background-color.sm.color-2-link-color li.button-primary a.highlighted,.color3-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color3-background-color.sm.color-2-link-color li.button a.highlighted,.color3-background-color.sm.color-2-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color3-background-color.sm.color-2-link-color li.button-secondary a.highlighted,.color3-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color3-background-color.sm.color-2-link-color li.alt.button a.highlighted{color:inherit}.color3-background-color.sm.color-2-link-color li:not(.btn) a{color:#000360}.color3-background-color.sm.color-2-link-color li:not(.btn) a:hover,.color3-background-color.sm.color-2-link-color li:not(.btn) a:focus,.color3-background-color.sm.color-2-link-color li:not(.btn) a:active,.color3-background-color.sm.color-2-link-color li:not(.btn) a.highlighted{color:black}.color3-background-color.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color3-background-color.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color3-background-color.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color3-background-color.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color3-background-color.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color3-background-color.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color3-background-color.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color3-background-color.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color3-background-color.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color3-background-color.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color3-background-color.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color3-background-color.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color3-background-color.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color3-background-color.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color3-background-color.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color3-background-color.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color3-background-color.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color3-background-color.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color3-background-color.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color3-background-color.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color3-background-color.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color3-background-color.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color3-background-color.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color3-background-color.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color3-background-color.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color3-background-color.color-3-link-color a{color:#eee}.color3-background-color.color-3-link-color a:hover,.color3-background-color.color-3-link-color a:focus,.color3-background-color.color-3-link-color a:active,.color3-background-color.color-3-link-color a.highlighted{color:#bbb}.color3-background-color.sidebar.color-3-link-color a{color:#eee}.color3-background-color.sidebar.color-3-link-color a:hover,.color3-background-color.sidebar.color-3-link-color a:focus,.color3-background-color.sidebar.color-3-link-color a:active,.color3-background-color.sidebar.color-3-link-color a.highlighted{color:#bbb}.color3-background-color.sm.color-3-link-color li.btn a,.color3-background-color.sm.color-3-link-color .palette-primary li.button-primary a,.palette-primary .color3-background-color.sm.color-3-link-color li.button-primary a,.color3-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color3-background-color.sm.color-3-link-color li.button a,.color3-background-color.sm.color-3-link-color .palette-primary li.button-secondary a,.palette-primary .color3-background-color.sm.color-3-link-color li.button-secondary a,.color3-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color3-background-color.sm.color-3-link-color li.alt.button a{color:inherit}.color3-background-color.sm.color-3-link-color li.btn a:hover,.color3-background-color.sm.color-3-link-color .palette-primary li.button-primary a:hover,.palette-primary .color3-background-color.sm.color-3-link-color li.button-primary a:hover,.color3-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color3-background-color.sm.color-3-link-color li.button a:hover,.color3-background-color.sm.color-3-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color3-background-color.sm.color-3-link-color li.button-secondary a:hover,.color3-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color3-background-color.sm.color-3-link-color li.alt.button a:hover,.color3-background-color.sm.color-3-link-color li.btn a:focus,.color3-background-color.sm.color-3-link-color .palette-primary li.button-primary a:focus,.palette-primary .color3-background-color.sm.color-3-link-color li.button-primary a:focus,.color3-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color3-background-color.sm.color-3-link-color li.button a:focus,.color3-background-color.sm.color-3-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color3-background-color.sm.color-3-link-color li.button-secondary a:focus,.color3-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color3-background-color.sm.color-3-link-color li.alt.button a:focus,.color3-background-color.sm.color-3-link-color li.btn a:active,.color3-background-color.sm.color-3-link-color .palette-primary li.button-primary a:active,.palette-primary .color3-background-color.sm.color-3-link-color li.button-primary a:active,.color3-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color3-background-color.sm.color-3-link-color li.button a:active,.color3-background-color.sm.color-3-link-color .palette-primary li.button-secondary a:active,.palette-primary .color3-background-color.sm.color-3-link-color li.button-secondary a:active,.color3-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color3-background-color.sm.color-3-link-color li.alt.button a:active,.color3-background-color.sm.color-3-link-color li.btn a.highlighted,.color3-background-color.sm.color-3-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color3-background-color.sm.color-3-link-color li.button-primary a.highlighted,.color3-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color3-background-color.sm.color-3-link-color li.button a.highlighted,.color3-background-color.sm.color-3-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color3-background-color.sm.color-3-link-color li.button-secondary a.highlighted,.color3-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color3-background-color.sm.color-3-link-color li.alt.button a.highlighted{color:inherit}.color3-background-color.sm.color-3-link-color li:not(.btn) a{color:#eee}.color3-background-color.sm.color-3-link-color li:not(.btn) a:hover,.color3-background-color.sm.color-3-link-color li:not(.btn) a:focus,.color3-background-color.sm.color-3-link-color li:not(.btn) a:active,.color3-background-color.sm.color-3-link-color li:not(.btn) a.highlighted{color:#bbb}.color3-background-color.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color3-background-color.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color3-background-color.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color3-background-color.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color3-background-color.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color3-background-color.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color3-background-color.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color3-background-color.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color3-background-color.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color3-background-color.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color3-background-color.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color3-background-color.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color3-background-color.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color3-background-color.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color3-background-color.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color3-background-color.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color3-background-color.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color3-background-color.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color3-background-color.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color3-background-color.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color3-background-color.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color3-background-color.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color3-background-color.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color3-background-color.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color3-background-color.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color3-background-color.color-4-link-color a{color:#140070}.color3-background-color.color-4-link-color a:hover,.color3-background-color.color-4-link-color a:focus,.color3-background-color.color-4-link-color a:active,.color3-background-color.color-4-link-color a.highlighted{color:#02000a}.color3-background-color.sidebar.color-4-link-color a{color:#140070}.color3-background-color.sidebar.color-4-link-color a:hover,.color3-background-color.sidebar.color-4-link-color a:focus,.color3-background-color.sidebar.color-4-link-color a:active,.color3-background-color.sidebar.color-4-link-color a.highlighted{color:#02000a}.color3-background-color.sm.color-4-link-color li.btn a,.color3-background-color.sm.color-4-link-color .palette-primary li.button-primary a,.palette-primary .color3-background-color.sm.color-4-link-color li.button-primary a,.color3-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color3-background-color.sm.color-4-link-color li.button a,.color3-background-color.sm.color-4-link-color .palette-primary li.button-secondary a,.palette-primary .color3-background-color.sm.color-4-link-color li.button-secondary a,.color3-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color3-background-color.sm.color-4-link-color li.alt.button a{color:inherit}.color3-background-color.sm.color-4-link-color li.btn a:hover,.color3-background-color.sm.color-4-link-color .palette-primary li.button-primary a:hover,.palette-primary .color3-background-color.sm.color-4-link-color li.button-primary a:hover,.color3-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color3-background-color.sm.color-4-link-color li.button a:hover,.color3-background-color.sm.color-4-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color3-background-color.sm.color-4-link-color li.button-secondary a:hover,.color3-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color3-background-color.sm.color-4-link-color li.alt.button a:hover,.color3-background-color.sm.color-4-link-color li.btn a:focus,.color3-background-color.sm.color-4-link-color .palette-primary li.button-primary a:focus,.palette-primary .color3-background-color.sm.color-4-link-color li.button-primary a:focus,.color3-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color3-background-color.sm.color-4-link-color li.button a:focus,.color3-background-color.sm.color-4-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color3-background-color.sm.color-4-link-color li.button-secondary a:focus,.color3-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color3-background-color.sm.color-4-link-color li.alt.button a:focus,.color3-background-color.sm.color-4-link-color li.btn a:active,.color3-background-color.sm.color-4-link-color .palette-primary li.button-primary a:active,.palette-primary .color3-background-color.sm.color-4-link-color li.button-primary a:active,.color3-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color3-background-color.sm.color-4-link-color li.button a:active,.color3-background-color.sm.color-4-link-color .palette-primary li.button-secondary a:active,.palette-primary .color3-background-color.sm.color-4-link-color li.button-secondary a:active,.color3-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color3-background-color.sm.color-4-link-color li.alt.button a:active,.color3-background-color.sm.color-4-link-color li.btn a.highlighted,.color3-background-color.sm.color-4-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color3-background-color.sm.color-4-link-color li.button-primary a.highlighted,.color3-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color3-background-color.sm.color-4-link-color li.button a.highlighted,.color3-background-color.sm.color-4-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color3-background-color.sm.color-4-link-color li.button-secondary a.highlighted,.color3-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color3-background-color.sm.color-4-link-color li.alt.button a.highlighted{color:inherit}.color3-background-color.sm.color-4-link-color li:not(.btn) a{color:#140070}.color3-background-color.sm.color-4-link-color li:not(.btn) a:hover,.color3-background-color.sm.color-4-link-color li:not(.btn) a:focus,.color3-background-color.sm.color-4-link-color li:not(.btn) a:active,.color3-background-color.sm.color-4-link-color li:not(.btn) a.highlighted{color:#02000a}.color3-background-color.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color3-background-color.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color3-background-color.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color3-background-color.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color3-background-color.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color3-background-color.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color3-background-color.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color3-background-color.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color3-background-color.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color3-background-color.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color3-background-color.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color3-background-color.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color3-background-color.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color3-background-color.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color3-background-color.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color3-background-color.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color3-background-color.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color3-background-color.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color3-background-color.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color3-background-color.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color3-background-color.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color3-background-color.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color3-background-color.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color3-background-color.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color3-background-color.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color3-background-color.color-5-link-color a{color:#01013f}.color3-background-color.color-5-link-color a:hover,.color3-background-color.color-5-link-color a:focus,.color3-background-color.color-5-link-color a:active,.color3-background-color.color-5-link-color a.highlighted{color:#0303a3}.color3-background-color.sidebar.color-5-link-color a{color:#01013f}.color3-background-color.sidebar.color-5-link-color a:hover,.color3-background-color.sidebar.color-5-link-color a:focus,.color3-background-color.sidebar.color-5-link-color a:active,.color3-background-color.sidebar.color-5-link-color a.highlighted{color:#0303a3}.color3-background-color.sm.color-5-link-color li.btn a,.color3-background-color.sm.color-5-link-color .palette-primary li.button-primary a,.palette-primary .color3-background-color.sm.color-5-link-color li.button-primary a,.color3-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color3-background-color.sm.color-5-link-color li.button a,.color3-background-color.sm.color-5-link-color .palette-primary li.button-secondary a,.palette-primary .color3-background-color.sm.color-5-link-color li.button-secondary a,.color3-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color3-background-color.sm.color-5-link-color li.alt.button a{color:inherit}.color3-background-color.sm.color-5-link-color li.btn a:hover,.color3-background-color.sm.color-5-link-color .palette-primary li.button-primary a:hover,.palette-primary .color3-background-color.sm.color-5-link-color li.button-primary a:hover,.color3-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color3-background-color.sm.color-5-link-color li.button a:hover,.color3-background-color.sm.color-5-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color3-background-color.sm.color-5-link-color li.button-secondary a:hover,.color3-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color3-background-color.sm.color-5-link-color li.alt.button a:hover,.color3-background-color.sm.color-5-link-color li.btn a:focus,.color3-background-color.sm.color-5-link-color .palette-primary li.button-primary a:focus,.palette-primary .color3-background-color.sm.color-5-link-color li.button-primary a:focus,.color3-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color3-background-color.sm.color-5-link-color li.button a:focus,.color3-background-color.sm.color-5-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color3-background-color.sm.color-5-link-color li.button-secondary a:focus,.color3-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color3-background-color.sm.color-5-link-color li.alt.button a:focus,.color3-background-color.sm.color-5-link-color li.btn a:active,.color3-background-color.sm.color-5-link-color .palette-primary li.button-primary a:active,.palette-primary .color3-background-color.sm.color-5-link-color li.button-primary a:active,.color3-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color3-background-color.sm.color-5-link-color li.button a:active,.color3-background-color.sm.color-5-link-color .palette-primary li.button-secondary a:active,.palette-primary .color3-background-color.sm.color-5-link-color li.button-secondary a:active,.color3-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color3-background-color.sm.color-5-link-color li.alt.button a:active,.color3-background-color.sm.color-5-link-color li.btn a.highlighted,.color3-background-color.sm.color-5-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color3-background-color.sm.color-5-link-color li.button-primary a.highlighted,.color3-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color3-background-color.sm.color-5-link-color li.button a.highlighted,.color3-background-color.sm.color-5-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color3-background-color.sm.color-5-link-color li.button-secondary a.highlighted,.color3-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color3-background-color.sm.color-5-link-color li.alt.button a.highlighted{color:inherit}.color3-background-color.sm.color-5-link-color li:not(.btn) a{color:#01013f}.color3-background-color.sm.color-5-link-color li:not(.btn) a:hover,.color3-background-color.sm.color-5-link-color li:not(.btn) a:focus,.color3-background-color.sm.color-5-link-color li:not(.btn) a:active,.color3-background-color.sm.color-5-link-color li:not(.btn) a.highlighted{color:#0303a3}.color3-background-color.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color3-background-color.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color3-background-color.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color3-background-color.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color3-background-color.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color3-background-color.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color3-background-color.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color3-background-color.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color3-background-color.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color3-background-color.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color3-background-color.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color3-background-color.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color3-background-color.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color3-background-color.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color3-background-color.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color3-background-color.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color3-background-color.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color3-background-color.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color3-background-color.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color3-background-color.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color3-background-color.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color3-background-color.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color3-background-color.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color3-background-color.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color3-background-color.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color3-background-color.color-neutral-link-color a{color:#eee}.color3-background-color.color-neutral-link-color a:hover,.color3-background-color.color-neutral-link-color a:focus,.color3-background-color.color-neutral-link-color a:active,.color3-background-color.color-neutral-link-color a.highlighted{color:#bbb}.color3-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a{color:#eee}.color3-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a:hover,.color3-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a:focus,.color3-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a:active,.color3-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a.highlighted{color:#bbb}.color3-background-color.color-1-sub-link-color ul li:not(.btn) a{color:#00a7e1}.color3-background-color.color-1-sub-link-color ul li:not(.btn) a:hover,.color3-background-color.color-1-sub-link-color ul li:not(.btn) a:focus,.color3-background-color.color-1-sub-link-color ul li:not(.btn) a:active,.color3-background-color.color-1-sub-link-color ul li:not(.btn) a.highlighted{color:#005b7b}.color3-background-color.color-2-sub-link-color ul li:not(.btn) a{color:#000360}.color3-background-color.color-2-sub-link-color ul li:not(.btn) a:hover,.color3-background-color.color-2-sub-link-color ul li:not(.btn) a:focus,.color3-background-color.color-2-sub-link-color ul li:not(.btn) a:active,.color3-background-color.color-2-sub-link-color ul li:not(.btn) a.highlighted{color:black}.color3-background-color.color-3-sub-link-color ul li:not(.btn) a{color:#eee}.color3-background-color.color-3-sub-link-color ul li:not(.btn) a:hover,.color3-background-color.color-3-sub-link-color ul li:not(.btn) a:focus,.color3-background-color.color-3-sub-link-color ul li:not(.btn) a:active,.color3-background-color.color-3-sub-link-color ul li:not(.btn) a.highlighted{color:#bbb}.color3-background-color.color-4-sub-link-color ul li:not(.btn) a{color:#140070}.color3-background-color.color-4-sub-link-color ul li:not(.btn) a:hover,.color3-background-color.color-4-sub-link-color ul li:not(.btn) a:focus,.color3-background-color.color-4-sub-link-color ul li:not(.btn) a:active,.color3-background-color.color-4-sub-link-color ul li:not(.btn) a.highlighted{color:#02000a}.color3-background-color.color-5-sub-link-color ul li:not(.btn) a{color:#01013f}.color3-background-color.color-5-sub-link-color ul li:not(.btn) a:hover,.color3-background-color.color-5-sub-link-color ul li:not(.btn) a:focus,.color3-background-color.color-5-sub-link-color ul li:not(.btn) a:active,.color3-background-color.color-5-sub-link-color ul li:not(.btn) a.highlighted{color:#0303a3}.color3-background-color-hover:focus,.color3-background-color-hover:hover{background-color:#eee ! important}.color4-background-color.color-1-link-color a{color:#00a7e1}.color4-background-color.color-1-link-color a:hover,.color4-background-color.color-1-link-color a:focus,.color4-background-color.color-1-link-color a:active,.color4-background-color.color-1-link-color a.highlighted{color:#48d0ff}.color4-background-color.sidebar.color-1-link-color a{color:#00a7e1}.color4-background-color.sidebar.color-1-link-color a:hover,.color4-background-color.sidebar.color-1-link-color a:focus,.color4-background-color.sidebar.color-1-link-color a:active,.color4-background-color.sidebar.color-1-link-color a.highlighted{color:#48d0ff}.color4-background-color.sm.color-1-link-color li.btn a,.color4-background-color.sm.color-1-link-color .palette-primary li.button-primary a,.palette-primary .color4-background-color.sm.color-1-link-color li.button-primary a,.color4-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color4-background-color.sm.color-1-link-color li.button a,.color4-background-color.sm.color-1-link-color .palette-primary li.button-secondary a,.palette-primary .color4-background-color.sm.color-1-link-color li.button-secondary a,.color4-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color4-background-color.sm.color-1-link-color li.alt.button a{color:inherit}.color4-background-color.sm.color-1-link-color li.btn a:hover,.color4-background-color.sm.color-1-link-color .palette-primary li.button-primary a:hover,.palette-primary .color4-background-color.sm.color-1-link-color li.button-primary a:hover,.color4-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color4-background-color.sm.color-1-link-color li.button a:hover,.color4-background-color.sm.color-1-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color4-background-color.sm.color-1-link-color li.button-secondary a:hover,.color4-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color4-background-color.sm.color-1-link-color li.alt.button a:hover,.color4-background-color.sm.color-1-link-color li.btn a:focus,.color4-background-color.sm.color-1-link-color .palette-primary li.button-primary a:focus,.palette-primary .color4-background-color.sm.color-1-link-color li.button-primary a:focus,.color4-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color4-background-color.sm.color-1-link-color li.button a:focus,.color4-background-color.sm.color-1-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color4-background-color.sm.color-1-link-color li.button-secondary a:focus,.color4-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color4-background-color.sm.color-1-link-color li.alt.button a:focus,.color4-background-color.sm.color-1-link-color li.btn a:active,.color4-background-color.sm.color-1-link-color .palette-primary li.button-primary a:active,.palette-primary .color4-background-color.sm.color-1-link-color li.button-primary a:active,.color4-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color4-background-color.sm.color-1-link-color li.button a:active,.color4-background-color.sm.color-1-link-color .palette-primary li.button-secondary a:active,.palette-primary .color4-background-color.sm.color-1-link-color li.button-secondary a:active,.color4-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color4-background-color.sm.color-1-link-color li.alt.button a:active,.color4-background-color.sm.color-1-link-color li.btn a.highlighted,.color4-background-color.sm.color-1-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color4-background-color.sm.color-1-link-color li.button-primary a.highlighted,.color4-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color4-background-color.sm.color-1-link-color li.button a.highlighted,.color4-background-color.sm.color-1-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color4-background-color.sm.color-1-link-color li.button-secondary a.highlighted,.color4-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color4-background-color.sm.color-1-link-color li.alt.button a.highlighted{color:inherit}.color4-background-color.sm.color-1-link-color li:not(.btn) a{color:#00a7e1}.color4-background-color.sm.color-1-link-color li:not(.btn) a:hover,.color4-background-color.sm.color-1-link-color li:not(.btn) a:focus,.color4-background-color.sm.color-1-link-color li:not(.btn) a:active,.color4-background-color.sm.color-1-link-color li:not(.btn) a.highlighted{color:#48d0ff}.color4-background-color.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color4-background-color.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color4-background-color.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color4-background-color.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color4-background-color.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color4-background-color.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color4-background-color.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color4-background-color.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color4-background-color.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color4-background-color.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color4-background-color.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color4-background-color.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color4-background-color.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color4-background-color.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color4-background-color.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color4-background-color.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color4-background-color.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color4-background-color.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color4-background-color.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color4-background-color.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color4-background-color.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color4-background-color.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color4-background-color.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color4-background-color.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color4-background-color.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color4-background-color.color-2-link-color a{color:#000360}.color4-background-color.color-2-link-color a:hover,.color4-background-color.color-2-link-color a:focus,.color4-background-color.color-2-link-color a:active,.color4-background-color.color-2-link-color a.highlighted{color:black}.color4-background-color.sidebar.color-2-link-color a{color:#000360}.color4-background-color.sidebar.color-2-link-color a:hover,.color4-background-color.sidebar.color-2-link-color a:focus,.color4-background-color.sidebar.color-2-link-color a:active,.color4-background-color.sidebar.color-2-link-color a.highlighted{color:black}.color4-background-color.sm.color-2-link-color li.btn a,.color4-background-color.sm.color-2-link-color .palette-primary li.button-primary a,.palette-primary .color4-background-color.sm.color-2-link-color li.button-primary a,.color4-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color4-background-color.sm.color-2-link-color li.button a,.color4-background-color.sm.color-2-link-color .palette-primary li.button-secondary a,.palette-primary .color4-background-color.sm.color-2-link-color li.button-secondary a,.color4-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color4-background-color.sm.color-2-link-color li.alt.button a{color:inherit}.color4-background-color.sm.color-2-link-color li.btn a:hover,.color4-background-color.sm.color-2-link-color .palette-primary li.button-primary a:hover,.palette-primary .color4-background-color.sm.color-2-link-color li.button-primary a:hover,.color4-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color4-background-color.sm.color-2-link-color li.button a:hover,.color4-background-color.sm.color-2-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color4-background-color.sm.color-2-link-color li.button-secondary a:hover,.color4-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color4-background-color.sm.color-2-link-color li.alt.button a:hover,.color4-background-color.sm.color-2-link-color li.btn a:focus,.color4-background-color.sm.color-2-link-color .palette-primary li.button-primary a:focus,.palette-primary .color4-background-color.sm.color-2-link-color li.button-primary a:focus,.color4-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color4-background-color.sm.color-2-link-color li.button a:focus,.color4-background-color.sm.color-2-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color4-background-color.sm.color-2-link-color li.button-secondary a:focus,.color4-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color4-background-color.sm.color-2-link-color li.alt.button a:focus,.color4-background-color.sm.color-2-link-color li.btn a:active,.color4-background-color.sm.color-2-link-color .palette-primary li.button-primary a:active,.palette-primary .color4-background-color.sm.color-2-link-color li.button-primary a:active,.color4-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color4-background-color.sm.color-2-link-color li.button a:active,.color4-background-color.sm.color-2-link-color .palette-primary li.button-secondary a:active,.palette-primary .color4-background-color.sm.color-2-link-color li.button-secondary a:active,.color4-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color4-background-color.sm.color-2-link-color li.alt.button a:active,.color4-background-color.sm.color-2-link-color li.btn a.highlighted,.color4-background-color.sm.color-2-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color4-background-color.sm.color-2-link-color li.button-primary a.highlighted,.color4-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color4-background-color.sm.color-2-link-color li.button a.highlighted,.color4-background-color.sm.color-2-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color4-background-color.sm.color-2-link-color li.button-secondary a.highlighted,.color4-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color4-background-color.sm.color-2-link-color li.alt.button a.highlighted{color:inherit}.color4-background-color.sm.color-2-link-color li:not(.btn) a{color:#000360}.color4-background-color.sm.color-2-link-color li:not(.btn) a:hover,.color4-background-color.sm.color-2-link-color li:not(.btn) a:focus,.color4-background-color.sm.color-2-link-color li:not(.btn) a:active,.color4-background-color.sm.color-2-link-color li:not(.btn) a.highlighted{color:black}.color4-background-color.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color4-background-color.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color4-background-color.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color4-background-color.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color4-background-color.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color4-background-color.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color4-background-color.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color4-background-color.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color4-background-color.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color4-background-color.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color4-background-color.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color4-background-color.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color4-background-color.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color4-background-color.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color4-background-color.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color4-background-color.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color4-background-color.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color4-background-color.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color4-background-color.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color4-background-color.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color4-background-color.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color4-background-color.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color4-background-color.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color4-background-color.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color4-background-color.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color4-background-color.color-3-link-color a{color:#eee}.color4-background-color.color-3-link-color a:hover,.color4-background-color.color-3-link-color a:focus,.color4-background-color.color-3-link-color a:active,.color4-background-color.color-3-link-color a.highlighted{color:#bbb}.color4-background-color.sidebar.color-3-link-color a{color:#eee}.color4-background-color.sidebar.color-3-link-color a:hover,.color4-background-color.sidebar.color-3-link-color a:focus,.color4-background-color.sidebar.color-3-link-color a:active,.color4-background-color.sidebar.color-3-link-color a.highlighted{color:#bbb}.color4-background-color.sm.color-3-link-color li.btn a,.color4-background-color.sm.color-3-link-color .palette-primary li.button-primary a,.palette-primary .color4-background-color.sm.color-3-link-color li.button-primary a,.color4-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color4-background-color.sm.color-3-link-color li.button a,.color4-background-color.sm.color-3-link-color .palette-primary li.button-secondary a,.palette-primary .color4-background-color.sm.color-3-link-color li.button-secondary a,.color4-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color4-background-color.sm.color-3-link-color li.alt.button a{color:inherit}.color4-background-color.sm.color-3-link-color li.btn a:hover,.color4-background-color.sm.color-3-link-color .palette-primary li.button-primary a:hover,.palette-primary .color4-background-color.sm.color-3-link-color li.button-primary a:hover,.color4-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color4-background-color.sm.color-3-link-color li.button a:hover,.color4-background-color.sm.color-3-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color4-background-color.sm.color-3-link-color li.button-secondary a:hover,.color4-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color4-background-color.sm.color-3-link-color li.alt.button a:hover,.color4-background-color.sm.color-3-link-color li.btn a:focus,.color4-background-color.sm.color-3-link-color .palette-primary li.button-primary a:focus,.palette-primary .color4-background-color.sm.color-3-link-color li.button-primary a:focus,.color4-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color4-background-color.sm.color-3-link-color li.button a:focus,.color4-background-color.sm.color-3-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color4-background-color.sm.color-3-link-color li.button-secondary a:focus,.color4-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color4-background-color.sm.color-3-link-color li.alt.button a:focus,.color4-background-color.sm.color-3-link-color li.btn a:active,.color4-background-color.sm.color-3-link-color .palette-primary li.button-primary a:active,.palette-primary .color4-background-color.sm.color-3-link-color li.button-primary a:active,.color4-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color4-background-color.sm.color-3-link-color li.button a:active,.color4-background-color.sm.color-3-link-color .palette-primary li.button-secondary a:active,.palette-primary .color4-background-color.sm.color-3-link-color li.button-secondary a:active,.color4-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color4-background-color.sm.color-3-link-color li.alt.button a:active,.color4-background-color.sm.color-3-link-color li.btn a.highlighted,.color4-background-color.sm.color-3-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color4-background-color.sm.color-3-link-color li.button-primary a.highlighted,.color4-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color4-background-color.sm.color-3-link-color li.button a.highlighted,.color4-background-color.sm.color-3-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color4-background-color.sm.color-3-link-color li.button-secondary a.highlighted,.color4-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color4-background-color.sm.color-3-link-color li.alt.button a.highlighted{color:inherit}.color4-background-color.sm.color-3-link-color li:not(.btn) a{color:#eee}.color4-background-color.sm.color-3-link-color li:not(.btn) a:hover,.color4-background-color.sm.color-3-link-color li:not(.btn) a:focus,.color4-background-color.sm.color-3-link-color li:not(.btn) a:active,.color4-background-color.sm.color-3-link-color li:not(.btn) a.highlighted{color:#bbb}.color4-background-color.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color4-background-color.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color4-background-color.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color4-background-color.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color4-background-color.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color4-background-color.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color4-background-color.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color4-background-color.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color4-background-color.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color4-background-color.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color4-background-color.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color4-background-color.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color4-background-color.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color4-background-color.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color4-background-color.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color4-background-color.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color4-background-color.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color4-background-color.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color4-background-color.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color4-background-color.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color4-background-color.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color4-background-color.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color4-background-color.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color4-background-color.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color4-background-color.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color4-background-color.color-4-link-color a{color:#140070}.color4-background-color.color-4-link-color a:hover,.color4-background-color.color-4-link-color a:focus,.color4-background-color.color-4-link-color a:active,.color4-background-color.color-4-link-color a.highlighted{color:#02000a}.color4-background-color.sidebar.color-4-link-color a{color:#140070}.color4-background-color.sidebar.color-4-link-color a:hover,.color4-background-color.sidebar.color-4-link-color a:focus,.color4-background-color.sidebar.color-4-link-color a:active,.color4-background-color.sidebar.color-4-link-color a.highlighted{color:#02000a}.color4-background-color.sm.color-4-link-color li.btn a,.color4-background-color.sm.color-4-link-color .palette-primary li.button-primary a,.palette-primary .color4-background-color.sm.color-4-link-color li.button-primary a,.color4-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color4-background-color.sm.color-4-link-color li.button a,.color4-background-color.sm.color-4-link-color .palette-primary li.button-secondary a,.palette-primary .color4-background-color.sm.color-4-link-color li.button-secondary a,.color4-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color4-background-color.sm.color-4-link-color li.alt.button a{color:inherit}.color4-background-color.sm.color-4-link-color li.btn a:hover,.color4-background-color.sm.color-4-link-color .palette-primary li.button-primary a:hover,.palette-primary .color4-background-color.sm.color-4-link-color li.button-primary a:hover,.color4-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color4-background-color.sm.color-4-link-color li.button a:hover,.color4-background-color.sm.color-4-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color4-background-color.sm.color-4-link-color li.button-secondary a:hover,.color4-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color4-background-color.sm.color-4-link-color li.alt.button a:hover,.color4-background-color.sm.color-4-link-color li.btn a:focus,.color4-background-color.sm.color-4-link-color .palette-primary li.button-primary a:focus,.palette-primary .color4-background-color.sm.color-4-link-color li.button-primary a:focus,.color4-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color4-background-color.sm.color-4-link-color li.button a:focus,.color4-background-color.sm.color-4-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color4-background-color.sm.color-4-link-color li.button-secondary a:focus,.color4-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color4-background-color.sm.color-4-link-color li.alt.button a:focus,.color4-background-color.sm.color-4-link-color li.btn a:active,.color4-background-color.sm.color-4-link-color .palette-primary li.button-primary a:active,.palette-primary .color4-background-color.sm.color-4-link-color li.button-primary a:active,.color4-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color4-background-color.sm.color-4-link-color li.button a:active,.color4-background-color.sm.color-4-link-color .palette-primary li.button-secondary a:active,.palette-primary .color4-background-color.sm.color-4-link-color li.button-secondary a:active,.color4-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color4-background-color.sm.color-4-link-color li.alt.button a:active,.color4-background-color.sm.color-4-link-color li.btn a.highlighted,.color4-background-color.sm.color-4-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color4-background-color.sm.color-4-link-color li.button-primary a.highlighted,.color4-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color4-background-color.sm.color-4-link-color li.button a.highlighted,.color4-background-color.sm.color-4-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color4-background-color.sm.color-4-link-color li.button-secondary a.highlighted,.color4-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color4-background-color.sm.color-4-link-color li.alt.button a.highlighted{color:inherit}.color4-background-color.sm.color-4-link-color li:not(.btn) a{color:#140070}.color4-background-color.sm.color-4-link-color li:not(.btn) a:hover,.color4-background-color.sm.color-4-link-color li:not(.btn) a:focus,.color4-background-color.sm.color-4-link-color li:not(.btn) a:active,.color4-background-color.sm.color-4-link-color li:not(.btn) a.highlighted{color:#02000a}.color4-background-color.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color4-background-color.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color4-background-color.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color4-background-color.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color4-background-color.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color4-background-color.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color4-background-color.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color4-background-color.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color4-background-color.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color4-background-color.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color4-background-color.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color4-background-color.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color4-background-color.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color4-background-color.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color4-background-color.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color4-background-color.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color4-background-color.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color4-background-color.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color4-background-color.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color4-background-color.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color4-background-color.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color4-background-color.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color4-background-color.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color4-background-color.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color4-background-color.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color4-background-color.color-5-link-color a{color:#01013f}.color4-background-color.color-5-link-color a:hover,.color4-background-color.color-5-link-color a:focus,.color4-background-color.color-5-link-color a:active,.color4-background-color.color-5-link-color a.highlighted{color:#0303a3}.color4-background-color.sidebar.color-5-link-color a{color:#01013f}.color4-background-color.sidebar.color-5-link-color a:hover,.color4-background-color.sidebar.color-5-link-color a:focus,.color4-background-color.sidebar.color-5-link-color a:active,.color4-background-color.sidebar.color-5-link-color a.highlighted{color:#0303a3}.color4-background-color.sm.color-5-link-color li.btn a,.color4-background-color.sm.color-5-link-color .palette-primary li.button-primary a,.palette-primary .color4-background-color.sm.color-5-link-color li.button-primary a,.color4-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color4-background-color.sm.color-5-link-color li.button a,.color4-background-color.sm.color-5-link-color .palette-primary li.button-secondary a,.palette-primary .color4-background-color.sm.color-5-link-color li.button-secondary a,.color4-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color4-background-color.sm.color-5-link-color li.alt.button a{color:inherit}.color4-background-color.sm.color-5-link-color li.btn a:hover,.color4-background-color.sm.color-5-link-color .palette-primary li.button-primary a:hover,.palette-primary .color4-background-color.sm.color-5-link-color li.button-primary a:hover,.color4-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color4-background-color.sm.color-5-link-color li.button a:hover,.color4-background-color.sm.color-5-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color4-background-color.sm.color-5-link-color li.button-secondary a:hover,.color4-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color4-background-color.sm.color-5-link-color li.alt.button a:hover,.color4-background-color.sm.color-5-link-color li.btn a:focus,.color4-background-color.sm.color-5-link-color .palette-primary li.button-primary a:focus,.palette-primary .color4-background-color.sm.color-5-link-color li.button-primary a:focus,.color4-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color4-background-color.sm.color-5-link-color li.button a:focus,.color4-background-color.sm.color-5-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color4-background-color.sm.color-5-link-color li.button-secondary a:focus,.color4-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color4-background-color.sm.color-5-link-color li.alt.button a:focus,.color4-background-color.sm.color-5-link-color li.btn a:active,.color4-background-color.sm.color-5-link-color .palette-primary li.button-primary a:active,.palette-primary .color4-background-color.sm.color-5-link-color li.button-primary a:active,.color4-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color4-background-color.sm.color-5-link-color li.button a:active,.color4-background-color.sm.color-5-link-color .palette-primary li.button-secondary a:active,.palette-primary .color4-background-color.sm.color-5-link-color li.button-secondary a:active,.color4-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color4-background-color.sm.color-5-link-color li.alt.button a:active,.color4-background-color.sm.color-5-link-color li.btn a.highlighted,.color4-background-color.sm.color-5-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color4-background-color.sm.color-5-link-color li.button-primary a.highlighted,.color4-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color4-background-color.sm.color-5-link-color li.button a.highlighted,.color4-background-color.sm.color-5-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color4-background-color.sm.color-5-link-color li.button-secondary a.highlighted,.color4-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color4-background-color.sm.color-5-link-color li.alt.button a.highlighted{color:inherit}.color4-background-color.sm.color-5-link-color li:not(.btn) a{color:#01013f}.color4-background-color.sm.color-5-link-color li:not(.btn) a:hover,.color4-background-color.sm.color-5-link-color li:not(.btn) a:focus,.color4-background-color.sm.color-5-link-color li:not(.btn) a:active,.color4-background-color.sm.color-5-link-color li:not(.btn) a.highlighted{color:#0303a3}.color4-background-color.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color4-background-color.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color4-background-color.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color4-background-color.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color4-background-color.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color4-background-color.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color4-background-color.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color4-background-color.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color4-background-color.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color4-background-color.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color4-background-color.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color4-background-color.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color4-background-color.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color4-background-color.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color4-background-color.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color4-background-color.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color4-background-color.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color4-background-color.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color4-background-color.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color4-background-color.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color4-background-color.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color4-background-color.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color4-background-color.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color4-background-color.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color4-background-color.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color4-background-color.color-neutral-link-color a{color:#eee}.color4-background-color.color-neutral-link-color a:hover,.color4-background-color.color-neutral-link-color a:focus,.color4-background-color.color-neutral-link-color a:active,.color4-background-color.color-neutral-link-color a.highlighted{color:#bbb}.color4-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a{color:#eee}.color4-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a:hover,.color4-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a:focus,.color4-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a:active,.color4-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a.highlighted{color:#bbb}.color4-background-color.color-1-sub-link-color ul li:not(.btn) a{color:#00a7e1}.color4-background-color.color-1-sub-link-color ul li:not(.btn) a:hover,.color4-background-color.color-1-sub-link-color ul li:not(.btn) a:focus,.color4-background-color.color-1-sub-link-color ul li:not(.btn) a:active,.color4-background-color.color-1-sub-link-color ul li:not(.btn) a.highlighted{color:#48d0ff}.color4-background-color.color-2-sub-link-color ul li:not(.btn) a{color:#000360}.color4-background-color.color-2-sub-link-color ul li:not(.btn) a:hover,.color4-background-color.color-2-sub-link-color ul li:not(.btn) a:focus,.color4-background-color.color-2-sub-link-color ul li:not(.btn) a:active,.color4-background-color.color-2-sub-link-color ul li:not(.btn) a.highlighted{color:black}.color4-background-color.color-3-sub-link-color ul li:not(.btn) a{color:#eee}.color4-background-color.color-3-sub-link-color ul li:not(.btn) a:hover,.color4-background-color.color-3-sub-link-color ul li:not(.btn) a:focus,.color4-background-color.color-3-sub-link-color ul li:not(.btn) a:active,.color4-background-color.color-3-sub-link-color ul li:not(.btn) a.highlighted{color:#bbb}.color4-background-color.color-4-sub-link-color ul li:not(.btn) a{color:#140070}.color4-background-color.color-4-sub-link-color ul li:not(.btn) a:hover,.color4-background-color.color-4-sub-link-color ul li:not(.btn) a:focus,.color4-background-color.color-4-sub-link-color ul li:not(.btn) a:active,.color4-background-color.color-4-sub-link-color ul li:not(.btn) a.highlighted{color:#02000a}.color4-background-color.color-5-sub-link-color ul li:not(.btn) a{color:#01013f}.color4-background-color.color-5-sub-link-color ul li:not(.btn) a:hover,.color4-background-color.color-5-sub-link-color ul li:not(.btn) a:focus,.color4-background-color.color-5-sub-link-color ul li:not(.btn) a:active,.color4-background-color.color-5-sub-link-color ul li:not(.btn) a.highlighted{color:#0303a3}.color4-background-color-hover:focus,.color4-background-color-hover:hover{background-color:#140070 ! important}.color5-background-color.color-1-link-color a{color:#00a7e1}.color5-background-color.color-1-link-color a:hover,.color5-background-color.color-1-link-color a:focus,.color5-background-color.color-1-link-color a:active,.color5-background-color.color-1-link-color a.highlighted{color:#48d0ff}.color5-background-color.sidebar.color-1-link-color a{color:#00a7e1}.color5-background-color.sidebar.color-1-link-color a:hover,.color5-background-color.sidebar.color-1-link-color a:focus,.color5-background-color.sidebar.color-1-link-color a:active,.color5-background-color.sidebar.color-1-link-color a.highlighted{color:#48d0ff}.color5-background-color.sm.color-1-link-color li.btn a,.color5-background-color.sm.color-1-link-color .palette-primary li.button-primary a,.palette-primary .color5-background-color.sm.color-1-link-color li.button-primary a,.color5-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color5-background-color.sm.color-1-link-color li.button a,.color5-background-color.sm.color-1-link-color .palette-primary li.button-secondary a,.palette-primary .color5-background-color.sm.color-1-link-color li.button-secondary a,.color5-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color5-background-color.sm.color-1-link-color li.alt.button a{color:inherit}.color5-background-color.sm.color-1-link-color li.btn a:hover,.color5-background-color.sm.color-1-link-color .palette-primary li.button-primary a:hover,.palette-primary .color5-background-color.sm.color-1-link-color li.button-primary a:hover,.color5-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color5-background-color.sm.color-1-link-color li.button a:hover,.color5-background-color.sm.color-1-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color5-background-color.sm.color-1-link-color li.button-secondary a:hover,.color5-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color5-background-color.sm.color-1-link-color li.alt.button a:hover,.color5-background-color.sm.color-1-link-color li.btn a:focus,.color5-background-color.sm.color-1-link-color .palette-primary li.button-primary a:focus,.palette-primary .color5-background-color.sm.color-1-link-color li.button-primary a:focus,.color5-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color5-background-color.sm.color-1-link-color li.button a:focus,.color5-background-color.sm.color-1-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color5-background-color.sm.color-1-link-color li.button-secondary a:focus,.color5-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color5-background-color.sm.color-1-link-color li.alt.button a:focus,.color5-background-color.sm.color-1-link-color li.btn a:active,.color5-background-color.sm.color-1-link-color .palette-primary li.button-primary a:active,.palette-primary .color5-background-color.sm.color-1-link-color li.button-primary a:active,.color5-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color5-background-color.sm.color-1-link-color li.button a:active,.color5-background-color.sm.color-1-link-color .palette-primary li.button-secondary a:active,.palette-primary .color5-background-color.sm.color-1-link-color li.button-secondary a:active,.color5-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color5-background-color.sm.color-1-link-color li.alt.button a:active,.color5-background-color.sm.color-1-link-color li.btn a.highlighted,.color5-background-color.sm.color-1-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color5-background-color.sm.color-1-link-color li.button-primary a.highlighted,.color5-background-color.sm.color-1-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color5-background-color.sm.color-1-link-color li.button a.highlighted,.color5-background-color.sm.color-1-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color5-background-color.sm.color-1-link-color li.button-secondary a.highlighted,.color5-background-color.sm.color-1-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color5-background-color.sm.color-1-link-color li.alt.button a.highlighted{color:inherit}.color5-background-color.sm.color-1-link-color li:not(.btn) a{color:#00a7e1}.color5-background-color.sm.color-1-link-color li:not(.btn) a:hover,.color5-background-color.sm.color-1-link-color li:not(.btn) a:focus,.color5-background-color.sm.color-1-link-color li:not(.btn) a:active,.color5-background-color.sm.color-1-link-color li:not(.btn) a.highlighted{color:#48d0ff}.color5-background-color.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color5-background-color.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color5-background-color.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color5-background-color.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color5-background-color.sm.color-1-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color5-background-color.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color5-background-color.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color5-background-color.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color5-background-color.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color5-background-color.sm.color-1-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color5-background-color.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color5-background-color.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color5-background-color.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color5-background-color.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color5-background-color.sm.color-1-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color5-background-color.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color5-background-color.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color5-background-color.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color5-background-color.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color5-background-color.sm.color-1-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color5-background-color.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color5-background-color.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color5-background-color.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color5-background-color.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color5-background-color.sm.color-1-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color5-background-color.color-2-link-color a{color:#000360}.color5-background-color.color-2-link-color a:hover,.color5-background-color.color-2-link-color a:focus,.color5-background-color.color-2-link-color a:active,.color5-background-color.color-2-link-color a.highlighted{color:#0006c6}.color5-background-color.sidebar.color-2-link-color a{color:#000360}.color5-background-color.sidebar.color-2-link-color a:hover,.color5-background-color.sidebar.color-2-link-color a:focus,.color5-background-color.sidebar.color-2-link-color a:active,.color5-background-color.sidebar.color-2-link-color a.highlighted{color:#0006c6}.color5-background-color.sm.color-2-link-color li.btn a,.color5-background-color.sm.color-2-link-color .palette-primary li.button-primary a,.palette-primary .color5-background-color.sm.color-2-link-color li.button-primary a,.color5-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color5-background-color.sm.color-2-link-color li.button a,.color5-background-color.sm.color-2-link-color .palette-primary li.button-secondary a,.palette-primary .color5-background-color.sm.color-2-link-color li.button-secondary a,.color5-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color5-background-color.sm.color-2-link-color li.alt.button a{color:inherit}.color5-background-color.sm.color-2-link-color li.btn a:hover,.color5-background-color.sm.color-2-link-color .palette-primary li.button-primary a:hover,.palette-primary .color5-background-color.sm.color-2-link-color li.button-primary a:hover,.color5-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color5-background-color.sm.color-2-link-color li.button a:hover,.color5-background-color.sm.color-2-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color5-background-color.sm.color-2-link-color li.button-secondary a:hover,.color5-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color5-background-color.sm.color-2-link-color li.alt.button a:hover,.color5-background-color.sm.color-2-link-color li.btn a:focus,.color5-background-color.sm.color-2-link-color .palette-primary li.button-primary a:focus,.palette-primary .color5-background-color.sm.color-2-link-color li.button-primary a:focus,.color5-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color5-background-color.sm.color-2-link-color li.button a:focus,.color5-background-color.sm.color-2-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color5-background-color.sm.color-2-link-color li.button-secondary a:focus,.color5-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color5-background-color.sm.color-2-link-color li.alt.button a:focus,.color5-background-color.sm.color-2-link-color li.btn a:active,.color5-background-color.sm.color-2-link-color .palette-primary li.button-primary a:active,.palette-primary .color5-background-color.sm.color-2-link-color li.button-primary a:active,.color5-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color5-background-color.sm.color-2-link-color li.button a:active,.color5-background-color.sm.color-2-link-color .palette-primary li.button-secondary a:active,.palette-primary .color5-background-color.sm.color-2-link-color li.button-secondary a:active,.color5-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color5-background-color.sm.color-2-link-color li.alt.button a:active,.color5-background-color.sm.color-2-link-color li.btn a.highlighted,.color5-background-color.sm.color-2-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color5-background-color.sm.color-2-link-color li.button-primary a.highlighted,.color5-background-color.sm.color-2-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color5-background-color.sm.color-2-link-color li.button a.highlighted,.color5-background-color.sm.color-2-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color5-background-color.sm.color-2-link-color li.button-secondary a.highlighted,.color5-background-color.sm.color-2-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color5-background-color.sm.color-2-link-color li.alt.button a.highlighted{color:inherit}.color5-background-color.sm.color-2-link-color li:not(.btn) a{color:#000360}.color5-background-color.sm.color-2-link-color li:not(.btn) a:hover,.color5-background-color.sm.color-2-link-color li:not(.btn) a:focus,.color5-background-color.sm.color-2-link-color li:not(.btn) a:active,.color5-background-color.sm.color-2-link-color li:not(.btn) a.highlighted{color:#0006c6}.color5-background-color.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color5-background-color.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color5-background-color.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color5-background-color.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color5-background-color.sm.color-2-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color5-background-color.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color5-background-color.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color5-background-color.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color5-background-color.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color5-background-color.sm.color-2-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color5-background-color.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color5-background-color.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color5-background-color.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color5-background-color.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color5-background-color.sm.color-2-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color5-background-color.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color5-background-color.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color5-background-color.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color5-background-color.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color5-background-color.sm.color-2-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color5-background-color.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color5-background-color.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color5-background-color.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color5-background-color.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color5-background-color.sm.color-2-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color5-background-color.color-3-link-color a{color:#eee}.color5-background-color.color-3-link-color a:hover,.color5-background-color.color-3-link-color a:focus,.color5-background-color.color-3-link-color a:active,.color5-background-color.color-3-link-color a.highlighted{color:#bbb}.color5-background-color.sidebar.color-3-link-color a{color:#eee}.color5-background-color.sidebar.color-3-link-color a:hover,.color5-background-color.sidebar.color-3-link-color a:focus,.color5-background-color.sidebar.color-3-link-color a:active,.color5-background-color.sidebar.color-3-link-color a.highlighted{color:#bbb}.color5-background-color.sm.color-3-link-color li.btn a,.color5-background-color.sm.color-3-link-color .palette-primary li.button-primary a,.palette-primary .color5-background-color.sm.color-3-link-color li.button-primary a,.color5-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color5-background-color.sm.color-3-link-color li.button a,.color5-background-color.sm.color-3-link-color .palette-primary li.button-secondary a,.palette-primary .color5-background-color.sm.color-3-link-color li.button-secondary a,.color5-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color5-background-color.sm.color-3-link-color li.alt.button a{color:inherit}.color5-background-color.sm.color-3-link-color li.btn a:hover,.color5-background-color.sm.color-3-link-color .palette-primary li.button-primary a:hover,.palette-primary .color5-background-color.sm.color-3-link-color li.button-primary a:hover,.color5-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color5-background-color.sm.color-3-link-color li.button a:hover,.color5-background-color.sm.color-3-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color5-background-color.sm.color-3-link-color li.button-secondary a:hover,.color5-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color5-background-color.sm.color-3-link-color li.alt.button a:hover,.color5-background-color.sm.color-3-link-color li.btn a:focus,.color5-background-color.sm.color-3-link-color .palette-primary li.button-primary a:focus,.palette-primary .color5-background-color.sm.color-3-link-color li.button-primary a:focus,.color5-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color5-background-color.sm.color-3-link-color li.button a:focus,.color5-background-color.sm.color-3-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color5-background-color.sm.color-3-link-color li.button-secondary a:focus,.color5-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color5-background-color.sm.color-3-link-color li.alt.button a:focus,.color5-background-color.sm.color-3-link-color li.btn a:active,.color5-background-color.sm.color-3-link-color .palette-primary li.button-primary a:active,.palette-primary .color5-background-color.sm.color-3-link-color li.button-primary a:active,.color5-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color5-background-color.sm.color-3-link-color li.button a:active,.color5-background-color.sm.color-3-link-color .palette-primary li.button-secondary a:active,.palette-primary .color5-background-color.sm.color-3-link-color li.button-secondary a:active,.color5-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color5-background-color.sm.color-3-link-color li.alt.button a:active,.color5-background-color.sm.color-3-link-color li.btn a.highlighted,.color5-background-color.sm.color-3-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color5-background-color.sm.color-3-link-color li.button-primary a.highlighted,.color5-background-color.sm.color-3-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color5-background-color.sm.color-3-link-color li.button a.highlighted,.color5-background-color.sm.color-3-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color5-background-color.sm.color-3-link-color li.button-secondary a.highlighted,.color5-background-color.sm.color-3-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color5-background-color.sm.color-3-link-color li.alt.button a.highlighted{color:inherit}.color5-background-color.sm.color-3-link-color li:not(.btn) a{color:#eee}.color5-background-color.sm.color-3-link-color li:not(.btn) a:hover,.color5-background-color.sm.color-3-link-color li:not(.btn) a:focus,.color5-background-color.sm.color-3-link-color li:not(.btn) a:active,.color5-background-color.sm.color-3-link-color li:not(.btn) a.highlighted{color:#bbb}.color5-background-color.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color5-background-color.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color5-background-color.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color5-background-color.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color5-background-color.sm.color-3-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color5-background-color.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color5-background-color.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color5-background-color.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color5-background-color.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color5-background-color.sm.color-3-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color5-background-color.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color5-background-color.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color5-background-color.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color5-background-color.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color5-background-color.sm.color-3-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color5-background-color.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color5-background-color.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color5-background-color.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color5-background-color.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color5-background-color.sm.color-3-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color5-background-color.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color5-background-color.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color5-background-color.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color5-background-color.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color5-background-color.sm.color-3-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color5-background-color.color-4-link-color a{color:#140070}.color5-background-color.color-4-link-color a:hover,.color5-background-color.color-4-link-color a:focus,.color5-background-color.color-4-link-color a:active,.color5-background-color.color-4-link-color a.highlighted{color:#2600d6}.color5-background-color.sidebar.color-4-link-color a{color:#140070}.color5-background-color.sidebar.color-4-link-color a:hover,.color5-background-color.sidebar.color-4-link-color a:focus,.color5-background-color.sidebar.color-4-link-color a:active,.color5-background-color.sidebar.color-4-link-color a.highlighted{color:#2600d6}.color5-background-color.sm.color-4-link-color li.btn a,.color5-background-color.sm.color-4-link-color .palette-primary li.button-primary a,.palette-primary .color5-background-color.sm.color-4-link-color li.button-primary a,.color5-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color5-background-color.sm.color-4-link-color li.button a,.color5-background-color.sm.color-4-link-color .palette-primary li.button-secondary a,.palette-primary .color5-background-color.sm.color-4-link-color li.button-secondary a,.color5-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color5-background-color.sm.color-4-link-color li.alt.button a{color:inherit}.color5-background-color.sm.color-4-link-color li.btn a:hover,.color5-background-color.sm.color-4-link-color .palette-primary li.button-primary a:hover,.palette-primary .color5-background-color.sm.color-4-link-color li.button-primary a:hover,.color5-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color5-background-color.sm.color-4-link-color li.button a:hover,.color5-background-color.sm.color-4-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color5-background-color.sm.color-4-link-color li.button-secondary a:hover,.color5-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color5-background-color.sm.color-4-link-color li.alt.button a:hover,.color5-background-color.sm.color-4-link-color li.btn a:focus,.color5-background-color.sm.color-4-link-color .palette-primary li.button-primary a:focus,.palette-primary .color5-background-color.sm.color-4-link-color li.button-primary a:focus,.color5-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color5-background-color.sm.color-4-link-color li.button a:focus,.color5-background-color.sm.color-4-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color5-background-color.sm.color-4-link-color li.button-secondary a:focus,.color5-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color5-background-color.sm.color-4-link-color li.alt.button a:focus,.color5-background-color.sm.color-4-link-color li.btn a:active,.color5-background-color.sm.color-4-link-color .palette-primary li.button-primary a:active,.palette-primary .color5-background-color.sm.color-4-link-color li.button-primary a:active,.color5-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color5-background-color.sm.color-4-link-color li.button a:active,.color5-background-color.sm.color-4-link-color .palette-primary li.button-secondary a:active,.palette-primary .color5-background-color.sm.color-4-link-color li.button-secondary a:active,.color5-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color5-background-color.sm.color-4-link-color li.alt.button a:active,.color5-background-color.sm.color-4-link-color li.btn a.highlighted,.color5-background-color.sm.color-4-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color5-background-color.sm.color-4-link-color li.button-primary a.highlighted,.color5-background-color.sm.color-4-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color5-background-color.sm.color-4-link-color li.button a.highlighted,.color5-background-color.sm.color-4-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color5-background-color.sm.color-4-link-color li.button-secondary a.highlighted,.color5-background-color.sm.color-4-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color5-background-color.sm.color-4-link-color li.alt.button a.highlighted{color:inherit}.color5-background-color.sm.color-4-link-color li:not(.btn) a{color:#140070}.color5-background-color.sm.color-4-link-color li:not(.btn) a:hover,.color5-background-color.sm.color-4-link-color li:not(.btn) a:focus,.color5-background-color.sm.color-4-link-color li:not(.btn) a:active,.color5-background-color.sm.color-4-link-color li:not(.btn) a.highlighted{color:#2600d6}.color5-background-color.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color5-background-color.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color5-background-color.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color5-background-color.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color5-background-color.sm.color-4-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color5-background-color.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color5-background-color.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color5-background-color.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color5-background-color.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color5-background-color.sm.color-4-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color5-background-color.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color5-background-color.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color5-background-color.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color5-background-color.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color5-background-color.sm.color-4-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color5-background-color.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color5-background-color.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color5-background-color.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color5-background-color.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color5-background-color.sm.color-4-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color5-background-color.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color5-background-color.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color5-background-color.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color5-background-color.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color5-background-color.sm.color-4-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color5-background-color.color-5-link-color a{color:#01013f}.color5-background-color.color-5-link-color a:hover,.color5-background-color.color-5-link-color a:focus,.color5-background-color.color-5-link-color a:active,.color5-background-color.color-5-link-color a.highlighted{color:#0303a3}.color5-background-color.sidebar.color-5-link-color a{color:#01013f}.color5-background-color.sidebar.color-5-link-color a:hover,.color5-background-color.sidebar.color-5-link-color a:focus,.color5-background-color.sidebar.color-5-link-color a:active,.color5-background-color.sidebar.color-5-link-color a.highlighted{color:#0303a3}.color5-background-color.sm.color-5-link-color li.btn a,.color5-background-color.sm.color-5-link-color .palette-primary li.button-primary a,.palette-primary .color5-background-color.sm.color-5-link-color li.button-primary a,.color5-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a,.palette-primary .woocommerce .color5-background-color.sm.color-5-link-color li.button a,.color5-background-color.sm.color-5-link-color .palette-primary li.button-secondary a,.palette-primary .color5-background-color.sm.color-5-link-color li.button-secondary a,.color5-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a,.palette-primary .woocommerce .color5-background-color.sm.color-5-link-color li.alt.button a{color:inherit}.color5-background-color.sm.color-5-link-color li.btn a:hover,.color5-background-color.sm.color-5-link-color .palette-primary li.button-primary a:hover,.palette-primary .color5-background-color.sm.color-5-link-color li.button-primary a:hover,.color5-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a:hover,.palette-primary .woocommerce .color5-background-color.sm.color-5-link-color li.button a:hover,.color5-background-color.sm.color-5-link-color .palette-primary li.button-secondary a:hover,.palette-primary .color5-background-color.sm.color-5-link-color li.button-secondary a:hover,.color5-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:hover,.palette-primary .woocommerce .color5-background-color.sm.color-5-link-color li.alt.button a:hover,.color5-background-color.sm.color-5-link-color li.btn a:focus,.color5-background-color.sm.color-5-link-color .palette-primary li.button-primary a:focus,.palette-primary .color5-background-color.sm.color-5-link-color li.button-primary a:focus,.color5-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a:focus,.palette-primary .woocommerce .color5-background-color.sm.color-5-link-color li.button a:focus,.color5-background-color.sm.color-5-link-color .palette-primary li.button-secondary a:focus,.palette-primary .color5-background-color.sm.color-5-link-color li.button-secondary a:focus,.color5-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:focus,.palette-primary .woocommerce .color5-background-color.sm.color-5-link-color li.alt.button a:focus,.color5-background-color.sm.color-5-link-color li.btn a:active,.color5-background-color.sm.color-5-link-color .palette-primary li.button-primary a:active,.palette-primary .color5-background-color.sm.color-5-link-color li.button-primary a:active,.color5-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a:active,.palette-primary .woocommerce .color5-background-color.sm.color-5-link-color li.button a:active,.color5-background-color.sm.color-5-link-color .palette-primary li.button-secondary a:active,.palette-primary .color5-background-color.sm.color-5-link-color li.button-secondary a:active,.color5-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a:active,.palette-primary .woocommerce .color5-background-color.sm.color-5-link-color li.alt.button a:active,.color5-background-color.sm.color-5-link-color li.btn a.highlighted,.color5-background-color.sm.color-5-link-color .palette-primary li.button-primary a.highlighted,.palette-primary .color5-background-color.sm.color-5-link-color li.button-primary a.highlighted,.color5-background-color.sm.color-5-link-color .palette-primary .woocommerce li.button a.highlighted,.palette-primary .woocommerce .color5-background-color.sm.color-5-link-color li.button a.highlighted,.color5-background-color.sm.color-5-link-color .palette-primary li.button-secondary a.highlighted,.palette-primary .color5-background-color.sm.color-5-link-color li.button-secondary a.highlighted,.color5-background-color.sm.color-5-link-color .palette-primary .woocommerce li.alt.button a.highlighted,.palette-primary .woocommerce .color5-background-color.sm.color-5-link-color li.alt.button a.highlighted{color:inherit}.color5-background-color.sm.color-5-link-color li:not(.btn) a{color:#01013f}.color5-background-color.sm.color-5-link-color li:not(.btn) a:hover,.color5-background-color.sm.color-5-link-color li:not(.btn) a:focus,.color5-background-color.sm.color-5-link-color li:not(.btn) a:active,.color5-background-color.sm.color-5-link-color li:not(.btn) a.highlighted{color:#0303a3}.color5-background-color.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a{color:#00a7e1}.color5-background-color.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a:hover,.color5-background-color.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a:focus,.color5-background-color.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a:active,.color5-background-color.sm.color-5-link-color.color-1-sub-link-color li:not(.btn) ul a.highlighted{color:#005b7b}.color5-background-color.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a{color:#000360}.color5-background-color.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a:hover,.color5-background-color.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a:focus,.color5-background-color.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a:active,.color5-background-color.sm.color-5-link-color.color-2-sub-link-color li:not(.btn) ul a.highlighted{color:black}.color5-background-color.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a{color:#eee}.color5-background-color.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a:hover,.color5-background-color.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a:focus,.color5-background-color.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a:active,.color5-background-color.sm.color-5-link-color.color-3-sub-link-color li:not(.btn) ul a.highlighted{color:#bbb}.color5-background-color.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a{color:#140070}.color5-background-color.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a:hover,.color5-background-color.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a:focus,.color5-background-color.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a:active,.color5-background-color.sm.color-5-link-color.color-4-sub-link-color li:not(.btn) ul a.highlighted{color:#02000a}.color5-background-color.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a{color:#01013f}.color5-background-color.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a:hover,.color5-background-color.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a:focus,.color5-background-color.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a:active,.color5-background-color.sm.color-5-link-color.color-5-sub-link-color li:not(.btn) ul a.highlighted{color:#0303a3}.color5-background-color.color-neutral-link-color a{color:#eee}.color5-background-color.color-neutral-link-color a:hover,.color5-background-color.color-neutral-link-color a:focus,.color5-background-color.color-neutral-link-color a:active,.color5-background-color.color-neutral-link-color a.highlighted{color:#bbb}.color5-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a{color:#eee}.color5-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a:hover,.color5-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a:focus,.color5-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a:active,.color5-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a.highlighted{color:#bbb}.color5-background-color.color-1-sub-link-color ul li:not(.btn) a{color:#00a7e1}.color5-background-color.color-1-sub-link-color ul li:not(.btn) a:hover,.color5-background-color.color-1-sub-link-color ul li:not(.btn) a:focus,.color5-background-color.color-1-sub-link-color ul li:not(.btn) a:active,.color5-background-color.color-1-sub-link-color ul li:not(.btn) a.highlighted{color:#48d0ff}.color5-background-color.color-2-sub-link-color ul li:not(.btn) a{color:#000360}.color5-background-color.color-2-sub-link-color ul li:not(.btn) a:hover,.color5-background-color.color-2-sub-link-color ul li:not(.btn) a:focus,.color5-background-color.color-2-sub-link-color ul li:not(.btn) a:active,.color5-background-color.color-2-sub-link-color ul li:not(.btn) a.highlighted{color:#0006c6}.color5-background-color.color-3-sub-link-color ul li:not(.btn) a{color:#eee}.color5-background-color.color-3-sub-link-color ul li:not(.btn) a:hover,.color5-background-color.color-3-sub-link-color ul li:not(.btn) a:focus,.color5-background-color.color-3-sub-link-color ul li:not(.btn) a:active,.color5-background-color.color-3-sub-link-color ul li:not(.btn) a.highlighted{color:#bbb}.color5-background-color.color-4-sub-link-color ul li:not(.btn) a{color:#140070}.color5-background-color.color-4-sub-link-color ul li:not(.btn) a:hover,.color5-background-color.color-4-sub-link-color ul li:not(.btn) a:focus,.color5-background-color.color-4-sub-link-color ul li:not(.btn) a:active,.color5-background-color.color-4-sub-link-color ul li:not(.btn) a.highlighted{color:#2600d6}.color5-background-color.color-5-sub-link-color ul li:not(.btn) a{color:#01013f}.color5-background-color.color-5-sub-link-color ul li:not(.btn) a:hover,.color5-background-color.color-5-sub-link-color ul li:not(.btn) a:focus,.color5-background-color.color-5-sub-link-color ul li:not(.btn) a:active,.color5-background-color.color-5-sub-link-color ul li:not(.btn) a.highlighted{color:#0303a3}.color5-background-color-hover:focus,.color5-background-color-hover:hover{background-color:#01013f ! important}.color-neutral-background-color.color-1-link-color a{color:#00a7e1}.color-neutral-background-color.color-1-link-color a:hover,.color-neutral-background-color.color-1-link-color a:focus,.color-neutral-background-color.color-1-link-color a:active,.color-neutral-background-color.color-1-link-color a.highlighted{color:#005b7b}.color-neutral-background-color.color-1-sub-link-color.sm ul li:not(.btn) a{color:#00a7e1}.color-neutral-background-color.color-1-sub-link-color.sm ul li:not(.btn) a:hover,.color-neutral-background-color.color-1-sub-link-color.sm ul li:not(.btn) a:focus,.color-neutral-background-color.color-1-sub-link-color.sm ul li:not(.btn) a:active,.color-neutral-background-color.color-1-sub-link-color.sm ul li:not(.btn) a.highlighted{color:#005b7b}.color-neutral-background-color.color-2-link-color a{color:#000360}.color-neutral-background-color.color-2-link-color a:hover,.color-neutral-background-color.color-2-link-color a:focus,.color-neutral-background-color.color-2-link-color a:active,.color-neutral-background-color.color-2-link-color a.highlighted{color:black}.color-neutral-background-color.color-2-sub-link-color.sm ul li:not(.btn) a{color:#000360}.color-neutral-background-color.color-2-sub-link-color.sm ul li:not(.btn) a:hover,.color-neutral-background-color.color-2-sub-link-color.sm ul li:not(.btn) a:focus,.color-neutral-background-color.color-2-sub-link-color.sm ul li:not(.btn) a:active,.color-neutral-background-color.color-2-sub-link-color.sm ul li:not(.btn) a.highlighted{color:black}.color-neutral-background-color.color-3-link-color a{color:#eee}.color-neutral-background-color.color-3-link-color a:hover,.color-neutral-background-color.color-3-link-color a:focus,.color-neutral-background-color.color-3-link-color a:active,.color-neutral-background-color.color-3-link-color a.highlighted{color:#bbb}.color-neutral-background-color.color-3-sub-link-color.sm ul li:not(.btn) a{color:#eee}.color-neutral-background-color.color-3-sub-link-color.sm ul li:not(.btn) a:hover,.color-neutral-background-color.color-3-sub-link-color.sm ul li:not(.btn) a:focus,.color-neutral-background-color.color-3-sub-link-color.sm ul li:not(.btn) a:active,.color-neutral-background-color.color-3-sub-link-color.sm ul li:not(.btn) a.highlighted{color:#bbb}.color-neutral-background-color.color-4-link-color a{color:#140070}.color-neutral-background-color.color-4-link-color a:hover,.color-neutral-background-color.color-4-link-color a:focus,.color-neutral-background-color.color-4-link-color a:active,.color-neutral-background-color.color-4-link-color a.highlighted{color:#02000a}.color-neutral-background-color.color-4-sub-link-color.sm ul li:not(.btn) a{color:#140070}.color-neutral-background-color.color-4-sub-link-color.sm ul li:not(.btn) a:hover,.color-neutral-background-color.color-4-sub-link-color.sm ul li:not(.btn) a:focus,.color-neutral-background-color.color-4-sub-link-color.sm ul li:not(.btn) a:active,.color-neutral-background-color.color-4-sub-link-color.sm ul li:not(.btn) a.highlighted{color:#02000a}.color-neutral-background-color.color-5-link-color a{color:#01013f}.color-neutral-background-color.color-5-link-color a:hover,.color-neutral-background-color.color-5-link-color a:focus,.color-neutral-background-color.color-5-link-color a:active,.color-neutral-background-color.color-5-link-color a.highlighted{color:#0303a3}.color-neutral-background-color.color-5-sub-link-color.sm ul li:not(.btn) a{color:#01013f}.color-neutral-background-color.color-5-sub-link-color.sm ul li:not(.btn) a:hover,.color-neutral-background-color.color-5-sub-link-color.sm ul li:not(.btn) a:focus,.color-neutral-background-color.color-5-sub-link-color.sm ul li:not(.btn) a:active,.color-neutral-background-color.color-5-sub-link-color.sm ul li:not(.btn) a.highlighted{color:#0303a3}.color-neutral-background-color.color-neutral-link-color a{color:#eee}.color-neutral-background-color.color-neutral-link-color a:hover,.color-neutral-background-color.color-neutral-link-color a:focus,.color-neutral-background-color.color-neutral-link-color a:active,.color-neutral-background-color.color-neutral-link-color a.highlighted{color:#bbb}.color-neutral-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a{color:#eee}.color-neutral-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a:hover,.color-neutral-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a:focus,.color-neutral-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a:active,.color-neutral-background-color.color-neutral-sub-link-color.sm ul li:not(.btn) a.highlighted{color:#bbb}.btn-color-1,.palette-primary .button-primary,.palette-primary .woocommerce .button,.palette-primary .btn-color-1.button-primary,.palette-primary .woocommerce .button-primary.button,.palette-primary .woocommerce .button.button-primary,.palette-primary .woocommerce .btn-color-1.button,.palette-primary .btn-color-1.button-secondary,.palette-primary .button-secondary.button-primary,.palette-primary .woocommerce .button-secondary.button,.palette-primary .woocommerce .button.button-secondary,.palette-primary .woocommerce .alt.button,.palette-primary .woocommerce .btn-color-1.alt.button,.palette-primary .woocommerce .alt.button.button-primary,.btn-color-1-flat{background-color:#00a7e1 !important;border-color:#00a7e1;color:var(--color-1-text-contrast)}.btn-color-1 a,.palette-primary .button-primary a,.palette-primary .woocommerce .button a,.palette-primary .btn-color-1.button-primary a,.palette-primary .woocommerce .button-primary.button a,.palette-primary .woocommerce .button.button-primary a,.palette-primary .woocommerce .btn-color-1.button a,.palette-primary .btn-color-1.button-secondary a,.palette-primary .button-secondary.button-primary a,.palette-primary .woocommerce .button-secondary.button a,.palette-primary .woocommerce .button.button-secondary a,.palette-primary .woocommerce .alt.button a,.palette-primary .woocommerce .btn-color-1.alt.button a,.palette-primary .woocommerce .alt.button.button-primary a,.btn-color-1-flat a{color:var(--color-1-text-contrast)}.btn-color-1:visited,.palette-primary .button-primary:visited,.palette-primary .woocommerce .button:visited,.palette-primary .btn-color-1.button-primary:visited,.palette-primary .woocommerce .button-primary.button:visited,.palette-primary .woocommerce .button.button-primary:visited,.palette-primary .woocommerce .btn-color-1.button:visited,.palette-primary .btn-color-1.button-secondary:visited,.palette-primary .button-secondary.button-primary:visited,.palette-primary .woocommerce .button-secondary.button:visited,.palette-primary .woocommerce .button.button-secondary:visited,.palette-primary .woocommerce .button.alt:visited,.palette-primary .woocommerce .btn-color-1.alt.button:visited,.palette-primary .woocommerce .alt.button.button-primary:visited,.palette-primary .woocommerce .alt.button:visited,.btn-color-1-flat:visited{color:var(--color-1-text-contrast)}.btn-color-1:visited a,.palette-primary .button-primary:visited a,.palette-primary .woocommerce .button:visited a,.palette-primary .btn-color-1.button-primary:visited a,.palette-primary .woocommerce .button-primary.button:visited a,.palette-primary .woocommerce .button.button-primary:visited a,.palette-primary .woocommerce .btn-color-1.button:visited a,.palette-primary .btn-color-1.button-secondary:visited a,.palette-primary .button-secondary.button-primary:visited a,.palette-primary .woocommerce .button-secondary.button:visited a,.palette-primary .woocommerce .button.button-secondary:visited a,.palette-primary .woocommerce .button.alt:visited a,.palette-primary .woocommerce .btn-color-1.alt.button:visited a,.palette-primary .woocommerce .alt.button.button-primary:visited a,.palette-primary .woocommerce .alt.button:visited a,.btn-color-1-flat:visited a{color:var(--color-1-text-contrast)}.btn-color-1:hover,.palette-primary .button-primary:hover,.palette-primary .woocommerce .button:hover,.btn-color-1:focus,.palette-primary .button-primary:focus,.palette-primary .woocommerce .button:focus,.palette-primary .btn-color-1.button-primary:hover,.palette-primary .woocommerce .button-primary.button:hover,.palette-primary .woocommerce .button.button-primary:hover,.palette-primary .woocommerce .btn-color-1.button:hover,.palette-primary .btn-color-1.button-primary:focus,.palette-primary .woocommerce .button-primary.button:focus,.palette-primary .woocommerce .button.button-primary:focus,.palette-primary .woocommerce .btn-color-1.button:focus,.palette-primary .btn-color-1.button-secondary:hover,.palette-primary .button-secondary.button-primary:hover,.palette-primary .woocommerce .button-secondary.button:hover,.palette-primary .woocommerce .button.button-secondary:hover,.palette-primary .woocommerce .button.alt:hover,.palette-primary .woocommerce .btn-color-1.alt.button:hover,.palette-primary .woocommerce .alt.button.button-primary:hover,.palette-primary .woocommerce .alt.button:hover,.palette-primary .btn-color-1.button-secondary:focus,.palette-primary .button-secondary.button-primary:focus,.palette-primary .woocommerce .button-secondary.button:focus,.palette-primary .woocommerce .button.button-secondary:focus,.palette-primary .woocommerce .button.alt:focus,.palette-primary .woocommerce .btn-color-1.alt.button:focus,.palette-primary .woocommerce .alt.button.button-primary:focus,.palette-primary .woocommerce .alt.button:focus,.btn-color-1-flat:hover,.btn-color-1-flat:focus{background-color:#15c3ff !important;border-color:#15c3ff;color:var(--color-1-text-contrast)}.btn-color-1:hover a,.palette-primary .button-primary:hover a,.palette-primary .woocommerce .button:hover a,.btn-color-1:focus a,.palette-primary .button-primary:focus a,.palette-primary .woocommerce .button:focus a,.palette-primary .btn-color-1.button-primary:hover a,.palette-primary .woocommerce .button-primary.button:hover a,.palette-primary .woocommerce .button.button-primary:hover a,.palette-primary .woocommerce .btn-color-1.button:hover a,.palette-primary .btn-color-1.button-primary:focus a,.palette-primary .woocommerce .button-primary.button:focus a,.palette-primary .woocommerce .button.button-primary:focus a,.palette-primary .woocommerce .btn-color-1.button:focus a,.palette-primary .btn-color-1.button-secondary:hover a,.palette-primary .button-secondary.button-primary:hover a,.palette-primary .woocommerce .button-secondary.button:hover a,.palette-primary .woocommerce .button.button-secondary:hover a,.palette-primary .woocommerce .button.alt:hover a,.palette-primary .woocommerce .btn-color-1.alt.button:hover a,.palette-primary .woocommerce .alt.button.button-primary:hover a,.palette-primary .woocommerce .alt.button:hover a,.palette-primary .btn-color-1.button-secondary:focus a,.palette-primary .button-secondary.button-primary:focus a,.palette-primary .woocommerce .button-secondary.button:focus a,.palette-primary .woocommerce .button.button-secondary:focus a,.palette-primary .woocommerce .button.alt:focus a,.palette-primary .woocommerce .btn-color-1.alt.button:focus a,.palette-primary .woocommerce .alt.button.button-primary:focus a,.palette-primary .woocommerce .alt.button:focus a,.btn-color-1-flat:hover a,.btn-color-1-flat:focus a{color:var(--color-1-text-contrast)}.btn-color-1:active,.palette-primary .button-primary:active,.palette-primary .woocommerce .button:active,.btn-color-1.active,.palette-primary .active.button-primary,.palette-primary .woocommerce .active.button,.btn-color-1.is-active,.palette-primary .is-active.button-primary,.palette-primary .woocommerce .is-active.button,.palette-primary .btn-color-1.button-primary:active,.palette-primary .woocommerce .button-primary.button:active,.palette-primary .woocommerce .button.button-primary:active,.palette-primary .woocommerce .btn-color-1.button:active,.palette-primary .btn-color-1.button-primary.active,.palette-primary .button-primary.active,.palette-primary .woocommerce .button-primary.active.button,.palette-primary .woocommerce .active.button.button-primary,.palette-primary .btn-color-1.active.button-primary,.palette-primary .woocommerce .btn-color-1.active.button,.palette-primary .btn-color-1.button-primary.is-active,.palette-primary .button-primary.is-active,.palette-primary .woocommerce .button-primary.is-active.button,.palette-primary .woocommerce .is-active.button.button-primary,.palette-primary .btn-color-1.is-active.button-primary,.palette-primary .woocommerce .btn-color-1.is-active.button,.palette-primary .btn-color-1.button-secondary:active,.palette-primary .button-secondary.button-primary:active,.palette-primary .woocommerce .button-secondary.button:active,.palette-primary .woocommerce .button.button-secondary:active,.palette-primary .woocommerce .button.alt:active,.palette-primary .woocommerce .btn-color-1.alt.button:active,.palette-primary .woocommerce .alt.button.button-primary:active,.palette-primary .woocommerce .alt.button:active,.palette-primary .btn-color-1.button-secondary.active,.palette-primary .button-secondary.active.button-primary,.palette-primary .woocommerce .button-secondary.active.button,.palette-primary .woocommerce .active.button.button-secondary,.palette-primary .woocommerce .active.button.alt,.palette-primary .btn-color-1.active.button-secondary,.palette-primary .woocommerce .btn-color-1.active.alt.button,.palette-primary .woocommerce .active.alt.button.button-primary,.palette-primary .woocommerce .active.alt.button,.palette-primary .btn-color-1.button-secondary.is-active,.palette-primary .button-secondary.is-active.button-primary,.palette-primary .woocommerce .button-secondary.is-active.button,.palette-primary .woocommerce .is-active.button.button-secondary,.palette-primary .woocommerce .is-active.button.alt,.palette-primary .btn-color-1.is-active.button-secondary,.palette-primary .woocommerce .btn-color-1.is-active.alt.button,.palette-primary .woocommerce .is-active.alt.button.button-primary,.palette-primary .woocommerce .is-active.alt.button,.btn-color-1-flat:active,.btn-color-1-flat.active,.btn-color-1-flat.is-active{background-color:#0ba2d6 !important;border-color:#0ba2d6;color:#0081ae}.btn-color-1:active a,.palette-primary .button-primary:active a,.palette-primary .woocommerce .button:active a,.btn-color-1.active a,.palette-primary .active.button-primary a,.palette-primary .woocommerce .active.button a,.btn-color-1.is-active a,.palette-primary .is-active.button-primary a,.palette-primary .woocommerce .is-active.button a,.palette-primary .btn-color-1.button-primary:active a,.palette-primary .woocommerce .button-primary.button:active a,.palette-primary .woocommerce .button.button-primary:active a,.palette-primary .woocommerce .btn-color-1.button:active a,.palette-primary .btn-color-1.button-primary.active a,.palette-primary .button-primary.active a,.palette-primary .woocommerce .button-primary.active.button a,.palette-primary .woocommerce .active.button.button-primary a,.palette-primary .btn-color-1.active.button-primary a,.palette-primary .woocommerce .btn-color-1.active.button a,.palette-primary .btn-color-1.button-primary.is-active a,.palette-primary .button-primary.is-active a,.palette-primary .woocommerce .button-primary.is-active.button a,.palette-primary .woocommerce .is-active.button.button-primary a,.palette-primary .btn-color-1.is-active.button-primary a,.palette-primary .woocommerce .btn-color-1.is-active.button a,.palette-primary .btn-color-1.button-secondary:active a,.palette-primary .button-secondary.button-primary:active a,.palette-primary .woocommerce .button-secondary.button:active a,.palette-primary .woocommerce .button.button-secondary:active a,.palette-primary .woocommerce .button.alt:active a,.palette-primary .woocommerce .btn-color-1.alt.button:active a,.palette-primary .woocommerce .alt.button.button-primary:active a,.palette-primary .woocommerce .alt.button:active a,.palette-primary .btn-color-1.button-secondary.active a,.palette-primary .button-secondary.active.button-primary a,.palette-primary .woocommerce .button-secondary.active.button a,.palette-primary .woocommerce .active.button.button-secondary a,.palette-primary .woocommerce .active.button.alt a,.palette-primary .btn-color-1.active.button-secondary a,.palette-primary .woocommerce .btn-color-1.active.alt.button a,.palette-primary .woocommerce .active.alt.button.button-primary a,.palette-primary .woocommerce .active.alt.button a,.palette-primary .btn-color-1.button-secondary.is-active a,.palette-primary .button-secondary.is-active.button-primary a,.palette-primary .woocommerce .button-secondary.is-active.button a,.palette-primary .woocommerce .is-active.button.button-secondary a,.palette-primary .woocommerce .is-active.button.alt a,.palette-primary .btn-color-1.is-active.button-secondary a,.palette-primary .woocommerce .btn-color-1.is-active.alt.button a,.palette-primary .woocommerce .is-active.alt.button.button-primary a,.palette-primary .woocommerce .is-active.alt.button a,.btn-color-1-flat:active a,.btn-color-1-flat.active a,.btn-color-1-flat.is-active a{color:var(--color-1-text-contrast)}.btn-border-color-1,.palette-primary .btn-border-color-1.button-primary,.palette-primary .woocommerce .btn-border-color-1.button,.palette-primary .btn-border-color-1.button-secondary,.palette-primary .woocommerce .btn-border-color-1.alt.button,.btn-border-color-1-flat{border-color:#00a7e1 !important}.btn-border-color-1:hover,.btn-border-color-1:focus,.palette-primary .btn-border-color-1.button-primary:hover,.palette-primary .woocommerce .btn-border-color-1.button:hover,.palette-primary .btn-border-color-1.button-primary:focus,.palette-primary .woocommerce .btn-border-color-1.button:focus,.palette-primary .btn-border-color-1.button-secondary:hover,.palette-primary .woocommerce .btn-border-color-1.alt.button:hover,.palette-primary .btn-border-color-1.button-secondary:focus,.palette-primary .woocommerce .btn-border-color-1.alt.button:focus,.btn-border-color-1-flat:hover,.btn-border-color-1-flat:focus{border-color:#15c3ff !important}.btn-border-color-1:hover.btn-transparent,.btn-border-color-1:focus.btn-transparent,.palette-primary .btn-border-color-1.button-primary:hover.btn-transparent,.palette-primary .btn-border-color-1.btn-transparent.button-primary:hover,.palette-primary .woocommerce .btn-border-color-1.btn-transparent.button:hover,.palette-primary .btn-border-color-1.button-primary:focus.btn-transparent,.palette-primary .btn-border-color-1.btn-transparent.button-primary:focus,.palette-primary .woocommerce .btn-border-color-1.btn-transparent.button:focus,.palette-primary .btn-border-color-1.button-secondary:hover.btn-transparent,.palette-primary .btn-border-color-1.btn-transparent.button-secondary:hover,.palette-primary .woocommerce .btn-border-color-1.btn-transparent.alt.button:hover,.palette-primary .btn-border-color-1.button-secondary:focus.btn-transparent,.palette-primary .btn-border-color-1.btn-transparent.button-secondary:focus,.palette-primary .woocommerce .btn-border-color-1.btn-transparent.alt.button:focus,.btn-border-color-1-flat:hover.btn-transparent,.btn-border-color-1-flat:focus.btn-transparent{background-color:#15c3ff !important;color:var(--color-1-text-contrast)}.btn-border-color-1:hover.btn-transparent a,.btn-border-color-1:focus.btn-transparent a,.palette-primary .btn-border-color-1.button-primary:hover.btn-transparent a,.palette-primary .btn-border-color-1.btn-transparent.button-primary:hover a,.palette-primary .woocommerce .btn-border-color-1.btn-transparent.button:hover a,.palette-primary .btn-border-color-1.button-primary:focus.btn-transparent a,.palette-primary .btn-border-color-1.btn-transparent.button-primary:focus a,.palette-primary .woocommerce .btn-border-color-1.btn-transparent.button:focus a,.palette-primary .btn-border-color-1.button-secondary:hover.btn-transparent a,.palette-primary .btn-border-color-1.btn-transparent.button-secondary:hover a,.palette-primary .woocommerce .btn-border-color-1.btn-transparent.alt.button:hover a,.palette-primary .btn-border-color-1.button-secondary:focus.btn-transparent a,.palette-primary .btn-border-color-1.btn-transparent.button-secondary:focus a,.palette-primary .woocommerce .btn-border-color-1.btn-transparent.alt.button:focus a,.btn-border-color-1-flat:hover.btn-transparent a,.btn-border-color-1-flat:focus.btn-transparent a{color:var(--color-1-text-contrast)}.btn-border-color-1:active,.btn-border-color-1.active,.btn-border-color-1.is-active,.palette-primary .btn-border-color-1.button-primary:active,.palette-primary .woocommerce .btn-border-color-1.button:active,.palette-primary .btn-border-color-1.button-primary.active,.palette-primary .btn-border-color-1.active.button-primary,.palette-primary .woocommerce .btn-border-color-1.active.button,.palette-primary .btn-border-color-1.button-primary.is-active,.palette-primary .btn-border-color-1.is-active.button-primary,.palette-primary .woocommerce .btn-border-color-1.is-active.button,.palette-primary .btn-border-color-1.button-secondary:active,.palette-primary .woocommerce .btn-border-color-1.alt.button:active,.palette-primary .btn-border-color-1.button-secondary.active,.palette-primary .btn-border-color-1.active.button-secondary,.palette-primary .woocommerce .btn-border-color-1.active.alt.button,.palette-primary .btn-border-color-1.button-secondary.is-active,.palette-primary .btn-border-color-1.is-active.button-secondary,.palette-primary .woocommerce .btn-border-color-1.is-active.alt.button,.btn-border-color-1-flat:active,.btn-border-color-1-flat.active,.btn-border-color-1-flat.is-active{border-color:#0ba2d6 !important}.btn-border-color-1:active.btn-transparent,.btn-border-color-1.active.btn-transparent,.btn-border-color-1.is-active.btn-transparent,.palette-primary .btn-border-color-1.button-primary:active.btn-transparent,.palette-primary .btn-border-color-1.btn-transparent.button-primary:active,.palette-primary .woocommerce .btn-border-color-1.btn-transparent.button:active,.palette-primary .btn-border-color-1.button-primary.active.btn-transparent,.palette-primary .btn-border-color-1.active.btn-transparent.button-primary,.palette-primary .woocommerce .btn-border-color-1.active.btn-transparent.button,.palette-primary .btn-border-color-1.button-primary.is-active.btn-transparent,.palette-primary .btn-border-color-1.is-active.btn-transparent.button-primary,.palette-primary .woocommerce .btn-border-color-1.is-active.btn-transparent.button,.palette-primary .btn-border-color-1.button-secondary:active.btn-transparent,.palette-primary .btn-border-color-1.btn-transparent.button-secondary:active,.palette-primary .woocommerce .btn-border-color-1.btn-transparent.alt.button:active,.palette-primary .btn-border-color-1.button-secondary.active.btn-transparent,.palette-primary .btn-border-color-1.active.btn-transparent.button-secondary,.palette-primary .woocommerce .btn-border-color-1.active.btn-transparent.alt.button,.palette-primary .btn-border-color-1.button-secondary.is-active.btn-transparent,.palette-primary .btn-border-color-1.is-active.btn-transparent.button-secondary,.palette-primary .woocommerce .btn-border-color-1.is-active.btn-transparent.alt.button,.btn-border-color-1-flat:active.btn-transparent,.btn-border-color-1-flat.active.btn-transparent,.btn-border-color-1-flat.is-active.btn-transparent{background-color:#15c3ff !important;color:#0081ae}.btn-border-color-1:active.btn-transparent a,.btn-border-color-1.active.btn-transparent a,.btn-border-color-1.is-active.btn-transparent a,.palette-primary .btn-border-color-1.button-primary:active.btn-transparent a,.palette-primary .btn-border-color-1.btn-transparent.button-primary:active a,.palette-primary .woocommerce .btn-border-color-1.btn-transparent.button:active a,.palette-primary .btn-border-color-1.button-primary.active.btn-transparent a,.palette-primary .btn-border-color-1.active.btn-transparent.button-primary a,.palette-primary .woocommerce .btn-border-color-1.active.btn-transparent.button a,.palette-primary .btn-border-color-1.button-primary.is-active.btn-transparent a,.palette-primary .btn-border-color-1.is-active.btn-transparent.button-primary a,.palette-primary .woocommerce .btn-border-color-1.is-active.btn-transparent.button a,.palette-primary .btn-border-color-1.button-secondary:active.btn-transparent a,.palette-primary .btn-border-color-1.btn-transparent.button-secondary:active a,.palette-primary .woocommerce .btn-border-color-1.btn-transparent.alt.button:active a,.palette-primary .btn-border-color-1.button-secondary.active.btn-transparent a,.palette-primary .btn-border-color-1.active.btn-transparent.button-secondary a,.palette-primary .woocommerce .btn-border-color-1.active.btn-transparent.alt.button a,.palette-primary .btn-border-color-1.button-secondary.is-active.btn-transparent a,.palette-primary .btn-border-color-1.is-active.btn-transparent.button-secondary a,.palette-primary .woocommerce .btn-border-color-1.is-active.btn-transparent.alt.button a,.btn-border-color-1-flat:active.btn-transparent a,.btn-border-color-1-flat.active.btn-transparent a,.btn-border-color-1-flat.is-active.btn-transparent a{color:var(--color-1-text-contrast)}.btn-color-2,.palette-primary .button-secondary,.palette-primary .woocommerce .alt.button,.palette-primary .btn-color-2.button-primary,.palette-primary .button-primary.button-secondary,.palette-primary .woocommerce .button-primary.alt.button,.palette-primary .woocommerce .alt.button.button-primary,.palette-primary .woocommerce .btn-color-2.button,.palette-primary .woocommerce .button.button-secondary,.palette-primary .btn-color-2.button-secondary,.palette-primary .woocommerce .button-secondary.alt.button,.palette-primary .woocommerce .alt.button.button-secondary,.palette-primary .woocommerce .btn-color-2.alt.button,.btn-color-2-flat{background-color:#000360 !important;border-color:#000360;color:var(--color-2-text-contrast)}.btn-color-2 a,.palette-primary .button-secondary a,.palette-primary .woocommerce .alt.button a,.palette-primary .btn-color-2.button-primary a,.palette-primary .button-primary.button-secondary a,.palette-primary .woocommerce .button-primary.alt.button a,.palette-primary .woocommerce .alt.button.button-primary a,.palette-primary .woocommerce .btn-color-2.button a,.palette-primary .woocommerce .button.button-secondary a,.palette-primary .btn-color-2.button-secondary a,.palette-primary .woocommerce .button-secondary.alt.button a,.palette-primary .woocommerce .alt.button.button-secondary a,.palette-primary .woocommerce .btn-color-2.alt.button a,.btn-color-2-flat a{color:var(--color-2-text-contrast)}.btn-color-2:visited,.palette-primary .button-secondary:visited,.palette-primary .woocommerce .alt.button:visited,.palette-primary .btn-color-2.button-primary:visited,.palette-primary .button-primary.button-secondary:visited,.palette-primary .woocommerce .button-primary.alt.button:visited,.palette-primary .woocommerce .alt.button.button-primary:visited,.palette-primary .woocommerce .btn-color-2.button:visited,.palette-primary .woocommerce .button.button-secondary:visited,.palette-primary .woocommerce .button.alt:visited,.palette-primary .btn-color-2.button-secondary:visited,.palette-primary .woocommerce .button-secondary.alt.button:visited,.palette-primary .woocommerce .alt.button.button-secondary:visited,.palette-primary .woocommerce .btn-color-2.alt.button:visited,.btn-color-2-flat:visited{color:var(--color-2-text-contrast)}.btn-color-2:visited a,.palette-primary .button-secondary:visited a,.palette-primary .woocommerce .alt.button:visited a,.palette-primary .btn-color-2.button-primary:visited a,.palette-primary .button-primary.button-secondary:visited a,.palette-primary .woocommerce .button-primary.alt.button:visited a,.palette-primary .woocommerce .alt.button.button-primary:visited a,.palette-primary .woocommerce .btn-color-2.button:visited a,.palette-primary .woocommerce .button.button-secondary:visited a,.palette-primary .woocommerce .button.alt:visited a,.palette-primary .btn-color-2.button-secondary:visited a,.palette-primary .woocommerce .button-secondary.alt.button:visited a,.palette-primary .woocommerce .alt.button.button-secondary:visited a,.palette-primary .woocommerce .btn-color-2.alt.button:visited a,.btn-color-2-flat:visited a{color:var(--color-2-text-contrast)}.btn-color-2:hover,.palette-primary .button-secondary:hover,.palette-primary .woocommerce .alt.button:hover,.btn-color-2:focus,.palette-primary .button-secondary:focus,.palette-primary .woocommerce .alt.button:focus,.palette-primary .btn-color-2.button-primary:hover,.palette-primary .button-primary.button-secondary:hover,.palette-primary .woocommerce .button-primary.alt.button:hover,.palette-primary .woocommerce .alt.button.button-primary:hover,.palette-primary .woocommerce .btn-color-2.button:hover,.palette-primary .woocommerce .button.button-secondary:hover,.palette-primary .woocommerce .button.alt:hover,.palette-primary .btn-color-2.button-primary:focus,.palette-primary .button-primary.button-secondary:focus,.palette-primary .woocommerce .button-primary.alt.button:focus,.palette-primary .woocommerce .alt.button.button-primary:focus,.palette-primary .woocommerce .btn-color-2.button:focus,.palette-primary .woocommerce .button.button-secondary:focus,.palette-primary .woocommerce .button.alt:focus,.palette-primary .btn-color-2.button-secondary:hover,.palette-primary .woocommerce .button-secondary.alt.button:hover,.palette-primary .woocommerce .alt.button.button-secondary:hover,.palette-primary .woocommerce .btn-color-2.alt.button:hover,.palette-primary .btn-color-2.button-secondary:focus,.palette-primary .woocommerce .button-secondary.alt.button:focus,.palette-primary .woocommerce .alt.button.button-secondary:focus,.palette-primary .woocommerce .btn-color-2.alt.button:focus,.btn-color-2-flat:hover,.btn-color-2-flat:focus{background-color:#000593 !important;border-color:#000593;color:var(--color-2-text-contrast)}.btn-color-2:hover a,.palette-primary .button-secondary:hover a,.palette-primary .woocommerce .alt.button:hover a,.btn-color-2:focus a,.palette-primary .button-secondary:focus a,.palette-primary .woocommerce .alt.button:focus a,.palette-primary .btn-color-2.button-primary:hover a,.palette-primary .button-primary.button-secondary:hover a,.palette-primary .woocommerce .button-primary.alt.button:hover a,.palette-primary .woocommerce .alt.button.button-primary:hover a,.palette-primary .woocommerce .btn-color-2.button:hover a,.palette-primary .woocommerce .button.button-secondary:hover a,.palette-primary .woocommerce .button.alt:hover a,.palette-primary .btn-color-2.button-primary:focus a,.palette-primary .button-primary.button-secondary:focus a,.palette-primary .woocommerce .button-primary.alt.button:focus a,.palette-primary .woocommerce .alt.button.button-primary:focus a,.palette-primary .woocommerce .btn-color-2.button:focus a,.palette-primary .woocommerce .button.button-secondary:focus a,.palette-primary .woocommerce .button.alt:focus a,.palette-primary .btn-color-2.button-secondary:hover a,.palette-primary .woocommerce .button-secondary.alt.button:hover a,.palette-primary .woocommerce .alt.button.button-secondary:hover a,.palette-primary .woocommerce .btn-color-2.alt.button:hover a,.palette-primary .btn-color-2.button-secondary:focus a,.palette-primary .woocommerce .button-secondary.alt.button:focus a,.palette-primary .woocommerce .alt.button.button-secondary:focus a,.palette-primary .woocommerce .btn-color-2.alt.button:focus a,.btn-color-2-flat:hover a,.btn-color-2-flat:focus a{color:var(--color-2-text-contrast)}.btn-color-2:active,.palette-primary .button-secondary:active,.palette-primary .woocommerce .alt.button:active,.btn-color-2.active,.palette-primary .active.button-secondary,.palette-primary .woocommerce .active.alt.button,.btn-color-2.is-active,.palette-primary .is-active.button-secondary,.palette-primary .woocommerce .is-active.alt.button,.palette-primary .btn-color-2.button-primary:active,.palette-primary .button-primary.button-secondary:active,.palette-primary .woocommerce .button-primary.alt.button:active,.palette-primary .woocommerce .alt.button.button-primary:active,.palette-primary .woocommerce .btn-color-2.button:active,.palette-primary .woocommerce .button.button-secondary:active,.palette-primary .woocommerce .button.alt:active,.palette-primary .btn-color-2.button-primary.active,.palette-primary .button-primary.active.button-secondary,.palette-primary .woocommerce .button-primary.active.alt.button,.palette-primary .woocommerce .active.alt.button.button-primary,.palette-primary .btn-color-2.active.button-primary,.palette-primary .woocommerce .btn-color-2.active.button,.palette-primary .woocommerce .active.button.button-secondary,.palette-primary .woocommerce .active.button.alt,.palette-primary .btn-color-2.button-primary.is-active,.palette-primary .button-primary.is-active.button-secondary,.palette-primary .woocommerce .button-primary.is-active.alt.button,.palette-primary .woocommerce .is-active.alt.button.button-primary,.palette-primary .btn-color-2.is-active.button-primary,.palette-primary .woocommerce .btn-color-2.is-active.button,.palette-primary .woocommerce .is-active.button.button-secondary,.palette-primary .woocommerce .is-active.button.alt,.palette-primary .btn-color-2.button-secondary:active,.palette-primary .woocommerce .button-secondary.alt.button:active,.palette-primary .woocommerce .alt.button.button-secondary:active,.palette-primary .woocommerce .btn-color-2.alt.button:active,.palette-primary .btn-color-2.button-secondary.active,.palette-primary .button-secondary.active,.palette-primary .woocommerce .button-secondary.active.alt.button,.palette-primary .woocommerce .active.alt.button.button-secondary,.palette-primary .btn-color-2.active.button-secondary,.palette-primary .woocommerce .btn-color-2.active.alt.button,.palette-primary .btn-color-2.button-secondary.is-active,.palette-primary .button-secondary.is-active,.palette-primary .woocommerce .button-secondary.is-active.alt.button,.palette-primary .woocommerce .is-active.alt.button.button-secondary,.palette-primary .btn-color-2.is-active.button-secondary,.palette-primary .woocommerce .btn-color-2.is-active.alt.button,.btn-color-2-flat:active,.btn-color-2-flat.active,.btn-color-2-flat.is-active{background-color:#05075b !important;border-color:#05075b;color:#00012d}.btn-color-2:active a,.palette-primary .button-secondary:active a,.palette-primary .woocommerce .alt.button:active a,.btn-color-2.active a,.palette-primary .active.button-secondary a,.palette-primary .woocommerce .active.alt.button a,.btn-color-2.is-active a,.palette-primary .is-active.button-secondary a,.palette-primary .woocommerce .is-active.alt.button a,.palette-primary .btn-color-2.button-primary:active a,.palette-primary .button-primary.button-secondary:active a,.palette-primary .woocommerce .button-primary.alt.button:active a,.palette-primary .woocommerce .alt.button.button-primary:active a,.palette-primary .woocommerce .btn-color-2.button:active a,.palette-primary .woocommerce .button.button-secondary:active a,.palette-primary .woocommerce .button.alt:active a,.palette-primary .btn-color-2.button-primary.active a,.palette-primary .button-primary.active.button-secondary a,.palette-primary .woocommerce .button-primary.active.alt.button a,.palette-primary .woocommerce .active.alt.button.button-primary a,.palette-primary .btn-color-2.active.button-primary a,.palette-primary .woocommerce .btn-color-2.active.button a,.palette-primary .woocommerce .active.button.button-secondary a,.palette-primary .woocommerce .active.button.alt a,.palette-primary .btn-color-2.button-primary.is-active a,.palette-primary .button-primary.is-active.button-secondary a,.palette-primary .woocommerce .button-primary.is-active.alt.button a,.palette-primary .woocommerce .is-active.alt.button.button-primary a,.palette-primary .btn-color-2.is-active.button-primary a,.palette-primary .woocommerce .btn-color-2.is-active.button a,.palette-primary .woocommerce .is-active.button.button-secondary a,.palette-primary .woocommerce .is-active.button.alt a,.palette-primary .btn-color-2.button-secondary:active a,.palette-primary .woocommerce .button-secondary.alt.button:active a,.palette-primary .woocommerce .alt.button.button-secondary:active a,.palette-primary .woocommerce .btn-color-2.alt.button:active a,.palette-primary .btn-color-2.button-secondary.active a,.palette-primary .button-secondary.active a,.palette-primary .woocommerce .button-secondary.active.alt.button a,.palette-primary .woocommerce .active.alt.button.button-secondary a,.palette-primary .btn-color-2.active.button-secondary a,.palette-primary .woocommerce .btn-color-2.active.alt.button a,.palette-primary .btn-color-2.button-secondary.is-active a,.palette-primary .button-secondary.is-active a,.palette-primary .woocommerce .button-secondary.is-active.alt.button a,.palette-primary .woocommerce .is-active.alt.button.button-secondary a,.palette-primary .btn-color-2.is-active.button-secondary a,.palette-primary .woocommerce .btn-color-2.is-active.alt.button a,.btn-color-2-flat:active a,.btn-color-2-flat.active a,.btn-color-2-flat.is-active a{color:var(--color-2-text-contrast)}.btn-border-color-2,.palette-primary .btn-border-color-2.button-primary,.palette-primary .woocommerce .btn-border-color-2.button,.palette-primary .btn-border-color-2.button-secondary,.palette-primary .woocommerce .btn-border-color-2.alt.button,.btn-border-color-2-flat{border-color:#000360 !important}.btn-border-color-2:hover,.btn-border-color-2:focus,.palette-primary .btn-border-color-2.button-primary:hover,.palette-primary .woocommerce .btn-border-color-2.button:hover,.palette-primary .btn-border-color-2.button-primary:focus,.palette-primary .woocommerce .btn-border-color-2.button:focus,.palette-primary .btn-border-color-2.button-secondary:hover,.palette-primary .woocommerce .btn-border-color-2.alt.button:hover,.palette-primary .btn-border-color-2.button-secondary:focus,.palette-primary .woocommerce .btn-border-color-2.alt.button:focus,.btn-border-color-2-flat:hover,.btn-border-color-2-flat:focus{border-color:#000593 !important}.btn-border-color-2:hover.btn-transparent,.btn-border-color-2:focus.btn-transparent,.palette-primary .btn-border-color-2.button-primary:hover.btn-transparent,.palette-primary .btn-border-color-2.btn-transparent.button-primary:hover,.palette-primary .woocommerce .btn-border-color-2.btn-transparent.button:hover,.palette-primary .btn-border-color-2.button-primary:focus.btn-transparent,.palette-primary .btn-border-color-2.btn-transparent.button-primary:focus,.palette-primary .woocommerce .btn-border-color-2.btn-transparent.button:focus,.palette-primary .btn-border-color-2.button-secondary:hover.btn-transparent,.palette-primary .btn-border-color-2.btn-transparent.button-secondary:hover,.palette-primary .woocommerce .btn-border-color-2.btn-transparent.alt.button:hover,.palette-primary .btn-border-color-2.button-secondary:focus.btn-transparent,.palette-primary .btn-border-color-2.btn-transparent.button-secondary:focus,.palette-primary .woocommerce .btn-border-color-2.btn-transparent.alt.button:focus,.btn-border-color-2-flat:hover.btn-transparent,.btn-border-color-2-flat:focus.btn-transparent{background-color:#000593 !important;color:var(--color-2-text-contrast)}.btn-border-color-2:hover.btn-transparent a,.btn-border-color-2:focus.btn-transparent a,.palette-primary .btn-border-color-2.button-primary:hover.btn-transparent a,.palette-primary .btn-border-color-2.btn-transparent.button-primary:hover a,.palette-primary .woocommerce .btn-border-color-2.btn-transparent.button:hover a,.palette-primary .btn-border-color-2.button-primary:focus.btn-transparent a,.palette-primary .btn-border-color-2.btn-transparent.button-primary:focus a,.palette-primary .woocommerce .btn-border-color-2.btn-transparent.button:focus a,.palette-primary .btn-border-color-2.button-secondary:hover.btn-transparent a,.palette-primary .btn-border-color-2.btn-transparent.button-secondary:hover a,.palette-primary .woocommerce .btn-border-color-2.btn-transparent.alt.button:hover a,.palette-primary .btn-border-color-2.button-secondary:focus.btn-transparent a,.palette-primary .btn-border-color-2.btn-transparent.button-secondary:focus a,.palette-primary .woocommerce .btn-border-color-2.btn-transparent.alt.button:focus a,.btn-border-color-2-flat:hover.btn-transparent a,.btn-border-color-2-flat:focus.btn-transparent a{color:var(--color-2-text-contrast)}.btn-border-color-2:active,.btn-border-color-2.active,.btn-border-color-2.is-active,.palette-primary .btn-border-color-2.button-primary:active,.palette-primary .woocommerce .btn-border-color-2.button:active,.palette-primary .btn-border-color-2.button-primary.active,.palette-primary .btn-border-color-2.active.button-primary,.palette-primary .woocommerce .btn-border-color-2.active.button,.palette-primary .btn-border-color-2.button-primary.is-active,.palette-primary .btn-border-color-2.is-active.button-primary,.palette-primary .woocommerce .btn-border-color-2.is-active.button,.palette-primary .btn-border-color-2.button-secondary:active,.palette-primary .woocommerce .btn-border-color-2.alt.button:active,.palette-primary .btn-border-color-2.button-secondary.active,.palette-primary .btn-border-color-2.active.button-secondary,.palette-primary .woocommerce .btn-border-color-2.active.alt.button,.palette-primary .btn-border-color-2.button-secondary.is-active,.palette-primary .btn-border-color-2.is-active.button-secondary,.palette-primary .woocommerce .btn-border-color-2.is-active.alt.button,.btn-border-color-2-flat:active,.btn-border-color-2-flat.active,.btn-border-color-2-flat.is-active{border-color:#05075b !important}.btn-border-color-2:active.btn-transparent,.btn-border-color-2.active.btn-transparent,.btn-border-color-2.is-active.btn-transparent,.palette-primary .btn-border-color-2.button-primary:active.btn-transparent,.palette-primary .btn-border-color-2.btn-transparent.button-primary:active,.palette-primary .woocommerce .btn-border-color-2.btn-transparent.button:active,.palette-primary .btn-border-color-2.button-primary.active.btn-transparent,.palette-primary .btn-border-color-2.active.btn-transparent.button-primary,.palette-primary .woocommerce .btn-border-color-2.active.btn-transparent.button,.palette-primary .btn-border-color-2.button-primary.is-active.btn-transparent,.palette-primary .btn-border-color-2.is-active.btn-transparent.button-primary,.palette-primary .woocommerce .btn-border-color-2.is-active.btn-transparent.button,.palette-primary .btn-border-color-2.button-secondary:active.btn-transparent,.palette-primary .btn-border-color-2.btn-transparent.button-secondary:active,.palette-primary .woocommerce .btn-border-color-2.btn-transparent.alt.button:active,.palette-primary .btn-border-color-2.button-secondary.active.btn-transparent,.palette-primary .btn-border-color-2.active.btn-transparent.button-secondary,.palette-primary .woocommerce .btn-border-color-2.active.btn-transparent.alt.button,.palette-primary .btn-border-color-2.button-secondary.is-active.btn-transparent,.palette-primary .btn-border-color-2.is-active.btn-transparent.button-secondary,.palette-primary .woocommerce .btn-border-color-2.is-active.btn-transparent.alt.button,.btn-border-color-2-flat:active.btn-transparent,.btn-border-color-2-flat.active.btn-transparent,.btn-border-color-2-flat.is-active.btn-transparent{background-color:#000593 !important;color:#00012d}.btn-border-color-2:active.btn-transparent a,.btn-border-color-2.active.btn-transparent a,.btn-border-color-2.is-active.btn-transparent a,.palette-primary .btn-border-color-2.button-primary:active.btn-transparent a,.palette-primary .btn-border-color-2.btn-transparent.button-primary:active a,.palette-primary .woocommerce .btn-border-color-2.btn-transparent.button:active a,.palette-primary .btn-border-color-2.button-primary.active.btn-transparent a,.palette-primary .btn-border-color-2.active.btn-transparent.button-primary a,.palette-primary .woocommerce .btn-border-color-2.active.btn-transparent.button a,.palette-primary .btn-border-color-2.button-primary.is-active.btn-transparent a,.palette-primary .btn-border-color-2.is-active.btn-transparent.button-primary a,.palette-primary .woocommerce .btn-border-color-2.is-active.btn-transparent.button a,.palette-primary .btn-border-color-2.button-secondary:active.btn-transparent a,.palette-primary .btn-border-color-2.btn-transparent.button-secondary:active a,.palette-primary .woocommerce .btn-border-color-2.btn-transparent.alt.button:active a,.palette-primary .btn-border-color-2.button-secondary.active.btn-transparent a,.palette-primary .btn-border-color-2.active.btn-transparent.button-secondary a,.palette-primary .woocommerce .btn-border-color-2.active.btn-transparent.alt.button a,.palette-primary .btn-border-color-2.button-secondary.is-active.btn-transparent a,.palette-primary .btn-border-color-2.is-active.btn-transparent.button-secondary a,.palette-primary .woocommerce .btn-border-color-2.is-active.btn-transparent.alt.button a,.btn-border-color-2-flat:active.btn-transparent a,.btn-border-color-2-flat.active.btn-transparent a,.btn-border-color-2-flat.is-active.btn-transparent a{color:var(--color-2-text-contrast)}.btn-color-3,.palette-primary .btn-color-3.button-primary,.palette-primary .woocommerce .btn-color-3.button,.palette-primary .btn-color-3.button-secondary,.palette-primary .woocommerce .btn-color-3.alt.button,.btn-color-3-flat{background-color:#eee !important;border-color:#eee;color:var(--color-3-text-contrast)}.btn-color-3 a,.palette-primary .btn-color-3.button-primary a,.palette-primary .woocommerce .btn-color-3.button a,.palette-primary .btn-color-3.button-secondary a,.palette-primary .woocommerce .btn-color-3.alt.button a,.btn-color-3-flat a{color:var(--color-3-text-contrast)}.btn-color-3:visited,.palette-primary .btn-color-3.button-primary:visited,.palette-primary .woocommerce .btn-color-3.button:visited,.palette-primary .btn-color-3.button-secondary:visited,.palette-primary .woocommerce .btn-color-3.alt.button:visited,.btn-color-3-flat:visited{color:var(--color-3-text-contrast)}.btn-color-3:visited a,.palette-primary .btn-color-3.button-primary:visited a,.palette-primary .woocommerce .btn-color-3.button:visited a,.palette-primary .btn-color-3.button-secondary:visited a,.palette-primary .woocommerce .btn-color-3.alt.button:visited a,.btn-color-3-flat:visited a{color:var(--color-3-text-contrast)}.btn-color-3:hover,.btn-color-3:focus,.palette-primary .btn-color-3.button-primary:hover,.palette-primary .woocommerce .btn-color-3.button:hover,.palette-primary .btn-color-3.button-primary:focus,.palette-primary .woocommerce .btn-color-3.button:focus,.palette-primary .btn-color-3.button-secondary:hover,.palette-primary .woocommerce .btn-color-3.alt.button:hover,.palette-primary .btn-color-3.button-secondary:focus,.palette-primary .woocommerce .btn-color-3.alt.button:focus,.btn-color-3-flat:hover,.btn-color-3-flat:focus{background-color:white !important;border-color:white;color:var(--color-3-text-contrast)}.btn-color-3:hover a,.btn-color-3:focus a,.palette-primary .btn-color-3.button-primary:hover a,.palette-primary .woocommerce .btn-color-3.button:hover a,.palette-primary .btn-color-3.button-primary:focus a,.palette-primary .woocommerce .btn-color-3.button:focus a,.palette-primary .btn-color-3.button-secondary:hover a,.palette-primary .woocommerce .btn-color-3.alt.button:hover a,.palette-primary .btn-color-3.button-secondary:focus a,.palette-primary .woocommerce .btn-color-3.alt.button:focus a,.btn-color-3-flat:hover a,.btn-color-3-flat:focus a{color:var(--color-3-text-contrast)}.btn-color-3:active,.btn-color-3.active,.btn-color-3.is-active,.palette-primary .btn-color-3.button-primary:active,.palette-primary .woocommerce .btn-color-3.button:active,.palette-primary .btn-color-3.button-primary.active,.palette-primary .btn-color-3.active.button-primary,.palette-primary .woocommerce .btn-color-3.active.button,.palette-primary .btn-color-3.button-primary.is-active,.palette-primary .btn-color-3.is-active.button-primary,.palette-primary .woocommerce .btn-color-3.is-active.button,.palette-primary .btn-color-3.button-secondary:active,.palette-primary .woocommerce .btn-color-3.alt.button:active,.palette-primary .btn-color-3.button-secondary.active,.palette-primary .btn-color-3.active.button-secondary,.palette-primary .woocommerce .btn-color-3.active.alt.button,.palette-primary .btn-color-3.button-secondary.is-active,.palette-primary .btn-color-3.is-active.button-secondary,.palette-primary .woocommerce .btn-color-3.is-active.alt.button,.btn-color-3-flat:active,.btn-color-3-flat.active,.btn-color-3-flat.is-active{background-color:#eee !important;border-color:#eee;color:#d5d5d5}.btn-color-3:active a,.btn-color-3.active a,.btn-color-3.is-active a,.palette-primary .btn-color-3.button-primary:active a,.palette-primary .woocommerce .btn-color-3.button:active a,.palette-primary .btn-color-3.button-primary.active a,.palette-primary .btn-color-3.active.button-primary a,.palette-primary .woocommerce .btn-color-3.active.button a,.palette-primary .btn-color-3.button-primary.is-active a,.palette-primary .btn-color-3.is-active.button-primary a,.palette-primary .woocommerce .btn-color-3.is-active.button a,.palette-primary .btn-color-3.button-secondary:active a,.palette-primary .woocommerce .btn-color-3.alt.button:active a,.palette-primary .btn-color-3.button-secondary.active a,.palette-primary .btn-color-3.active.button-secondary a,.palette-primary .woocommerce .btn-color-3.active.alt.button a,.palette-primary .btn-color-3.button-secondary.is-active a,.palette-primary .btn-color-3.is-active.button-secondary a,.palette-primary .woocommerce .btn-color-3.is-active.alt.button a,.btn-color-3-flat:active a,.btn-color-3-flat.active a,.btn-color-3-flat.is-active a{color:var(--color-3-text-contrast)}.btn-border-color-3,.palette-primary .btn-border-color-3.button-primary,.palette-primary .woocommerce .btn-border-color-3.button,.palette-primary .btn-border-color-3.button-secondary,.palette-primary .woocommerce .btn-border-color-3.alt.button,.btn-border-color-3-flat{border-color:#eee !important}.btn-border-color-3:hover,.btn-border-color-3:focus,.palette-primary .btn-border-color-3.button-primary:hover,.palette-primary .woocommerce .btn-border-color-3.button:hover,.palette-primary .btn-border-color-3.button-primary:focus,.palette-primary .woocommerce .btn-border-color-3.button:focus,.palette-primary .btn-border-color-3.button-secondary:hover,.palette-primary .woocommerce .btn-border-color-3.alt.button:hover,.palette-primary .btn-border-color-3.button-secondary:focus,.palette-primary .woocommerce .btn-border-color-3.alt.button:focus,.btn-border-color-3-flat:hover,.btn-border-color-3-flat:focus{border-color:white !important}.btn-border-color-3:hover.btn-transparent,.btn-border-color-3:focus.btn-transparent,.palette-primary .btn-border-color-3.button-primary:hover.btn-transparent,.palette-primary .btn-border-color-3.btn-transparent.button-primary:hover,.palette-primary .woocommerce .btn-border-color-3.btn-transparent.button:hover,.palette-primary .btn-border-color-3.button-primary:focus.btn-transparent,.palette-primary .btn-border-color-3.btn-transparent.button-primary:focus,.palette-primary .woocommerce .btn-border-color-3.btn-transparent.button:focus,.palette-primary .btn-border-color-3.button-secondary:hover.btn-transparent,.palette-primary .btn-border-color-3.btn-transparent.button-secondary:hover,.palette-primary .woocommerce .btn-border-color-3.btn-transparent.alt.button:hover,.palette-primary .btn-border-color-3.button-secondary:focus.btn-transparent,.palette-primary .btn-border-color-3.btn-transparent.button-secondary:focus,.palette-primary .woocommerce .btn-border-color-3.btn-transparent.alt.button:focus,.btn-border-color-3-flat:hover.btn-transparent,.btn-border-color-3-flat:focus.btn-transparent{background-color:white !important;color:var(--color-3-text-contrast)}.btn-border-color-3:hover.btn-transparent a,.btn-border-color-3:focus.btn-transparent a,.palette-primary .btn-border-color-3.button-primary:hover.btn-transparent a,.palette-primary .btn-border-color-3.btn-transparent.button-primary:hover a,.palette-primary .woocommerce .btn-border-color-3.btn-transparent.button:hover a,.palette-primary .btn-border-color-3.button-primary:focus.btn-transparent a,.palette-primary .btn-border-color-3.btn-transparent.button-primary:focus a,.palette-primary .woocommerce .btn-border-color-3.btn-transparent.button:focus a,.palette-primary .btn-border-color-3.button-secondary:hover.btn-transparent a,.palette-primary .btn-border-color-3.btn-transparent.button-secondary:hover a,.palette-primary .woocommerce .btn-border-color-3.btn-transparent.alt.button:hover a,.palette-primary .btn-border-color-3.button-secondary:focus.btn-transparent a,.palette-primary .btn-border-color-3.btn-transparent.button-secondary:focus a,.palette-primary .woocommerce .btn-border-color-3.btn-transparent.alt.button:focus a,.btn-border-color-3-flat:hover.btn-transparent a,.btn-border-color-3-flat:focus.btn-transparent a{color:var(--color-3-text-contrast)}.btn-border-color-3:active,.btn-border-color-3.active,.btn-border-color-3.is-active,.palette-primary .btn-border-color-3.button-primary:active,.palette-primary .woocommerce .btn-border-color-3.button:active,.palette-primary .btn-border-color-3.button-primary.active,.palette-primary .btn-border-color-3.active.button-primary,.palette-primary .woocommerce .btn-border-color-3.active.button,.palette-primary .btn-border-color-3.button-primary.is-active,.palette-primary .btn-border-color-3.is-active.button-primary,.palette-primary .woocommerce .btn-border-color-3.is-active.button,.palette-primary .btn-border-color-3.button-secondary:active,.palette-primary .woocommerce .btn-border-color-3.alt.button:active,.palette-primary .btn-border-color-3.button-secondary.active,.palette-primary .btn-border-color-3.active.button-secondary,.palette-primary .woocommerce .btn-border-color-3.active.alt.button,.palette-primary .btn-border-color-3.button-secondary.is-active,.palette-primary .btn-border-color-3.is-active.button-secondary,.palette-primary .woocommerce .btn-border-color-3.is-active.alt.button,.btn-border-color-3-flat:active,.btn-border-color-3-flat.active,.btn-border-color-3-flat.is-active{border-color:#eee !important}.btn-border-color-3:active.btn-transparent,.btn-border-color-3.active.btn-transparent,.btn-border-color-3.is-active.btn-transparent,.palette-primary .btn-border-color-3.button-primary:active.btn-transparent,.palette-primary .btn-border-color-3.btn-transparent.button-primary:active,.palette-primary .woocommerce .btn-border-color-3.btn-transparent.button:active,.palette-primary .btn-border-color-3.button-primary.active.btn-transparent,.palette-primary .btn-border-color-3.active.btn-transparent.button-primary,.palette-primary .woocommerce .btn-border-color-3.active.btn-transparent.button,.palette-primary .btn-border-color-3.button-primary.is-active.btn-transparent,.palette-primary .btn-border-color-3.is-active.btn-transparent.button-primary,.palette-primary .woocommerce .btn-border-color-3.is-active.btn-transparent.button,.palette-primary .btn-border-color-3.button-secondary:active.btn-transparent,.palette-primary .btn-border-color-3.btn-transparent.button-secondary:active,.palette-primary .woocommerce .btn-border-color-3.btn-transparent.alt.button:active,.palette-primary .btn-border-color-3.button-secondary.active.btn-transparent,.palette-primary .btn-border-color-3.active.btn-transparent.button-secondary,.palette-primary .woocommerce .btn-border-color-3.active.btn-transparent.alt.button,.palette-primary .btn-border-color-3.button-secondary.is-active.btn-transparent,.palette-primary .btn-border-color-3.is-active.btn-transparent.button-secondary,.palette-primary .woocommerce .btn-border-color-3.is-active.btn-transparent.alt.button,.btn-border-color-3-flat:active.btn-transparent,.btn-border-color-3-flat.active.btn-transparent,.btn-border-color-3-flat.is-active.btn-transparent{background-color:white !important;color:#d5d5d5}.btn-border-color-3:active.btn-transparent a,.btn-border-color-3.active.btn-transparent a,.btn-border-color-3.is-active.btn-transparent a,.palette-primary .btn-border-color-3.button-primary:active.btn-transparent a,.palette-primary .btn-border-color-3.btn-transparent.button-primary:active a,.palette-primary .woocommerce .btn-border-color-3.btn-transparent.button:active a,.palette-primary .btn-border-color-3.button-primary.active.btn-transparent a,.palette-primary .btn-border-color-3.active.btn-transparent.button-primary a,.palette-primary .woocommerce .btn-border-color-3.active.btn-transparent.button a,.palette-primary .btn-border-color-3.button-primary.is-active.btn-transparent a,.palette-primary .btn-border-color-3.is-active.btn-transparent.button-primary a,.palette-primary .woocommerce .btn-border-color-3.is-active.btn-transparent.button a,.palette-primary .btn-border-color-3.button-secondary:active.btn-transparent a,.palette-primary .btn-border-color-3.btn-transparent.button-secondary:active a,.palette-primary .woocommerce .btn-border-color-3.btn-transparent.alt.button:active a,.palette-primary .btn-border-color-3.button-secondary.active.btn-transparent a,.palette-primary .btn-border-color-3.active.btn-transparent.button-secondary a,.palette-primary .woocommerce .btn-border-color-3.active.btn-transparent.alt.button a,.palette-primary .btn-border-color-3.button-secondary.is-active.btn-transparent a,.palette-primary .btn-border-color-3.is-active.btn-transparent.button-secondary a,.palette-primary .woocommerce .btn-border-color-3.is-active.btn-transparent.alt.button a,.btn-border-color-3-flat:active.btn-transparent a,.btn-border-color-3-flat.active.btn-transparent a,.btn-border-color-3-flat.is-active.btn-transparent a{color:var(--color-3-text-contrast)}.btn-color-4,.palette-primary .btn-color-4.button-primary,.palette-primary .woocommerce .btn-color-4.button,.palette-primary .btn-color-4.button-secondary,.palette-primary .woocommerce .btn-color-4.alt.button,.btn-color-4-flat{background-color:#140070 !important;border-color:#140070;color:var(--color-4-text-contrast)}.btn-color-4 a,.palette-primary .btn-color-4.button-primary a,.palette-primary .woocommerce .btn-color-4.button a,.palette-primary .btn-color-4.button-secondary a,.palette-primary .woocommerce .btn-color-4.alt.button a,.btn-color-4-flat a{color:var(--color-4-text-contrast)}.btn-color-4:visited,.palette-primary .btn-color-4.button-primary:visited,.palette-primary .woocommerce .btn-color-4.button:visited,.palette-primary .btn-color-4.button-secondary:visited,.palette-primary .woocommerce .btn-color-4.alt.button:visited,.btn-color-4-flat:visited{color:var(--color-4-text-contrast)}.btn-color-4:visited a,.palette-primary .btn-color-4.button-primary:visited a,.palette-primary .woocommerce .btn-color-4.button:visited a,.palette-primary .btn-color-4.button-secondary:visited a,.palette-primary .woocommerce .btn-color-4.alt.button:visited a,.btn-color-4-flat:visited a{color:var(--color-4-text-contrast)}.btn-color-4:hover,.btn-color-4:focus,.palette-primary .btn-color-4.button-primary:hover,.palette-primary .woocommerce .btn-color-4.button:hover,.palette-primary .btn-color-4.button-primary:focus,.palette-primary .woocommerce .btn-color-4.button:focus,.palette-primary .btn-color-4.button-secondary:hover,.palette-primary .woocommerce .btn-color-4.alt.button:hover,.palette-primary .btn-color-4.button-secondary:focus,.palette-primary .woocommerce .btn-color-4.alt.button:focus,.btn-color-4-flat:hover,.btn-color-4-flat:focus{background-color:#1d00a3 !important;border-color:#1d00a3;color:var(--color-4-text-contrast)}.btn-color-4:hover a,.btn-color-4:focus a,.palette-primary .btn-color-4.button-primary:hover a,.palette-primary .woocommerce .btn-color-4.button:hover a,.palette-primary .btn-color-4.button-primary:focus a,.palette-primary .woocommerce .btn-color-4.button:focus a,.palette-primary .btn-color-4.button-secondary:hover a,.palette-primary .woocommerce .btn-color-4.alt.button:hover a,.palette-primary .btn-color-4.button-secondary:focus a,.palette-primary .woocommerce .btn-color-4.alt.button:focus a,.btn-color-4-flat:hover a,.btn-color-4-flat:focus a{color:var(--color-4-text-contrast)}.btn-color-4:active,.btn-color-4.active,.btn-color-4.is-active,.palette-primary .btn-color-4.button-primary:active,.palette-primary .woocommerce .btn-color-4.button:active,.palette-primary .btn-color-4.button-primary.active,.palette-primary .btn-color-4.active.button-primary,.palette-primary .woocommerce .btn-color-4.active.button,.palette-primary .btn-color-4.button-primary.is-active,.palette-primary .btn-color-4.is-active.button-primary,.palette-primary .woocommerce .btn-color-4.is-active.button,.palette-primary .btn-color-4.button-secondary:active,.palette-primary .woocommerce .btn-color-4.alt.button:active,.palette-primary .btn-color-4.button-secondary.active,.palette-primary .btn-color-4.active.button-secondary,.palette-primary .woocommerce .btn-color-4.active.alt.button,.palette-primary .btn-color-4.button-secondary.is-active,.palette-primary .btn-color-4.is-active.button-secondary,.palette-primary .woocommerce .btn-color-4.is-active.alt.button,.btn-color-4-flat:active,.btn-color-4-flat.active,.btn-color-4-flat.is-active{background-color:#18066a !important;border-color:#18066a;color:#0b003d}.btn-color-4:active a,.btn-color-4.active a,.btn-color-4.is-active a,.palette-primary .btn-color-4.button-primary:active a,.palette-primary .woocommerce .btn-color-4.button:active a,.palette-primary .btn-color-4.button-primary.active a,.palette-primary .btn-color-4.active.button-primary a,.palette-primary .woocommerce .btn-color-4.active.button a,.palette-primary .btn-color-4.button-primary.is-active a,.palette-primary .btn-color-4.is-active.button-primary a,.palette-primary .woocommerce .btn-color-4.is-active.button a,.palette-primary .btn-color-4.button-secondary:active a,.palette-primary .woocommerce .btn-color-4.alt.button:active a,.palette-primary .btn-color-4.button-secondary.active a,.palette-primary .btn-color-4.active.button-secondary a,.palette-primary .woocommerce .btn-color-4.active.alt.button a,.palette-primary .btn-color-4.button-secondary.is-active a,.palette-primary .btn-color-4.is-active.button-secondary a,.palette-primary .woocommerce .btn-color-4.is-active.alt.button a,.btn-color-4-flat:active a,.btn-color-4-flat.active a,.btn-color-4-flat.is-active a{color:var(--color-4-text-contrast)}.btn-border-color-4,.palette-primary .btn-border-color-4.button-primary,.palette-primary .woocommerce .btn-border-color-4.button,.palette-primary .btn-border-color-4.button-secondary,.palette-primary .woocommerce .btn-border-color-4.alt.button,.btn-border-color-4-flat{border-color:#140070 !important}.btn-border-color-4:hover,.btn-border-color-4:focus,.palette-primary .btn-border-color-4.button-primary:hover,.palette-primary .woocommerce .btn-border-color-4.button:hover,.palette-primary .btn-border-color-4.button-primary:focus,.palette-primary .woocommerce .btn-border-color-4.button:focus,.palette-primary .btn-border-color-4.button-secondary:hover,.palette-primary .woocommerce .btn-border-color-4.alt.button:hover,.palette-primary .btn-border-color-4.button-secondary:focus,.palette-primary .woocommerce .btn-border-color-4.alt.button:focus,.btn-border-color-4-flat:hover,.btn-border-color-4-flat:focus{border-color:#1d00a3 !important}.btn-border-color-4:hover.btn-transparent,.btn-border-color-4:focus.btn-transparent,.palette-primary .btn-border-color-4.button-primary:hover.btn-transparent,.palette-primary .btn-border-color-4.btn-transparent.button-primary:hover,.palette-primary .woocommerce .btn-border-color-4.btn-transparent.button:hover,.palette-primary .btn-border-color-4.button-primary:focus.btn-transparent,.palette-primary .btn-border-color-4.btn-transparent.button-primary:focus,.palette-primary .woocommerce .btn-border-color-4.btn-transparent.button:focus,.palette-primary .btn-border-color-4.button-secondary:hover.btn-transparent,.palette-primary .btn-border-color-4.btn-transparent.button-secondary:hover,.palette-primary .woocommerce .btn-border-color-4.btn-transparent.alt.button:hover,.palette-primary .btn-border-color-4.button-secondary:focus.btn-transparent,.palette-primary .btn-border-color-4.btn-transparent.button-secondary:focus,.palette-primary .woocommerce .btn-border-color-4.btn-transparent.alt.button:focus,.btn-border-color-4-flat:hover.btn-transparent,.btn-border-color-4-flat:focus.btn-transparent{background-color:#1d00a3 !important;color:var(--color-4-text-contrast)}.btn-border-color-4:hover.btn-transparent a,.btn-border-color-4:focus.btn-transparent a,.palette-primary .btn-border-color-4.button-primary:hover.btn-transparent a,.palette-primary .btn-border-color-4.btn-transparent.button-primary:hover a,.palette-primary .woocommerce .btn-border-color-4.btn-transparent.button:hover a,.palette-primary .btn-border-color-4.button-primary:focus.btn-transparent a,.palette-primary .btn-border-color-4.btn-transparent.button-primary:focus a,.palette-primary .woocommerce .btn-border-color-4.btn-transparent.button:focus a,.palette-primary .btn-border-color-4.button-secondary:hover.btn-transparent a,.palette-primary .btn-border-color-4.btn-transparent.button-secondary:hover a,.palette-primary .woocommerce .btn-border-color-4.btn-transparent.alt.button:hover a,.palette-primary .btn-border-color-4.button-secondary:focus.btn-transparent a,.palette-primary .btn-border-color-4.btn-transparent.button-secondary:focus a,.palette-primary .woocommerce .btn-border-color-4.btn-transparent.alt.button:focus a,.btn-border-color-4-flat:hover.btn-transparent a,.btn-border-color-4-flat:focus.btn-transparent a{color:var(--color-4-text-contrast)}.btn-border-color-4:active,.btn-border-color-4.active,.btn-border-color-4.is-active,.palette-primary .btn-border-color-4.button-primary:active,.palette-primary .woocommerce .btn-border-color-4.button:active,.palette-primary .btn-border-color-4.button-primary.active,.palette-primary .btn-border-color-4.active.button-primary,.palette-primary .woocommerce .btn-border-color-4.active.button,.palette-primary .btn-border-color-4.button-primary.is-active,.palette-primary .btn-border-color-4.is-active.button-primary,.palette-primary .woocommerce .btn-border-color-4.is-active.button,.palette-primary .btn-border-color-4.button-secondary:active,.palette-primary .woocommerce .btn-border-color-4.alt.button:active,.palette-primary .btn-border-color-4.button-secondary.active,.palette-primary .btn-border-color-4.active.button-secondary,.palette-primary .woocommerce .btn-border-color-4.active.alt.button,.palette-primary .btn-border-color-4.button-secondary.is-active,.palette-primary .btn-border-color-4.is-active.button-secondary,.palette-primary .woocommerce .btn-border-color-4.is-active.alt.button,.btn-border-color-4-flat:active,.btn-border-color-4-flat.active,.btn-border-color-4-flat.is-active{border-color:#18066a !important}.btn-border-color-4:active.btn-transparent,.btn-border-color-4.active.btn-transparent,.btn-border-color-4.is-active.btn-transparent,.palette-primary .btn-border-color-4.button-primary:active.btn-transparent,.palette-primary .btn-border-color-4.btn-transparent.button-primary:active,.palette-primary .woocommerce .btn-border-color-4.btn-transparent.button:active,.palette-primary .btn-border-color-4.button-primary.active.btn-transparent,.palette-primary .btn-border-color-4.active.btn-transparent.button-primary,.palette-primary .woocommerce .btn-border-color-4.active.btn-transparent.button,.palette-primary .btn-border-color-4.button-primary.is-active.btn-transparent,.palette-primary .btn-border-color-4.is-active.btn-transparent.button-primary,.palette-primary .woocommerce .btn-border-color-4.is-active.btn-transparent.button,.palette-primary .btn-border-color-4.button-secondary:active.btn-transparent,.palette-primary .btn-border-color-4.btn-transparent.button-secondary:active,.palette-primary .woocommerce .btn-border-color-4.btn-transparent.alt.button:active,.palette-primary .btn-border-color-4.button-secondary.active.btn-transparent,.palette-primary .btn-border-color-4.active.btn-transparent.button-secondary,.palette-primary .woocommerce .btn-border-color-4.active.btn-transparent.alt.button,.palette-primary .btn-border-color-4.button-secondary.is-active.btn-transparent,.palette-primary .btn-border-color-4.is-active.btn-transparent.button-secondary,.palette-primary .woocommerce .btn-border-color-4.is-active.btn-transparent.alt.button,.btn-border-color-4-flat:active.btn-transparent,.btn-border-color-4-flat.active.btn-transparent,.btn-border-color-4-flat.is-active.btn-transparent{background-color:#1d00a3 !important;color:#0b003d}.btn-border-color-4:active.btn-transparent a,.btn-border-color-4.active.btn-transparent a,.btn-border-color-4.is-active.btn-transparent a,.palette-primary .btn-border-color-4.button-primary:active.btn-transparent a,.palette-primary .btn-border-color-4.btn-transparent.button-primary:active a,.palette-primary .woocommerce .btn-border-color-4.btn-transparent.button:active a,.palette-primary .btn-border-color-4.button-primary.active.btn-transparent a,.palette-primary .btn-border-color-4.active.btn-transparent.button-primary a,.palette-primary .woocommerce .btn-border-color-4.active.btn-transparent.button a,.palette-primary .btn-border-color-4.button-primary.is-active.btn-transparent a,.palette-primary .btn-border-color-4.is-active.btn-transparent.button-primary a,.palette-primary .woocommerce .btn-border-color-4.is-active.btn-transparent.button a,.palette-primary .btn-border-color-4.button-secondary:active.btn-transparent a,.palette-primary .btn-border-color-4.btn-transparent.button-secondary:active a,.palette-primary .woocommerce .btn-border-color-4.btn-transparent.alt.button:active a,.palette-primary .btn-border-color-4.button-secondary.active.btn-transparent a,.palette-primary .btn-border-color-4.active.btn-transparent.button-secondary a,.palette-primary .woocommerce .btn-border-color-4.active.btn-transparent.alt.button a,.palette-primary .btn-border-color-4.button-secondary.is-active.btn-transparent a,.palette-primary .btn-border-color-4.is-active.btn-transparent.button-secondary a,.palette-primary .woocommerce .btn-border-color-4.is-active.btn-transparent.alt.button a,.btn-border-color-4-flat:active.btn-transparent a,.btn-border-color-4-flat.active.btn-transparent a,.btn-border-color-4-flat.is-active.btn-transparent a{color:var(--color-4-text-contrast)}.btn-color-5,.palette-primary .btn-color-5.button-primary,.palette-primary .woocommerce .btn-color-5.button,.palette-primary .btn-color-5.button-secondary,.palette-primary .woocommerce .btn-color-5.alt.button,.btn-color-5-flat{background-color:#01013f !important;border-color:#01013f;color:var(--color-5-text-contrast)}.btn-color-5 a,.palette-primary .btn-color-5.button-primary a,.palette-primary .woocommerce .btn-color-5.button a,.palette-primary .btn-color-5.button-secondary a,.palette-primary .woocommerce .btn-color-5.alt.button a,.btn-color-5-flat a{color:var(--color-5-text-contrast)}.btn-color-5:visited,.palette-primary .btn-color-5.button-primary:visited,.palette-primary .woocommerce .btn-color-5.button:visited,.palette-primary .btn-color-5.button-secondary:visited,.palette-primary .woocommerce .btn-color-5.alt.button:visited,.btn-color-5-flat:visited{color:var(--color-5-text-contrast)}.btn-color-5:visited a,.palette-primary .btn-color-5.button-primary:visited a,.palette-primary .woocommerce .btn-color-5.button:visited a,.palette-primary .btn-color-5.button-secondary:visited a,.palette-primary .woocommerce .btn-color-5.alt.button:visited a,.btn-color-5-flat:visited a{color:var(--color-5-text-contrast)}.btn-color-5:hover,.btn-color-5:focus,.palette-primary .btn-color-5.button-primary:hover,.palette-primary .woocommerce .btn-color-5.button:hover,.palette-primary .btn-color-5.button-primary:focus,.palette-primary .woocommerce .btn-color-5.button:focus,.palette-primary .btn-color-5.button-secondary:hover,.palette-primary .woocommerce .btn-color-5.alt.button:hover,.palette-primary .btn-color-5.button-secondary:focus,.palette-primary .woocommerce .btn-color-5.alt.button:focus,.btn-color-5-flat:hover,.btn-color-5-flat:focus{background-color:#020271 !important;border-color:#020271;color:var(--color-5-text-contrast)}.btn-color-5:hover a,.btn-color-5:focus a,.palette-primary .btn-color-5.button-primary:hover a,.palette-primary .woocommerce .btn-color-5.button:hover a,.palette-primary .btn-color-5.button-primary:focus a,.palette-primary .woocommerce .btn-color-5.button:focus a,.palette-primary .btn-color-5.button-secondary:hover a,.palette-primary .woocommerce .btn-color-5.alt.button:hover a,.palette-primary .btn-color-5.button-secondary:focus a,.palette-primary .woocommerce .btn-color-5.alt.button:focus a,.btn-color-5-flat:hover a,.btn-color-5-flat:focus a{color:var(--color-5-text-contrast)}.btn-color-5:active,.btn-color-5.active,.btn-color-5.is-active,.palette-primary .btn-color-5.button-primary:active,.palette-primary .woocommerce .btn-color-5.button:active,.palette-primary .btn-color-5.button-primary.active,.palette-primary .btn-color-5.active.button-primary,.palette-primary .woocommerce .btn-color-5.active.button,.palette-primary .btn-color-5.button-primary.is-active,.palette-primary .btn-color-5.is-active.button-primary,.palette-primary .woocommerce .btn-color-5.is-active.button,.palette-primary .btn-color-5.button-secondary:active,.palette-primary .woocommerce .btn-color-5.alt.button:active,.palette-primary .btn-color-5.button-secondary.active,.palette-primary .btn-color-5.active.button-secondary,.palette-primary .woocommerce .btn-color-5.active.alt.button,.palette-primary .btn-color-5.button-secondary.is-active,.palette-primary .btn-color-5.is-active.button-secondary,.palette-primary .woocommerce .btn-color-5.is-active.alt.button,.btn-color-5-flat:active,.btn-color-5-flat.active,.btn-color-5-flat.is-active{background-color:#04043c !important;border-color:#04043c;color:#00000d}.btn-color-5:active a,.btn-color-5.active a,.btn-color-5.is-active a,.palette-primary .btn-color-5.button-primary:active a,.palette-primary .woocommerce .btn-color-5.button:active a,.palette-primary .btn-color-5.button-primary.active a,.palette-primary .btn-color-5.active.button-primary a,.palette-primary .woocommerce .btn-color-5.active.button a,.palette-primary .btn-color-5.button-primary.is-active a,.palette-primary .btn-color-5.is-active.button-primary a,.palette-primary .woocommerce .btn-color-5.is-active.button a,.palette-primary .btn-color-5.button-secondary:active a,.palette-primary .woocommerce .btn-color-5.alt.button:active a,.palette-primary .btn-color-5.button-secondary.active a,.palette-primary .btn-color-5.active.button-secondary a,.palette-primary .woocommerce .btn-color-5.active.alt.button a,.palette-primary .btn-color-5.button-secondary.is-active a,.palette-primary .btn-color-5.is-active.button-secondary a,.palette-primary .woocommerce .btn-color-5.is-active.alt.button a,.btn-color-5-flat:active a,.btn-color-5-flat.active a,.btn-color-5-flat.is-active a{color:var(--color-5-text-contrast)}.btn-border-color-5,.palette-primary .btn-border-color-5.button-primary,.palette-primary .woocommerce .btn-border-color-5.button,.palette-primary .btn-border-color-5.button-secondary,.palette-primary .woocommerce .btn-border-color-5.alt.button,.btn-border-color-5-flat{border-color:#01013f !important}.btn-border-color-5:hover,.btn-border-color-5:focus,.palette-primary .btn-border-color-5.button-primary:hover,.palette-primary .woocommerce .btn-border-color-5.button:hover,.palette-primary .btn-border-color-5.button-primary:focus,.palette-primary .woocommerce .btn-border-color-5.button:focus,.palette-primary .btn-border-color-5.button-secondary:hover,.palette-primary .woocommerce .btn-border-color-5.alt.button:hover,.palette-primary .btn-border-color-5.button-secondary:focus,.palette-primary .woocommerce .btn-border-color-5.alt.button:focus,.btn-border-color-5-flat:hover,.btn-border-color-5-flat:focus{border-color:#020271 !important}.btn-border-color-5:hover.btn-transparent,.btn-border-color-5:focus.btn-transparent,.palette-primary .btn-border-color-5.button-primary:hover.btn-transparent,.palette-primary .btn-border-color-5.btn-transparent.button-primary:hover,.palette-primary .woocommerce .btn-border-color-5.btn-transparent.button:hover,.palette-primary .btn-border-color-5.button-primary:focus.btn-transparent,.palette-primary .btn-border-color-5.btn-transparent.button-primary:focus,.palette-primary .woocommerce .btn-border-color-5.btn-transparent.button:focus,.palette-primary .btn-border-color-5.button-secondary:hover.btn-transparent,.palette-primary .btn-border-color-5.btn-transparent.button-secondary:hover,.palette-primary .woocommerce .btn-border-color-5.btn-transparent.alt.button:hover,.palette-primary .btn-border-color-5.button-secondary:focus.btn-transparent,.palette-primary .btn-border-color-5.btn-transparent.button-secondary:focus,.palette-primary .woocommerce .btn-border-color-5.btn-transparent.alt.button:focus,.btn-border-color-5-flat:hover.btn-transparent,.btn-border-color-5-flat:focus.btn-transparent{background-color:#020271 !important;color:var(--color-5-text-contrast)}.btn-border-color-5:hover.btn-transparent a,.btn-border-color-5:focus.btn-transparent a,.palette-primary .btn-border-color-5.button-primary:hover.btn-transparent a,.palette-primary .btn-border-color-5.btn-transparent.button-primary:hover a,.palette-primary .woocommerce .btn-border-color-5.btn-transparent.button:hover a,.palette-primary .btn-border-color-5.button-primary:focus.btn-transparent a,.palette-primary .btn-border-color-5.btn-transparent.button-primary:focus a,.palette-primary .woocommerce .btn-border-color-5.btn-transparent.button:focus a,.palette-primary .btn-border-color-5.button-secondary:hover.btn-transparent a,.palette-primary .btn-border-color-5.btn-transparent.button-secondary:hover a,.palette-primary .woocommerce .btn-border-color-5.btn-transparent.alt.button:hover a,.palette-primary .btn-border-color-5.button-secondary:focus.btn-transparent a,.palette-primary .btn-border-color-5.btn-transparent.button-secondary:focus a,.palette-primary .woocommerce .btn-border-color-5.btn-transparent.alt.button:focus a,.btn-border-color-5-flat:hover.btn-transparent a,.btn-border-color-5-flat:focus.btn-transparent a{color:var(--color-5-text-contrast)}.btn-border-color-5:active,.btn-border-color-5.active,.btn-border-color-5.is-active,.palette-primary .btn-border-color-5.button-primary:active,.palette-primary .woocommerce .btn-border-color-5.button:active,.palette-primary .btn-border-color-5.button-primary.active,.palette-primary .btn-border-color-5.active.button-primary,.palette-primary .woocommerce .btn-border-color-5.active.button,.palette-primary .btn-border-color-5.button-primary.is-active,.palette-primary .btn-border-color-5.is-active.button-primary,.palette-primary .woocommerce .btn-border-color-5.is-active.button,.palette-primary .btn-border-color-5.button-secondary:active,.palette-primary .woocommerce .btn-border-color-5.alt.button:active,.palette-primary .btn-border-color-5.button-secondary.active,.palette-primary .btn-border-color-5.active.button-secondary,.palette-primary .woocommerce .btn-border-color-5.active.alt.button,.palette-primary .btn-border-color-5.button-secondary.is-active,.palette-primary .btn-border-color-5.is-active.button-secondary,.palette-primary .woocommerce .btn-border-color-5.is-active.alt.button,.btn-border-color-5-flat:active,.btn-border-color-5-flat.active,.btn-border-color-5-flat.is-active{border-color:#04043c !important}.btn-border-color-5:active.btn-transparent,.btn-border-color-5.active.btn-transparent,.btn-border-color-5.is-active.btn-transparent,.palette-primary .btn-border-color-5.button-primary:active.btn-transparent,.palette-primary .btn-border-color-5.btn-transparent.button-primary:active,.palette-primary .woocommerce .btn-border-color-5.btn-transparent.button:active,.palette-primary .btn-border-color-5.button-primary.active.btn-transparent,.palette-primary .btn-border-color-5.active.btn-transparent.button-primary,.palette-primary .woocommerce .btn-border-color-5.active.btn-transparent.button,.palette-primary .btn-border-color-5.button-primary.is-active.btn-transparent,.palette-primary .btn-border-color-5.is-active.btn-transparent.button-primary,.palette-primary .woocommerce .btn-border-color-5.is-active.btn-transparent.button,.palette-primary .btn-border-color-5.button-secondary:active.btn-transparent,.palette-primary .btn-border-color-5.btn-transparent.button-secondary:active,.palette-primary .woocommerce .btn-border-color-5.btn-transparent.alt.button:active,.palette-primary .btn-border-color-5.button-secondary.active.btn-transparent,.palette-primary .btn-border-color-5.active.btn-transparent.button-secondary,.palette-primary .woocommerce .btn-border-color-5.active.btn-transparent.alt.button,.palette-primary .btn-border-color-5.button-secondary.is-active.btn-transparent,.palette-primary .btn-border-color-5.is-active.btn-transparent.button-secondary,.palette-primary .woocommerce .btn-border-color-5.is-active.btn-transparent.alt.button,.btn-border-color-5-flat:active.btn-transparent,.btn-border-color-5-flat.active.btn-transparent,.btn-border-color-5-flat.is-active.btn-transparent{background-color:#020271 !important;color:#00000d}.btn-border-color-5:active.btn-transparent a,.btn-border-color-5.active.btn-transparent a,.btn-border-color-5.is-active.btn-transparent a,.palette-primary .btn-border-color-5.button-primary:active.btn-transparent a,.palette-primary .btn-border-color-5.btn-transparent.button-primary:active a,.palette-primary .woocommerce .btn-border-color-5.btn-transparent.button:active a,.palette-primary .btn-border-color-5.button-primary.active.btn-transparent a,.palette-primary .btn-border-color-5.active.btn-transparent.button-primary a,.palette-primary .woocommerce .btn-border-color-5.active.btn-transparent.button a,.palette-primary .btn-border-color-5.button-primary.is-active.btn-transparent a,.palette-primary .btn-border-color-5.is-active.btn-transparent.button-primary a,.palette-primary .woocommerce .btn-border-color-5.is-active.btn-transparent.button a,.palette-primary .btn-border-color-5.button-secondary:active.btn-transparent a,.palette-primary .btn-border-color-5.btn-transparent.button-secondary:active a,.palette-primary .woocommerce .btn-border-color-5.btn-transparent.alt.button:active a,.palette-primary .btn-border-color-5.button-secondary.active.btn-transparent a,.palette-primary .btn-border-color-5.active.btn-transparent.button-secondary a,.palette-primary .woocommerce .btn-border-color-5.active.btn-transparent.alt.button a,.palette-primary .btn-border-color-5.button-secondary.is-active.btn-transparent a,.palette-primary .btn-border-color-5.is-active.btn-transparent.button-secondary a,.palette-primary .woocommerce .btn-border-color-5.is-active.btn-transparent.alt.button a,.btn-border-color-5-flat:active.btn-transparent a,.btn-border-color-5-flat.active.btn-transparent a,.btn-border-color-5-flat.is-active.btn-transparent a{color:var(--color-5-text-contrast)}.btn-neutral-color,.palette-primary .btn-neutral-color.button-primary,.palette-primary .woocommerce .btn-neutral-color.button,.palette-primary .btn-neutral-color.button-secondary,.palette-primary .woocommerce .btn-neutral-color.alt.button,.btn-neutral-color-flat{background-color:#eee !important;border-color:#eee;color:var(--color-neutral-text-contrast)}.btn-neutral-color a,.palette-primary .btn-neutral-color.button-primary a,.palette-primary .woocommerce .btn-neutral-color.button a,.palette-primary .btn-neutral-color.button-secondary a,.palette-primary .woocommerce .btn-neutral-color.alt.button a,.btn-neutral-color-flat a{color:var(--color-neutral-text-contrast)}.btn-neutral-color:visited,.palette-primary .btn-neutral-color.button-primary:visited,.palette-primary .woocommerce .btn-neutral-color.button:visited,.palette-primary .btn-neutral-color.button-secondary:visited,.palette-primary .woocommerce .btn-neutral-color.alt.button:visited,.btn-neutral-color-flat:visited{color:var(--color-neutral-text-contrast)}.btn-neutral-color:visited a,.palette-primary .btn-neutral-color.button-primary:visited a,.palette-primary .woocommerce .btn-neutral-color.button:visited a,.palette-primary .btn-neutral-color.button-secondary:visited a,.palette-primary .woocommerce .btn-neutral-color.alt.button:visited a,.btn-neutral-color-flat:visited a{color:var(--color-neutral-text-contrast)}.btn-neutral-color:hover,.btn-neutral-color:focus,.palette-primary .btn-neutral-color.button-primary:hover,.palette-primary .woocommerce .btn-neutral-color.button:hover,.palette-primary .btn-neutral-color.button-primary:focus,.palette-primary .woocommerce .btn-neutral-color.button:focus,.palette-primary .btn-neutral-color.button-secondary:hover,.palette-primary .woocommerce .btn-neutral-color.alt.button:hover,.palette-primary .btn-neutral-color.button-secondary:focus,.palette-primary .woocommerce .btn-neutral-color.alt.button:focus,.btn-neutral-color-flat:hover,.btn-neutral-color-flat:focus{background-color:white !important;border-color:white;color:var(--color-neutral-text-contrast)}.btn-neutral-color:hover a,.btn-neutral-color:focus a,.palette-primary .btn-neutral-color.button-primary:hover a,.palette-primary .woocommerce .btn-neutral-color.button:hover a,.palette-primary .btn-neutral-color.button-primary:focus a,.palette-primary .woocommerce .btn-neutral-color.button:focus a,.palette-primary .btn-neutral-color.button-secondary:hover a,.palette-primary .woocommerce .btn-neutral-color.alt.button:hover a,.palette-primary .btn-neutral-color.button-secondary:focus a,.palette-primary .woocommerce .btn-neutral-color.alt.button:focus a,.btn-neutral-color-flat:hover a,.btn-neutral-color-flat:focus a{color:var(--color-neutral-text-contrast)}.btn-neutral-color:active,.btn-neutral-color.active,.btn-neutral-color.is-active,.palette-primary .btn-neutral-color.button-primary:active,.palette-primary .woocommerce .btn-neutral-color.button:active,.palette-primary .btn-neutral-color.button-primary.active,.palette-primary .btn-neutral-color.active.button-primary,.palette-primary .woocommerce .btn-neutral-color.active.button,.palette-primary .btn-neutral-color.button-primary.is-active,.palette-primary .btn-neutral-color.is-active.button-primary,.palette-primary .woocommerce .btn-neutral-color.is-active.button,.palette-primary .btn-neutral-color.button-secondary:active,.palette-primary .woocommerce .btn-neutral-color.alt.button:active,.palette-primary .btn-neutral-color.button-secondary.active,.palette-primary .btn-neutral-color.active.button-secondary,.palette-primary .woocommerce .btn-neutral-color.active.alt.button,.palette-primary .btn-neutral-color.button-secondary.is-active,.palette-primary .btn-neutral-color.is-active.button-secondary,.palette-primary .woocommerce .btn-neutral-color.is-active.alt.button,.btn-neutral-color-flat:active,.btn-neutral-color-flat.active,.btn-neutral-color-flat.is-active{background-color:#eee !important;border-color:#eee;color:#d5d5d5}.btn-neutral-color:active a,.btn-neutral-color.active a,.btn-neutral-color.is-active a,.palette-primary .btn-neutral-color.button-primary:active a,.palette-primary .woocommerce .btn-neutral-color.button:active a,.palette-primary .btn-neutral-color.button-primary.active a,.palette-primary .btn-neutral-color.active.button-primary a,.palette-primary .woocommerce .btn-neutral-color.active.button a,.palette-primary .btn-neutral-color.button-primary.is-active a,.palette-primary .btn-neutral-color.is-active.button-primary a,.palette-primary .woocommerce .btn-neutral-color.is-active.button a,.palette-primary .btn-neutral-color.button-secondary:active a,.palette-primary .woocommerce .btn-neutral-color.alt.button:active a,.palette-primary .btn-neutral-color.button-secondary.active a,.palette-primary .btn-neutral-color.active.button-secondary a,.palette-primary .woocommerce .btn-neutral-color.active.alt.button a,.palette-primary .btn-neutral-color.button-secondary.is-active a,.palette-primary .btn-neutral-color.is-active.button-secondary a,.palette-primary .woocommerce .btn-neutral-color.is-active.alt.button a,.btn-neutral-color-flat:active a,.btn-neutral-color-flat.active a,.btn-neutral-color-flat.is-active a{color:var(--color-neutral-text-contrast)}.btn-border-neutral-color,.palette-primary .btn-border-neutral-color.button-primary,.palette-primary .woocommerce .btn-border-neutral-color.button,.palette-primary .btn-border-neutral-color.button-secondary,.palette-primary .woocommerce .btn-border-neutral-color.alt.button,.btn-border-neutral-color-flat{border-color:#eee !important}.btn-border-neutral-color:hover,.btn-border-neutral-color:focus,.palette-primary .btn-border-neutral-color.button-primary:hover,.palette-primary .woocommerce .btn-border-neutral-color.button:hover,.palette-primary .btn-border-neutral-color.button-primary:focus,.palette-primary .woocommerce .btn-border-neutral-color.button:focus,.palette-primary .btn-border-neutral-color.button-secondary:hover,.palette-primary .woocommerce .btn-border-neutral-color.alt.button:hover,.palette-primary .btn-border-neutral-color.button-secondary:focus,.palette-primary .woocommerce .btn-border-neutral-color.alt.button:focus,.btn-border-neutral-color-flat:hover,.btn-border-neutral-color-flat:focus{border-color:white !important}.btn-border-neutral-color:hover.btn-transparent,.btn-border-neutral-color:focus.btn-transparent,.palette-primary .btn-border-neutral-color.button-primary:hover.btn-transparent,.palette-primary .btn-border-neutral-color.btn-transparent.button-primary:hover,.palette-primary .woocommerce .btn-border-neutral-color.btn-transparent.button:hover,.palette-primary .btn-border-neutral-color.button-primary:focus.btn-transparent,.palette-primary .btn-border-neutral-color.btn-transparent.button-primary:focus,.palette-primary .woocommerce .btn-border-neutral-color.btn-transparent.button:focus,.palette-primary .btn-border-neutral-color.button-secondary:hover.btn-transparent,.palette-primary .btn-border-neutral-color.btn-transparent.button-secondary:hover,.palette-primary .woocommerce .btn-border-neutral-color.btn-transparent.alt.button:hover,.palette-primary .btn-border-neutral-color.button-secondary:focus.btn-transparent,.palette-primary .btn-border-neutral-color.btn-transparent.button-secondary:focus,.palette-primary .woocommerce .btn-border-neutral-color.btn-transparent.alt.button:focus,.btn-border-neutral-color-flat:hover.btn-transparent,.btn-border-neutral-color-flat:focus.btn-transparent{background-color:white !important;color:var(--color-neutral-text-contrast)}.btn-border-neutral-color:hover.btn-transparent a,.btn-border-neutral-color:focus.btn-transparent a,.palette-primary .btn-border-neutral-color.button-primary:hover.btn-transparent a,.palette-primary .btn-border-neutral-color.btn-transparent.button-primary:hover a,.palette-primary .woocommerce .btn-border-neutral-color.btn-transparent.button:hover a,.palette-primary .btn-border-neutral-color.button-primary:focus.btn-transparent a,.palette-primary .btn-border-neutral-color.btn-transparent.button-primary:focus a,.palette-primary .woocommerce .btn-border-neutral-color.btn-transparent.button:focus a,.palette-primary .btn-border-neutral-color.button-secondary:hover.btn-transparent a,.palette-primary .btn-border-neutral-color.btn-transparent.button-secondary:hover a,.palette-primary .woocommerce .btn-border-neutral-color.btn-transparent.alt.button:hover a,.palette-primary .btn-border-neutral-color.button-secondary:focus.btn-transparent a,.palette-primary .btn-border-neutral-color.btn-transparent.button-secondary:focus a,.palette-primary .woocommerce .btn-border-neutral-color.btn-transparent.alt.button:focus a,.btn-border-neutral-color-flat:hover.btn-transparent a,.btn-border-neutral-color-flat:focus.btn-transparent a{color:var(--color-neutral-text-contrast)}.btn-border-neutral-color:active,.btn-border-neutral-color.active,.btn-border-neutral-color.is-active,.palette-primary .btn-border-neutral-color.button-primary:active,.palette-primary .woocommerce .btn-border-neutral-color.button:active,.palette-primary .btn-border-neutral-color.button-primary.active,.palette-primary .btn-border-neutral-color.active.button-primary,.palette-primary .woocommerce .btn-border-neutral-color.active.button,.palette-primary .btn-border-neutral-color.button-primary.is-active,.palette-primary .btn-border-neutral-color.is-active.button-primary,.palette-primary .woocommerce .btn-border-neutral-color.is-active.button,.palette-primary .btn-border-neutral-color.button-secondary:active,.palette-primary .woocommerce .btn-border-neutral-color.alt.button:active,.palette-primary .btn-border-neutral-color.button-secondary.active,.palette-primary .btn-border-neutral-color.active.button-secondary,.palette-primary .woocommerce .btn-border-neutral-color.active.alt.button,.palette-primary .btn-border-neutral-color.button-secondary.is-active,.palette-primary .btn-border-neutral-color.is-active.button-secondary,.palette-primary .woocommerce .btn-border-neutral-color.is-active.alt.button,.btn-border-neutral-color-flat:active,.btn-border-neutral-color-flat.active,.btn-border-neutral-color-flat.is-active{border-color:#eee !important}.btn-border-neutral-color:active.btn-transparent,.btn-border-neutral-color.active.btn-transparent,.btn-border-neutral-color.is-active.btn-transparent,.palette-primary .btn-border-neutral-color.button-primary:active.btn-transparent,.palette-primary .btn-border-neutral-color.btn-transparent.button-primary:active,.palette-primary .woocommerce .btn-border-neutral-color.btn-transparent.button:active,.palette-primary .btn-border-neutral-color.button-primary.active.btn-transparent,.palette-primary .btn-border-neutral-color.active.btn-transparent.button-primary,.palette-primary .woocommerce .btn-border-neutral-color.active.btn-transparent.button,.palette-primary .btn-border-neutral-color.button-primary.is-active.btn-transparent,.palette-primary .btn-border-neutral-color.is-active.btn-transparent.button-primary,.palette-primary .woocommerce .btn-border-neutral-color.is-active.btn-transparent.button,.palette-primary .btn-border-neutral-color.button-secondary:active.btn-transparent,.palette-primary .btn-border-neutral-color.btn-transparent.button-secondary:active,.palette-primary .woocommerce .btn-border-neutral-color.btn-transparent.alt.button:active,.palette-primary .btn-border-neutral-color.button-secondary.active.btn-transparent,.palette-primary .btn-border-neutral-color.active.btn-transparent.button-secondary,.palette-primary .woocommerce .btn-border-neutral-color.active.btn-transparent.alt.button,.palette-primary .btn-border-neutral-color.button-secondary.is-active.btn-transparent,.palette-primary .btn-border-neutral-color.is-active.btn-transparent.button-secondary,.palette-primary .woocommerce .btn-border-neutral-color.is-active.btn-transparent.alt.button,.btn-border-neutral-color-flat:active.btn-transparent,.btn-border-neutral-color-flat.active.btn-transparent,.btn-border-neutral-color-flat.is-active.btn-transparent{background-color:white !important;color:#d5d5d5}.btn-border-neutral-color:active.btn-transparent a,.btn-border-neutral-color.active.btn-transparent a,.btn-border-neutral-color.is-active.btn-transparent a,.palette-primary .btn-border-neutral-color.button-primary:active.btn-transparent a,.palette-primary .btn-border-neutral-color.btn-transparent.button-primary:active a,.palette-primary .woocommerce .btn-border-neutral-color.btn-transparent.button:active a,.palette-primary .btn-border-neutral-color.button-primary.active.btn-transparent a,.palette-primary .btn-border-neutral-color.active.btn-transparent.button-primary a,.palette-primary .woocommerce .btn-border-neutral-color.active.btn-transparent.button a,.palette-primary .btn-border-neutral-color.button-primary.is-active.btn-transparent a,.palette-primary .btn-border-neutral-color.is-active.btn-transparent.button-primary a,.palette-primary .woocommerce .btn-border-neutral-color.is-active.btn-transparent.button a,.palette-primary .btn-border-neutral-color.button-secondary:active.btn-transparent a,.palette-primary .btn-border-neutral-color.btn-transparent.button-secondary:active a,.palette-primary .woocommerce .btn-border-neutral-color.btn-transparent.alt.button:active a,.palette-primary .btn-border-neutral-color.button-secondary.active.btn-transparent a,.palette-primary .btn-border-neutral-color.active.btn-transparent.button-secondary a,.palette-primary .woocommerce .btn-border-neutral-color.active.btn-transparent.alt.button a,.palette-primary .btn-border-neutral-color.button-secondary.is-active.btn-transparent a,.palette-primary .btn-border-neutral-color.is-active.btn-transparent.button-secondary a,.palette-primary .woocommerce .btn-border-neutral-color.is-active.btn-transparent.alt.button a,.btn-border-neutral-color-flat:active.btn-transparent a,.btn-border-neutral-color-flat.active.btn-transparent a,.btn-border-neutral-color-flat.is-active.btn-transparent a{color:var(--color-neutral-text-contrast)}.palette-primary .color1-background-alpha{background-color:rgba(0, 167, 225, 0.7)}.palette-primary .color2-background-alpha{background-color:rgba(0, 3, 96, 0.7)}.palette-primary .color3-background-alpha{background-color:rgba(238, 238, 238, 0.7)}.palette-primary .color4-background-alpha{background-color:rgba(20, 0, 112, 0.7)}.palette-primary .color5-background-alpha{background-color:rgba(1, 1, 63, 0.7)}.palette-primary .boldgrid-shortcode .bgc-single-article{background-color:#eee;color:#333333}.palette-primary .bgc-single-image .date{background-color:rgba(0, 167, 225, 0.7);color:#ffffff}.palette-primary .bgc-single-image .image-opacity{background-color:rgba(0, 3, 96, 0.3)}\";s:22:\"boldgrid_palette_class\";s:15:\"palette-primary\";s:13:\"bgtfw_version\";s:6:\"2.13.3\";s:20:\"force_scss_recompile\";a:2:{s:6:\"active\";b:0;s:7:\"staging\";b:1;}s:18:\"custom_css_post_id\";i:-1;s:12:\"sidebar_meta\";a:9:{s:8:\"header-1\";a:3:{s:16:\"background_color\";s:30:\"color-neutral:rgb(238,238,238)\";s:14:\"headings_color\";s:19:\"color-2:rgb(0,3,96)\";s:11:\"links_color\";s:22:\"color-1:rgb(0,167,225)\";}s:8:\"header-2\";a:3:{s:16:\"background_color\";s:30:\"color-neutral:rgb(238,238,238)\";s:14:\"headings_color\";s:19:\"color-2:rgb(0,3,96)\";s:11:\"links_color\";s:22:\"color-1:rgb(0,167,225)\";}s:8:\"header-3\";a:3:{s:16:\"background_color\";s:30:\"color-neutral:rgb(238,238,238)\";s:14:\"headings_color\";s:19:\"color-2:rgb(0,3,96)\";s:11:\"links_color\";s:22:\"color-1:rgb(0,167,225)\";}s:8:\"header-4\";a:3:{s:16:\"background_color\";s:30:\"color-neutral:rgb(238,238,238)\";s:14:\"headings_color\";s:19:\"color-2:rgb(0,3,96)\";s:11:\"links_color\";s:22:\"color-1:rgb(0,167,225)\";}s:8:\"footer-1\";a:3:{s:16:\"background_color\";s:19:\"color-2:rgb(0,3,96)\";s:14:\"headings_color\";s:22:\"color-1:rgb(0,167,225)\";s:11:\"links_color\";s:21:\"color-4:rgb(20,0,112)\";}s:8:\"footer-2\";a:3:{s:16:\"background_color\";s:19:\"color-2:rgb(0,3,96)\";s:14:\"headings_color\";s:22:\"color-1:rgb(0,167,225)\";s:11:\"links_color\";s:21:\"color-4:rgb(20,0,112)\";}s:8:\"footer-3\";a:3:{s:16:\"background_color\";s:19:\"color-2:rgb(0,3,96)\";s:14:\"headings_color\";s:22:\"color-1:rgb(0,167,225)\";s:11:\"links_color\";s:21:\"color-4:rgb(20,0,112)\";}s:8:\"footer-4\";a:3:{s:16:\"background_color\";s:19:\"color-2:rgb(0,3,96)\";s:14:\"headings_color\";s:22:\"color-1:rgb(0,167,225)\";s:11:\"links_color\";s:21:\"color-4:rgb(20,0,112)\";}s:15:\"primary-sidebar\";a:3:{s:16:\"background_color\";s:21:\"color-4:rgb(20,0,112)\";s:14:\"headings_color\";s:30:\"color-neutral:rgb(238,238,238)\";s:11:\"links_color\";s:22:\"color-1:rgb(0,167,225)\";}}s:25:\"boldgrid_background_color\";s:21:\"color-4:rgb(20,0,112)\";s:30:\"bgtfw_background_overlay_color\";s:22:\"color-1:rgb(0,167,225)\";s:25:\"bgtfw_header_border_color\";s:22:\"color-1:rgb(0,167,225)\";s:25:\"bgtfw_footer_border_color\";s:22:\"color-1:rgb(0,167,225)\";s:21:\"bgtfw_pages_container\";s:0:\"\";s:27:\"bgtfw_posts_tags_link_color\";s:22:\"color-1:rgb(0,167,225)\";s:27:\"bgtfw_posts_cats_link_color\";s:22:\"color-1:rgb(0,167,225)\";s:33:\"bgtfw_posts_navigation_link_color\";s:22:\"color-1:rgb(0,167,225)\";s:20:\"bgtfw_headings_color\";s:19:\"color-2:rgb(0,3,96)\";s:19:\"bgtfw_tagline_color\";s:30:\"color-neutral:rgb(238,238,238)\";s:18:\"bgtfw_header_color\";s:21:\"color-4:rgb(20,0,112)\";s:22:\"bgtfw_site_title_color\";s:30:\"color-neutral:rgb(238,238,238)\";s:35:\"bgtfw_global_title_background_color\";s:21:\"color-4:rgb(20,0,112)\";s:24:\"bgtfw_global_title_color\";s:30:\"color-neutral:rgb(238,238,238)\";s:21:\"bgtfw_body_link_color\";s:22:\"color-1:rgb(0,167,225)\";s:26:\"bgtfw_header_overlay_color\";s:22:\"color-1:rgb(0,167,225)\";s:18:\"bgtfw_footer_color\";s:19:\"color-5:rgb(1,1,63)\";s:18:\"bgtfw_footer_links\";s:19:\"color-5:rgb(1,1,63)\";s:31:\"bgtfw_menu_hamburger_main_color\";s:22:\"color-1:rgb(0,167,225)\";s:28:\"bgtfw_menu_border_color_main\";s:24:\"color-3:rgb(238,238,238)\";s:34:\"bgtfw_menu_items_border_color_main\";s:24:\"color-3:rgb(238,238,238)\";s:33:\"bgtfw_menu_items_hover_color_main\";s:21:\"color-4:rgb(20,0,112)\";s:38:\"bgtfw_menu_items_hover_background_main\";s:22:\"color-1:rgb(0,167,225)\";s:32:\"bgtfw_menu_items_link_color_main\";s:30:\"color-neutral:rgb(238,238,238)\";s:39:\"bgtfw_menu_items_active_link_color_main\";s:22:\"color-1:rgb(0,167,225)\";s:46:\"bgtfw_menu_items_active_link_border_color_main\";s:24:\"color-3:rgb(238,238,238)\";s:23:\"bgtfw_blog_border_color\";s:22:\"color-1:rgb(0,167,225)\";s:34:\"bgtfw_blog_header_background_color\";s:30:\"color-neutral:rgb(238,238,238)\";s:32:\"bgtfw_blog_post_background_color\";s:30:\"color-neutral:rgb(238,238,238)\";s:34:\"bgtfw_blog_post_header_title_color\";s:19:\"color-2:rgb(0,3,96)\";s:38:\"bgtfw_blog_post_header_date_link_color\";s:22:\"color-1:rgb(0,167,225)\";s:40:\"bgtfw_blog_post_header_byline_link_color\";s:22:\"color-1:rgb(0,167,225)\";s:31:\"bgtfw_blog_post_tags_link_color\";s:22:\"color-1:rgb(0,167,225)\";s:31:\"bgtfw_blog_post_cats_link_color\";s:22:\"color-1:rgb(0,167,225)\";s:35:\"bgtfw_blog_post_comments_link_color\";s:22:\"color-1:rgb(0,167,225)\";s:35:\"bgtfw_blog_post_readmore_link_color\";s:22:\"color-1:rgb(0,167,225)\";s:34:\"bgtfw_menu_items_link_color_social\";s:22:\"color-1:rgb(0,167,225)\";s:35:\"bgtfw_menu_items_hover_color_social\";s:24:\"color-3:rgb(238,238,238)\";s:41:\"bgtfw_menu_items_active_link_color_social\";s:24:\"color-3:rgb(238,238,238)\";s:36:\"bgtfw_menu_hamburger_secondary_color\";s:22:\"color-1:rgb(0,167,225)\";s:35:\"bgtfw_menu_hamburger_tertiary_color\";s:22:\"color-1:rgb(0,167,225)\";s:37:\"bgtfw_menu_hamburger_quaternary_color\";s:22:\"color-1:rgb(0,167,225)\";s:33:\"bgtfw_menu_hamburger_social_color\";s:22:\"color-1:rgb(0,167,225)\";s:38:\"bgtfw_menu_hamburger_sticky-main_color\";s:22:\"color-1:rgb(0,167,225)\";s:43:\"bgtfw_menu_hamburger_sticky-secondary_color\";s:22:\"color-1:rgb(0,167,225)\";s:42:\"bgtfw_menu_hamburger_sticky-tertiary_color\";s:22:\"color-1:rgb(0,167,225)\";s:44:\"bgtfw_menu_hamburger_sticky-quaternary_color\";s:22:\"color-1:rgb(0,167,225)\";s:40:\"bgtfw_menu_hamburger_sticky-social_color\";s:22:\"color-1:rgb(0,167,225)\";s:33:\"bgtfw_menu_border_color_secondary\";s:24:\"color-3:rgb(238,238,238)\";s:32:\"bgtfw_menu_border_color_tertiary\";s:24:\"color-3:rgb(238,238,238)\";s:34:\"bgtfw_menu_border_color_quaternary\";s:24:\"color-3:rgb(238,238,238)\";s:30:\"bgtfw_menu_border_color_social\";s:24:\"color-3:rgb(238,238,238)\";s:35:\"bgtfw_menu_border_color_sticky-main\";s:24:\"color-3:rgb(238,238,238)\";s:40:\"bgtfw_menu_border_color_sticky-secondary\";s:24:\"color-3:rgb(238,238,238)\";s:39:\"bgtfw_menu_border_color_sticky-tertiary\";s:24:\"color-3:rgb(238,238,238)\";s:41:\"bgtfw_menu_border_color_sticky-quaternary\";s:24:\"color-3:rgb(238,238,238)\";s:37:\"bgtfw_menu_border_color_sticky-social\";s:24:\"color-3:rgb(238,238,238)\";s:39:\"bgtfw_menu_items_border_color_secondary\";s:24:\"color-3:rgb(238,238,238)\";s:38:\"bgtfw_menu_items_border_color_tertiary\";s:24:\"color-3:rgb(238,238,238)\";s:40:\"bgtfw_menu_items_border_color_quaternary\";s:24:\"color-3:rgb(238,238,238)\";s:36:\"bgtfw_menu_items_border_color_social\";s:24:\"color-3:rgb(238,238,238)\";s:41:\"bgtfw_menu_items_border_color_sticky-main\";s:24:\"color-3:rgb(238,238,238)\";s:46:\"bgtfw_menu_items_border_color_sticky-secondary\";s:24:\"color-3:rgb(238,238,238)\";s:45:\"bgtfw_menu_items_border_color_sticky-tertiary\";s:24:\"color-3:rgb(238,238,238)\";s:47:\"bgtfw_menu_items_border_color_sticky-quaternary\";s:24:\"color-3:rgb(238,238,238)\";s:43:\"bgtfw_menu_items_border_color_sticky-social\";s:24:\"color-3:rgb(238,238,238)\";s:38:\"bgtfw_menu_items_hover_color_secondary\";s:22:\"color-1:rgb(0,167,225)\";s:37:\"bgtfw_menu_items_hover_color_tertiary\";s:22:\"color-1:rgb(0,167,225)\";s:39:\"bgtfw_menu_items_hover_color_quaternary\";s:22:\"color-1:rgb(0,167,225)\";s:40:\"bgtfw_menu_items_hover_color_sticky-main\";s:22:\"color-1:rgb(0,167,225)\";s:45:\"bgtfw_menu_items_hover_color_sticky-secondary\";s:22:\"color-1:rgb(0,167,225)\";s:44:\"bgtfw_menu_items_hover_color_sticky-tertiary\";s:22:\"color-1:rgb(0,167,225)\";s:46:\"bgtfw_menu_items_hover_color_sticky-quaternary\";s:22:\"color-1:rgb(0,167,225)\";s:42:\"bgtfw_menu_items_hover_color_sticky-social\";s:22:\"color-1:rgb(0,167,225)\";s:43:\"bgtfw_menu_items_hover_background_secondary\";s:24:\"color-3:rgb(238,238,238)\";s:42:\"bgtfw_menu_items_hover_background_tertiary\";s:24:\"color-3:rgb(238,238,238)\";s:44:\"bgtfw_menu_items_hover_background_quaternary\";s:24:\"color-3:rgb(238,238,238)\";s:40:\"bgtfw_menu_items_hover_background_social\";s:24:\"color-3:rgb(238,238,238)\";s:45:\"bgtfw_menu_items_hover_background_sticky-main\";s:24:\"color-3:rgb(238,238,238)\";s:50:\"bgtfw_menu_items_hover_background_sticky-secondary\";s:24:\"color-3:rgb(238,238,238)\";s:49:\"bgtfw_menu_items_hover_background_sticky-tertiary\";s:24:\"color-3:rgb(238,238,238)\";s:51:\"bgtfw_menu_items_hover_background_sticky-quaternary\";s:24:\"color-3:rgb(238,238,238)\";s:47:\"bgtfw_menu_items_hover_background_sticky-social\";s:24:\"color-3:rgb(238,238,238)\";s:37:\"bgtfw_menu_items_link_color_secondary\";s:19:\"color-2:rgb(0,3,96)\";s:36:\"bgtfw_menu_items_link_color_tertiary\";s:19:\"color-2:rgb(0,3,96)\";s:38:\"bgtfw_menu_items_link_color_quaternary\";s:19:\"color-2:rgb(0,3,96)\";s:39:\"bgtfw_menu_items_link_color_sticky-main\";s:19:\"color-2:rgb(0,3,96)\";s:44:\"bgtfw_menu_items_link_color_sticky-secondary\";s:19:\"color-2:rgb(0,3,96)\";s:43:\"bgtfw_menu_items_link_color_sticky-tertiary\";s:19:\"color-2:rgb(0,3,96)\";s:45:\"bgtfw_menu_items_link_color_sticky-quaternary\";s:19:\"color-2:rgb(0,3,96)\";s:41:\"bgtfw_menu_items_link_color_sticky-social\";s:19:\"color-2:rgb(0,3,96)\";s:44:\"bgtfw_menu_items_active_link_color_secondary\";s:22:\"color-1:rgb(0,167,225)\";s:43:\"bgtfw_menu_items_active_link_color_tertiary\";s:22:\"color-1:rgb(0,167,225)\";s:45:\"bgtfw_menu_items_active_link_color_quaternary\";s:22:\"color-1:rgb(0,167,225)\";s:46:\"bgtfw_menu_items_active_link_color_sticky-main\";s:22:\"color-1:rgb(0,167,225)\";s:51:\"bgtfw_menu_items_active_link_color_sticky-secondary\";s:22:\"color-1:rgb(0,167,225)\";s:50:\"bgtfw_menu_items_active_link_color_sticky-tertiary\";s:22:\"color-1:rgb(0,167,225)\";s:52:\"bgtfw_menu_items_active_link_color_sticky-quaternary\";s:22:\"color-1:rgb(0,167,225)\";s:48:\"bgtfw_menu_items_active_link_color_sticky-social\";s:22:\"color-1:rgb(0,167,225)\";s:51:\"bgtfw_menu_items_active_link_border_color_secondary\";s:24:\"color-3:rgb(238,238,238)\";s:50:\"bgtfw_menu_items_active_link_border_color_tertiary\";s:24:\"color-3:rgb(238,238,238)\";s:52:\"bgtfw_menu_items_active_link_border_color_quaternary\";s:24:\"color-3:rgb(238,238,238)\";s:48:\"bgtfw_menu_items_active_link_border_color_social\";s:24:\"color-3:rgb(238,238,238)\";s:53:\"bgtfw_menu_items_active_link_border_color_sticky-main\";s:24:\"color-3:rgb(238,238,238)\";s:58:\"bgtfw_menu_items_active_link_border_color_sticky-secondary\";s:24:\"color-3:rgb(238,238,238)\";s:57:\"bgtfw_menu_items_active_link_border_color_sticky-tertiary\";s:24:\"color-3:rgb(238,238,238)\";s:59:\"bgtfw_menu_items_active_link_border_color_sticky-quaternary\";s:24:\"color-3:rgb(238,238,238)\";s:55:\"bgtfw_menu_items_active_link_border_color_sticky-social\";s:24:\"color-3:rgb(238,238,238)\";s:25:\"hide_boldgrid_attribution\";b:1;s:27:\"bgtfw_site_title_typography\";a:8:{s:11:\"font-family\";s:11:\"Yantramanav\";s:9:\"font-size\";s:4:\"46px\";s:14:\"text-transform\";s:9:\"uppercase\";s:11:\"line-height\";s:3:\"1.5\";s:7:\"variant\";s:3:\"500\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";i:500;s:10:\"font-style\";s:6:\"normal\";}s:24:\"bgtfw_tagline_typography\";a:8:{s:11:\"font-family\";s:7:\"Raleway\";s:9:\"font-size\";s:4:\"22px\";s:14:\"text-transform\";s:4:\"none\";s:11:\"line-height\";s:3:\"1.4\";s:7:\"variant\";s:7:\"regular\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";i:400;s:10:\"font-style\";s:6:\"normal\";}s:25:\"bgtfw_headings_typography\";a:7:{s:11:\"font-family\";s:11:\"Yantramanav\";s:11:\"line-height\";s:3:\"1.3\";s:14:\"text-transform\";s:9:\"uppercase\";s:7:\"variant\";s:3:\"500\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";i:500;s:10:\"font-style\";s:6:\"normal\";}s:24:\"bgtfw_headings_font_size\";s:2:\"18\";s:21:\"bgtfw_body_typography\";a:8:{s:11:\"font-family\";s:10:\"Montserrat\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"text-transform\";s:4:\"none\";s:7:\"variant\";s:7:\"regular\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";i:400;s:10:\"font-style\";s:6:\"normal\";}s:19:\"bgtfw_header_layout\";a:2:{i:0;a:2:{s:9:\"container\";s:10:\"full-width\";s:5:\"items\";a:1:{i:0;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:18:\"boldgrid_menu_main\";s:5:\"align\";s:1:\"c\";s:3:\"uid\";s:5:\"h2029\";}}}i:1;a:2:{s:9:\"container\";s:10:\"full-width\";s:5:\"items\";a:1:{i:0;a:5:{s:4:\"type\";s:22:\"boldgrid_site_identity\";s:3:\"key\";s:8:\"branding\";s:5:\"align\";s:1:\"c\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:17:\".custom-logo-link\";s:7:\"display\";s:4:\"hide\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"hide\";s:5:\"title\";s:7:\"Tagline\";}}s:3:\"uid\";s:5:\"h2016\";}}}}s:26:\"bgtfw_menu_background_main\";s:19:\"color-5:rgb(1,1,63)\";s:26:\"bgtfw_menu_typography_main\";a:8:{s:11:\"font-family\";s:10:\"Montserrat\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"text-transform\";s:4:\"none\";s:7:\"variant\";s:3:\"500\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";i:500;s:10:\"font-style\";s:6:\"normal\";}s:19:\"bgtfw_header_border\";a:4:{s:3:\"css\";s:160:\".site-header header{border-top-width:0px;border-right-width:0px;border-bottom-width:2px;border-left-width:0px;border-style: solid;border-color:var(--color-1);;}\";s:5:\"media\";s:312:\"{\"base\":{\"unit\":\"px\",\"slidersLinked\":false,\"values\":{\"top\":0,\"right\":0,\"bottom\":2,\"left\":0},\"css\":\".site-header header{border-top-width:0px;border-right-width:0px;border-bottom-width:2px;border-left-width:0px;border-style: solid;border-color:var(--color-1);;}\",\"type\":\"solid\",\"color\":\"color-1:rgb(249, 91, 38)\"}}\";s:2:\"ID\";i:0;s:6:\"filter\";s:3:\"raw\";}s:19:\"bgtfw_footer_layout\";a:1:{i:0;a:2:{s:9:\"container\";s:10:\"full-width\";s:5:\"items\";a:1:{i:0;a:4:{s:4:\"type\";s:34:\"boldgrid_display_attribution_links\";s:3:\"key\";s:11:\"attribution\";s:5:\"align\";s:1:\"c\";s:3:\"uid\";s:5:\"f2011\";}}}}s:20:\"bgtfw_footer_padding\";a:4:{s:5:\"media\";s:195:\"{\"base\":{\"unit\":\"em\",\"slidersLinked\":false,\"values\":{\"top\":1,\"right\":0,\"bottom\":1,\"left\":0},\"css\":\"#colophon.site-footer{padding-top:1em;padding-right:0em;padding-bottom:1em;padding-left:0em;}\"}}\";s:3:\"css\";s:93:\"#colophon.site-footer{padding-top:1em;padding-right:0em;padding-bottom:1em;padding-left:0em;}\";s:2:\"ID\";i:0;s:6:\"filter\";s:3:\"raw\";}s:20:\"bgtfw_header_padding\";a:4:{s:5:\"media\";s:197:\"{\"base\":{\"unit\":\"em\",\"slidersLinked\":false,\"values\":{\"top\":0,\"right\":0,\"bottom\":0.3,\"left\":0},\"css\":\".site-header header{padding-top:0em;padding-right:0em;padding-bottom:0.3em;padding-left:0em;}\"}}\";s:3:\"css\";s:93:\".site-header header{padding-top:0em;padding-right:0em;padding-bottom:0.3em;padding-left:0em;}\";s:2:\"ID\";i:0;s:6:\"filter\";s:3:\"raw\";}s:28:\"bgtfw_blog_blog_page_sidebar\";s:12:\"left-sidebar\";s:41:\"bgtfw_pages_blog_blog_page_layout_columns\";s:1:\"2\";s:25:\"bgtfw_blog_page_container\";s:0:\"\";s:41:\"bgtfw_pages_blog_blog_page_layout_content\";s:7:\"excerpt\";s:48:\"bgtfw_pages_blog_blog_page_layout_excerpt_length\";s:2:\"42\";s:23:\"bgtfw_global_title_size\";s:2:\"h2\";s:28:\"bgtfw_global_title_alignment\";s:6:\"center\";s:27:\"bgtfw_global_title_position\";s:5:\"above\";s:35:\"bgtfw_blog_post_header_meta_display\";s:4:\"none\";s:35:\"bgtfw_blog_post_header_date_display\";s:7:\"inherit\";s:37:\"bgtfw_blog_post_header_byline_display\";s:4:\"none\";s:42:\"bgtfw_blog_post_header_feat_image_position\";s:5:\"above\";s:34:\"bgtfw_menu_items_hover_effect_main\";s:18:\"hvr-sweep-to-right\";s:33:\"bgtfw_blog_post_header_title_size\";s:2:\"h3\";s:37:\"bgtfw_blog_post_header_title_position\";s:4:\"left\";s:29:\"bgtfw_blog_post_readmore_type\";s:18:\"btn button-primary\";s:33:\"bgtfw_blog_post_readmore_position\";s:4:\"left\";s:17:\"bgtfw_layout_blog\";s:12:\"left-sidebar\";s:36:\"bgtfw_pages_blog_posts_layout_layout\";s:0:\"\";s:44:\"bgtfw_menu_items_active_link_background_main\";s:21:\"color-4:rgb(20,0,112)\";s:26:\"bgtfw_blog_posts_container\";s:0:\"\";s:27:\"bgtfw_header_layout_default\";a:2:{i:0;a:2:{s:9:\"container\";s:10:\"full-width\";s:5:\"items\";a:1:{i:0;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:18:\"boldgrid_menu_main\";s:5:\"align\";s:1:\"c\";s:3:\"uid\";s:5:\"h2029\";}}}i:1;a:2:{s:9:\"container\";s:10:\"full-width\";s:5:\"items\";a:1:{i:0;a:5:{s:4:\"type\";s:22:\"boldgrid_site_identity\";s:3:\"key\";s:8:\"branding\";s:5:\"align\";s:1:\"c\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:17:\".custom-logo-link\";s:7:\"display\";s:4:\"hide\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"hide\";s:5:\"title\";s:7:\"Tagline\";}}s:3:\"uid\";s:5:\"h2016\";}}}}s:28:\"bgtfw_header_preset_branding\";a:2:{i:0;s:4:\"logo\";i:1;s:5:\"title\";}s:34:\"bgtfw_sticky_header_layout_default\";a:1:{i:0;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:2:{i:0;a:5:{s:4:\"type\";s:22:\"boldgrid_site_identity\";s:3:\"key\";s:8:\"branding\";s:5:\"align\";s:1:\"w\";s:3:\"uid\";s:3:\"s47\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:17:\".custom-logo-link\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:7:\"Tagline\";}}}i:1;a:4:{s:4:\"type\";s:25:\"boldgrid_menu_sticky-main\";s:3:\"key\";s:4:\"menu\";s:5:\"align\";s:1:\"e\";s:3:\"uid\";s:3:\"s48\";}}}}s:26:\"bgtfw_header_layout_custom\";a:2:{i:0;a:2:{s:9:\"container\";s:10:\"full-width\";s:5:\"items\";a:1:{i:0;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:18:\"boldgrid_menu_main\";s:5:\"align\";s:1:\"c\";s:3:\"uid\";s:5:\"h2029\";}}}i:1;a:2:{s:9:\"container\";s:10:\"full-width\";s:5:\"items\";a:1:{i:0;a:5:{s:4:\"type\";s:22:\"boldgrid_site_identity\";s:3:\"key\";s:8:\"branding\";s:5:\"align\";s:1:\"c\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:17:\".custom-logo-link\";s:7:\"display\";s:4:\"hide\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"hide\";s:5:\"title\";s:7:\"Tagline\";}}s:3:\"uid\";s:5:\"h2016\";}}}}s:33:\"bgtfw_sticky_header_layout_custom\";a:1:{i:0;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:2:{i:0;a:5:{s:4:\"type\";s:22:\"boldgrid_site_identity\";s:3:\"key\";s:8:\"branding\";s:5:\"align\";s:1:\"w\";s:3:\"uid\";s:3:\"s47\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:17:\".custom-logo-link\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:7:\"Tagline\";}}}i:1;a:4:{s:4:\"type\";s:25:\"boldgrid_menu_sticky-main\";s:3:\"key\";s:4:\"menu\";s:5:\"align\";s:1:\"e\";s:3:\"uid\";s:3:\"s48\";}}}}s:24:\"bgtfw_header_layout_lbrm\";a:1:{i:0;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:2:{i:0;a:5:{s:4:\"type\";s:22:\"boldgrid_site_identity\";s:3:\"key\";s:8:\"branding\";s:5:\"align\";s:1:\"w\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:12:\".custom-logo\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"hide\";s:5:\"title\";s:7:\"Tagline\";}}s:3:\"uid\";s:3:\"h47\";}i:1;a:4:{s:4:\"type\";s:18:\"boldgrid_menu_main\";s:3:\"key\";s:4:\"menu\";s:5:\"align\";s:1:\"e\";s:3:\"uid\";s:3:\"h48\";}}}}s:26:\"bgtfw_header_layout_lbcmrs\";a:1:{i:0;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:3:{i:0;a:5:{s:4:\"type\";s:22:\"boldgrid_site_identity\";s:3:\"key\";s:8:\"branding\";s:5:\"align\";s:1:\"w\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:12:\".custom-logo\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"hide\";s:5:\"title\";s:7:\"Tagline\";}}s:3:\"uid\";s:3:\"h47\";}i:1;a:4:{s:4:\"type\";s:18:\"boldgrid_menu_main\";s:3:\"key\";s:4:\"menu\";s:5:\"align\";s:1:\"c\";s:3:\"uid\";s:3:\"h48\";}i:2;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:20:\"boldgrid_menu_social\";s:5:\"align\";s:1:\"e\";s:3:\"uid\";s:4:\"h110\";}}}}s:24:\"bgtfw_header_layout_lmrb\";a:1:{i:0;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:2:{i:0;a:4:{s:4:\"type\";s:18:\"boldgrid_menu_main\";s:3:\"key\";s:4:\"menu\";s:5:\"align\";s:1:\"w\";s:3:\"uid\";s:3:\"h48\";}i:1;a:5:{s:4:\"type\";s:22:\"boldgrid_site_identity\";s:3:\"key\";s:8:\"branding\";s:5:\"align\";s:1:\"e\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:12:\".custom-logo\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"hide\";s:5:\"title\";s:7:\"Tagline\";}}s:3:\"uid\";s:3:\"h47\";}}}}s:26:\"bgtfw_header_layout_lbrslm\";a:2:{i:0;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:2:{i:0;a:5:{s:4:\"type\";s:22:\"boldgrid_site_identity\";s:3:\"key\";s:8:\"branding\";s:5:\"align\";s:1:\"w\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:12:\".custom-logo\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"hide\";s:5:\"title\";s:7:\"Tagline\";}}s:3:\"uid\";s:3:\"h47\";}i:1;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:20:\"boldgrid_menu_social\";s:5:\"align\";s:1:\"e\";s:3:\"uid\";s:4:\"h110\";}}}i:1;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:1:{i:0;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:18:\"boldgrid_menu_main\";s:5:\"align\";s:1:\"w\";s:3:\"uid\";s:4:\"h105\";}}}}s:26:\"bgtfw_header_layout_lbrscm\";a:2:{i:0;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:2:{i:0;a:5:{s:4:\"type\";s:22:\"boldgrid_site_identity\";s:3:\"key\";s:8:\"branding\";s:5:\"align\";s:1:\"w\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:12:\".custom-logo\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"hide\";s:5:\"title\";s:7:\"Tagline\";}}s:3:\"uid\";s:3:\"h47\";}i:1;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:20:\"boldgrid_menu_social\";s:5:\"align\";s:1:\"e\";s:3:\"uid\";s:4:\"h110\";}}}i:1;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:1:{i:0;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:18:\"boldgrid_menu_main\";s:5:\"align\";s:1:\"c\";s:3:\"uid\";s:4:\"h105\";}}}}s:26:\"bgtfw_header_layout_lbrsrm\";a:2:{i:0;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:2:{i:0;a:5:{s:4:\"type\";s:22:\"boldgrid_site_identity\";s:3:\"key\";s:8:\"branding\";s:5:\"align\";s:1:\"w\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:12:\".custom-logo\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"hide\";s:5:\"title\";s:7:\"Tagline\";}}s:3:\"uid\";s:3:\"h47\";}i:1;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:20:\"boldgrid_menu_social\";s:5:\"align\";s:1:\"e\";s:3:\"uid\";s:4:\"h110\";}}}i:1;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:1:{i:0;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:18:\"boldgrid_menu_main\";s:5:\"align\";s:1:\"e\";s:3:\"uid\";s:4:\"h105\";}}}}s:24:\"bgtfw_header_layout_cbcm\";a:2:{i:0;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:1:{i:0;a:5:{s:4:\"type\";s:22:\"boldgrid_site_identity\";s:3:\"key\";s:8:\"branding\";s:5:\"align\";s:1:\"c\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:12:\".custom-logo\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"hide\";s:5:\"title\";s:7:\"Tagline\";}}s:3:\"uid\";s:3:\"h47\";}}}i:1;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:1:{i:0;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:18:\"boldgrid_menu_main\";s:5:\"align\";s:1:\"c\";s:3:\"uid\";s:4:\"h105\";}}}}s:24:\"bgtfw_header_layout_cmcb\";a:2:{i:0;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:1:{i:0;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:18:\"boldgrid_menu_main\";s:5:\"align\";s:1:\"c\";s:3:\"uid\";s:4:\"h105\";}}}i:1;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:1:{i:0;a:5:{s:4:\"type\";s:22:\"boldgrid_site_identity\";s:3:\"key\";s:8:\"branding\";s:5:\"align\";s:1:\"c\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:12:\".custom-logo\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"hide\";s:5:\"title\";s:7:\"Tagline\";}}s:3:\"uid\";s:3:\"h47\";}}}}s:26:\"bgtfw_header_layout_lshsbm\";a:3:{i:0;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:1:{i:0;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:20:\"boldgrid_menu_social\";s:5:\"align\";s:1:\"w\";s:3:\"uid\";s:4:\"h264\";}}}i:1;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:1:{i:0;a:5:{s:3:\"key\";s:8:\"branding\";s:4:\"type\";s:22:\"boldgrid_site_identity\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:17:\".custom-logo-link\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"hide\";s:5:\"title\";s:7:\"Tagline\";}}s:5:\"align\";s:1:\"w\";s:3:\"uid\";s:3:\"h47\";}}}i:2;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:1:{i:0;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:18:\"boldgrid_menu_main\";s:5:\"align\";s:1:\"w\";s:3:\"uid\";s:4:\"h263\";}}}}s:31:\"bgtfw_sticky_header_layout_lbrm\";a:1:{i:0;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:2:{i:0;a:5:{s:4:\"type\";s:22:\"boldgrid_site_identity\";s:3:\"key\";s:8:\"branding\";s:5:\"align\";s:1:\"w\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:12:\".custom-logo\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"hide\";s:5:\"title\";s:7:\"Tagline\";}}s:3:\"uid\";s:3:\"s47\";}i:1;a:4:{s:4:\"type\";s:25:\"boldgrid_menu_sticky-main\";s:3:\"key\";s:4:\"menu\";s:5:\"align\";s:1:\"e\";s:3:\"uid\";s:3:\"s48\";}}}}s:33:\"bgtfw_sticky_header_layout_lbcmrs\";a:1:{i:0;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:3:{i:0;a:5:{s:4:\"type\";s:22:\"boldgrid_site_identity\";s:3:\"key\";s:8:\"branding\";s:5:\"align\";s:1:\"w\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:12:\".custom-logo\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"hide\";s:5:\"title\";s:7:\"Tagline\";}}s:3:\"uid\";s:3:\"s47\";}i:1;a:4:{s:4:\"type\";s:25:\"boldgrid_menu_sticky-main\";s:3:\"key\";s:4:\"menu\";s:5:\"align\";s:1:\"c\";s:3:\"uid\";s:3:\"s48\";}i:2;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:27:\"boldgrid_menu_sticky-social\";s:5:\"align\";s:1:\"e\";s:3:\"uid\";s:4:\"s110\";}}}}s:31:\"bgtfw_sticky_header_layout_lmrb\";a:1:{i:0;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:2:{i:0;a:4:{s:4:\"type\";s:25:\"boldgrid_menu_sticky-main\";s:3:\"key\";s:4:\"menu\";s:5:\"align\";s:1:\"w\";s:3:\"uid\";s:3:\"s48\";}i:1;a:5:{s:4:\"type\";s:22:\"boldgrid_site_identity\";s:3:\"key\";s:8:\"branding\";s:5:\"align\";s:1:\"e\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:12:\".custom-logo\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"hide\";s:5:\"title\";s:7:\"Tagline\";}}s:3:\"uid\";s:3:\"s47\";}}}}s:33:\"bgtfw_sticky_header_layout_lbrslm\";a:2:{i:0;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:2:{i:0;a:5:{s:4:\"type\";s:22:\"boldgrid_site_identity\";s:3:\"key\";s:8:\"branding\";s:5:\"align\";s:1:\"w\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:12:\".custom-logo\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"hide\";s:5:\"title\";s:7:\"Tagline\";}}s:3:\"uid\";s:3:\"s47\";}i:1;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:27:\"boldgrid_menu_sticky-social\";s:5:\"align\";s:1:\"e\";s:3:\"uid\";s:4:\"s110\";}}}i:1;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:1:{i:0;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:25:\"boldgrid_menu_sticky-main\";s:5:\"align\";s:1:\"w\";s:3:\"uid\";s:4:\"s105\";}}}}s:33:\"bgtfw_sticky_header_layout_lbrscm\";a:2:{i:0;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:2:{i:0;a:5:{s:4:\"type\";s:22:\"boldgrid_site_identity\";s:3:\"key\";s:8:\"branding\";s:5:\"align\";s:1:\"w\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:12:\".custom-logo\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"hide\";s:5:\"title\";s:7:\"Tagline\";}}s:3:\"uid\";s:3:\"s47\";}i:1;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:27:\"boldgrid_menu_sticky-social\";s:5:\"align\";s:1:\"e\";s:3:\"uid\";s:4:\"s110\";}}}i:1;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:1:{i:0;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:25:\"boldgrid_menu_sticky-main\";s:5:\"align\";s:1:\"c\";s:3:\"uid\";s:4:\"s105\";}}}}s:33:\"bgtfw_sticky_header_layout_lbrsrm\";a:2:{i:0;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:2:{i:0;a:5:{s:4:\"type\";s:22:\"boldgrid_site_identity\";s:3:\"key\";s:8:\"branding\";s:5:\"align\";s:1:\"w\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:12:\".custom-logo\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"hide\";s:5:\"title\";s:7:\"Tagline\";}}s:3:\"uid\";s:3:\"s47\";}i:1;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:27:\"boldgrid_menu_sticky-social\";s:5:\"align\";s:1:\"e\";s:3:\"uid\";s:4:\"s110\";}}}i:1;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:1:{i:0;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:25:\"boldgrid_menu_sticky-main\";s:5:\"align\";s:1:\"e\";s:3:\"uid\";s:4:\"s105\";}}}}s:31:\"bgtfw_sticky_header_layout_cbcm\";a:2:{i:0;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:1:{i:0;a:5:{s:4:\"type\";s:22:\"boldgrid_site_identity\";s:3:\"key\";s:8:\"branding\";s:5:\"align\";s:1:\"c\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:12:\".custom-logo\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"hide\";s:5:\"title\";s:7:\"Tagline\";}}s:3:\"uid\";s:3:\"s47\";}}}i:1;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:1:{i:0;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:25:\"boldgrid_menu_sticky-main\";s:5:\"align\";s:1:\"c\";s:3:\"uid\";s:4:\"s105\";}}}}s:31:\"bgtfw_sticky_header_layout_cmcb\";a:2:{i:0;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:1:{i:0;a:4:{s:3:\"key\";s:4:\"menu\";s:4:\"type\";s:25:\"boldgrid_menu_sticky-main\";s:5:\"align\";s:1:\"c\";s:3:\"uid\";s:4:\"s105\";}}}i:1;a:2:{s:9:\"container\";s:9:\"container\";s:5:\"items\";a:1:{i:0;a:5:{s:4:\"type\";s:22:\"boldgrid_site_identity\";s:3:\"key\";s:8:\"branding\";s:5:\"align\";s:1:\"c\";s:7:\"display\";a:3:{i:0;a:3:{s:8:\"selector\";s:12:\".custom-logo\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:4:\"Logo\";}i:1;a:3:{s:8:\"selector\";s:11:\".site-title\";s:7:\"display\";s:4:\"show\";s:5:\"title\";s:5:\"Title\";}i:2;a:3:{s:8:\"selector\";s:17:\".site-description\";s:7:\"display\";s:4:\"hide\";s:5:\"title\";s:7:\"Tagline\";}}s:3:\"uid\";s:3:\"s47\";}}}}s:16:\"background_image\";s:0:\"\";s:24:\"boldgrid_background_type\";s:7:\"pattern\";s:33:\"bgtfw_page_footers_global_enabled\";b:0;s:35:\"bgtfw_menu_typography_footer-social\";a:8:{s:11:\"font-family\";s:16:\"Almendra Display\";s:9:\"font-size\";s:3:\"1px\";s:11:\"line-height\";s:2:\".5\";s:14:\"text-transform\";s:4:\"none\";s:7:\"variant\";s:7:\"regular\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";i:400;s:10:\"font-style\";s:6:\"normal\";}s:27:\"bgtfw_scroll_to_top_display\";s:4:\"hide\";s:41:\"bgtfw_menu_items_link_color_footer-social\";s:21:\"color-4:rgb(20,0,112)\";s:45:\"bgtfw_menu_items_sub_link_color_footer-social\";s:21:\"color-4:rgb(20,0,112)\";s:52:\"bgtfw_menu_items_sub_active_link_color_footer-social\";s:24:\"color-3:rgb(238,238,238)\";s:53:\"bgtfw_menu_items_active_link_background_footer-social\";s:21:\"color-4:rgb(20,0,112)\";s:35:\"bgtfw_menu_visibility_footer-social\";a:4:{s:3:\"css\";s:322:\"@media only screen and ( max-width: 767px ){#footer-social-menu{ display: none !important; }}@media only screen and (max-width: 991px) and (min-width: 768px){#footer-social-menu{ display: none !important; }}@media only screen and (max-width: 1199px) and (min-width: 992px){#footer-social-menu{ display: none !important; }}\";s:5:\"media\";s:28:\"[\"phone\",\"tablet\",\"desktop\"]\";s:2:\"ID\";i:0;s:6:\"filter\";s:3:\"raw\";}s:24:\"hide_partner_attribution\";b:1;s:31:\"hide_special_thanks_attribution\";b:0;s:26:\"hide_wordpress_attribution\";b:1;s:21:\"hide_host_attribution\";b:1;}','yes'),(1400,'current_theme','Crio','yes'),(1401,'theme_switched','','yes'),(1402,'boldgrid_backup_history','a:31:{i:0;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1648062377;s:7:\"message\";s:50:\"Twenty Twenty-One theme (version 1.3) deactivated.\";}i:1;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1648062377;s:7:\"message\";s:38:\"Crio theme (version 2.13.3) activated.\";}i:2;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1648062379;s:7:\"message\";s:46:\"Crio Premium plugin (version 1.5.3) activated.\";}i:3;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1648062381;s:7:\"message\";s:42:\"weForms plugin (version 1.6.12) activated.\";}i:4;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1648062391;s:7:\"message\";s:52:\"BoldGrid Easy SEO plugin (version 1.6.10) activated.\";}i:5;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1648322642;s:7:\"message\";s:55:\"BoldGrid Inspirations plugin upgraded to version 2.6.5.\";}i:6;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1648327649;s:7:\"message\";s:115:\"Backup file created: /home/nspeci6/boldgrid_backup/boldgrid-backup-estatesatnuevo.com-fa8057ab-20220326-204605.zip.\";}i:7;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1648418003;s:7:\"message\";s:115:\"Backup file created: /home/nspeci6/boldgrid_backup/boldgrid-backup-estatesatnuevo.com-fa8057ab-20220327-215158.zip.\";}i:8;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1648841035;s:7:\"message\";s:115:\"Backup file created: /home/nspeci6/boldgrid_backup/boldgrid-backup-estatesatnuevo.com-fa8057ab-20220401-192240.zip.\";}i:9;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1648845265;s:7:\"message\";s:42:\"weForms plugin upgraded to version 1.6.13.\";}i:10;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1649444249;s:7:\"message\";s:46:\"Crio Premium plugin upgraded to version 1.5.4.\";}i:11;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1649444249;s:7:\"message\";s:56:\"Post and Page Builder plugin upgraded to version 1.18.0.\";}i:12;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1649444249;s:7:\"message\";s:47:\"Total Upkeep plugin upgraded to version 1.15.0.\";}i:13;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1649452004;s:7:\"message\";s:115:\"Backup file created: /home/nspeci6/boldgrid_backup/boldgrid-backup-estatesatnuevo.com-fa8057ab-20220408-210521.zip.\";}i:14;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1649452020;s:7:\"message\";s:154:\"Due to retention settings, the following backup was deleted: /home/nspeci6/boldgrid_backup/boldgrid-backup-estatesatnuevo.com-fa8057ab-20220313-144604.zip\";}i:15;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1649618407;s:7:\"message\";s:115:\"Backup file created: /home/nspeci6/boldgrid_backup/boldgrid-backup-estatesatnuevo.com-fa8057ab-20220410-191840.zip.\";}i:16;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1649618424;s:7:\"message\";s:154:\"Due to retention settings, the following backup was deleted: /home/nspeci6/boldgrid_backup/boldgrid-backup-estatesatnuevo.com-fa8057ab-20220326-204605.zip\";}i:17;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1658928989;s:7:\"message\";s:55:\"BoldGrid Inspirations plugin upgraded to version 2.7.1.\";}i:18;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1658928993;s:7:\"message\";s:46:\"Crio Premium plugin upgraded to version 1.7.1.\";}i:19;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1658929013;s:7:\"message\";s:56:\"Post and Page Builder plugin upgraded to version 1.20.1.\";}i:20;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1658929017;s:7:\"message\";s:63:\"Post and Page Builder Premium plugin upgraded to version 1.0.6.\";}i:21;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1658929026;s:7:\"message\";s:47:\"Total Upkeep plugin upgraded to version 1.15.2.\";}i:22;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1658929035;s:7:\"message\";s:42:\"weForms plugin upgraded to version 1.6.14.\";}i:23;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1668782152;s:7:\"message\";s:51:\"Akismet Anti-Spam plugin upgraded to version 5.0.1.\";}i:24;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1668782152;s:7:\"message\";s:55:\"BoldGrid Inspirations plugin upgraded to version 2.7.4.\";}i:25;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1668782152;s:7:\"message\";s:46:\"Crio Premium plugin upgraded to version 1.7.2.\";}i:26;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1668782152;s:7:\"message\";s:56:\"Post and Page Builder plugin upgraded to version 1.21.3.\";}i:27;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1668782152;s:7:\"message\";s:47:\"Total Upkeep plugin upgraded to version 1.15.4.\";}i:28;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1668782152;s:7:\"message\";s:42:\"weForms plugin upgraded to version 1.6.15.\";}i:29;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1677263827;s:7:\"message\";s:115:\"Backup file created: /home/nspeci6/boldgrid_backup/boldgrid-backup-estatesatnuevo.com-fa8057ab-20230224-183539.zip.\";}i:30;a:3:{s:7:\"user_id\";i:1;s:9:\"timestamp\";i:1677263845;s:7:\"message\";s:154:\"Due to retention settings, the following backup was deleted: /home/nspeci6/boldgrid_backup/boldgrid-backup-estatesatnuevo.com-fa8057ab-20220712-173935.zip\";}}','no'),(1432,'boldgrid_installed_page_ids','a:5:{i:555;i:97;i:19;i:99;i:25;i:101;i:27;i:103;i:20;i:105;}','yes'),(1433,'boldgrid_installed_pages_metadata','a:5:{i:97;a:3:{s:11:\"is_readonly\";s:1:\"0\";s:9:\"post_type\";s:4:\"page\";s:11:\"post_status\";s:7:\"publish\";}i:99;a:3:{s:11:\"is_readonly\";s:1:\"0\";s:9:\"post_type\";s:4:\"page\";s:11:\"post_status\";s:7:\"publish\";}i:101;a:3:{s:11:\"is_readonly\";s:1:\"0\";s:9:\"post_type\";s:4:\"page\";s:11:\"post_status\";s:7:\"publish\";}i:103;a:3:{s:11:\"is_readonly\";s:1:\"0\";s:9:\"post_type\";s:4:\"page\";s:11:\"post_status\";s:7:\"publish\";}i:105;a:3:{s:11:\"is_readonly\";s:1:\"0\";s:9:\"post_type\";s:4:\"page\";s:11:\"post_status\";s:7:\"publish\";}}','yes'),(99395,'bglib_rating_prompt','a:1:{i:0;a:4:{s:6:\"plugin\";s:15:\"boldgrid-backup\";s:4:\"name\";s:18:\"any_backup_created\";s:6:\"slides\";a:4:{s:5:\"start\";a:2:{s:4:\"text\";s:212:\"It looks like you&#039;ve created 10 backups with the Total Upkeep plugin! If you feel you&#039;re getting really good value from the Total Upkeep plugin, could you do us a favor and rate us 5 stars on WordPress?\";s:9:\"decisions\";a:3:{s:9:\"sure_will\";a:3:{s:4:\"text\";s:17:\"Yes, I sure will!\";s:4:\"link\";s:61:\"https://wordpress.org/support/plugin/boldgrid-backup/reviews/\";s:5:\"slide\";s:6:\"thanks\";}s:19:\"maybe_still_testing\";a:3:{s:4:\"text\";s:47:\"Maybe later, I&#039;m still testing the plugin.\";s:6:\"snooze\";i:604800;s:5:\"slide\";s:11:\"maybe_later\";}s:11:\"already_did\";a:2:{s:4:\"text\";s:47:\"I already did / Permanently dismiss this notice\";s:5:\"slide\";s:11:\"already_did\";}}}s:6:\"thanks\";a:1:{s:4:\"text\";s:389:\"Thanks! A new page should have opened to the Total Upkeep ratings page on WordPress.org. You will need to log in to your WordPress.org account before you can post a review. If the page didn&#039;t open, please click the following link: <a href=\"https://wordpress.org/support/plugin/boldgrid-backup/reviews/\" target=\"_blank\">https://wordpress.org/support/plugin/boldgrid-backup/reviews/</a>\";}s:11:\"maybe_later\";a:1:{s:4:\"text\";s:246:\"No problem, maybe now is not a good time. We want to be your WordPress backup plugin of choice. If you&#039;re experiencing a problem or want to make a suggestion, please <a href=\"https://www.boldgrid.com/feedback\" target=\"_blank\">click here</a>.\";}s:11:\"already_did\";a:1:{s:4:\"text\";s:264:\"Thank you for the previous rating! You can help us to continue improving the Total Upkeep plugin by reporting any bugs or submitting feature requests <a href=\"https://www.boldgrid.com/feedback\" target=\"_blank\">here</a>. Thank you for using the Total Upkeep plugin!\";}}s:10:\"time_added\";i:1661896127;}}','yes'),(1457,'boldgrid_static_pages','a:1:{s:5:\"pages\";a:2:{s:16:\"pages_in_pageset\";a:8:{i:0;O:8:\"stdClass\":17:{s:2:\"id\";s:3:\"555\";s:16:\"page_revision_id\";s:4:\"4192\";s:10:\"page_title\";s:4:\"Home\";s:9:\"page_slug\";s:4:\"home\";s:9:\"post_type\";s:4:\"page\";s:4:\"code\";s:12974:\"\n<div class=\"boldgrid-section\" style=\"color: #ffffff; background-image: linear-gradient(to left, rgba(26, 26, 26, 0.5), rgba(26, 26, 26, 0.5)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1NTLWQ0bk1Od2lRLzE5MjB4MTI4Mg_3D_3D-imhwpb-l6lnwj9f34ljpy1.jpg\'); background-size: cover; background-position: 50% 75%;\" data-imhwpb-asset-id=\"1111019\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1NTLWQ0bk1Od2lRLzE5MjB4MTI4Mg_3D_3D-imhwpb-l6lnwj9f34ljpy1.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding-top: 80px;\">\r\n<div class=\"col-md-2 col-sm-2 col-xs-12\"></div>\r\n<div class=\"col-md-8 col-sm-10 col-xs-12\">\r\n<h2 class=\"h1 bg-text-fx bg-text-fx-closeheavy\" style=\"color: #ffffff; text-align: center;\">DIVE IN.</h2>\r\n<h3 class=\"bg-text-fx bg-text-fx-closeheavy\" style=\"color: #ffffff; text-align: center; text-transform: none;\">Own the home meant for you.</h3>\r\n</div>\r\n<div class=\"col-md-2 col-sm-2 col-xs-12\"></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 25px 4em 0px;\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\"><a href=\"#\"><i class=\"fa fa-cog color3-color\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></a></p>\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"#\"><strong>ABOUT</strong></a></p>\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\"><a href=\"#\"><i class=\"fa fa-briefcase\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></a></p>\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"#\"><strong>SERVICES</strong></a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\"><a href=\"#\"><i class=\"fa fa-paper-plane\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></a></p>\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"#\"><strong>CONTACT</strong></a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3 col-sm-6 col-xs-12 text-center\">\r\n<div style=\"margin-top: 15px; background-color: rgba(0, 0, 0, 0.5); border: 2px solid #ffffff; padding: 1.5em;\" class=\"bg-background-color bg-box\">\r\n<p class=\"\"><a href=\"#\"><i class=\"fa fa-pencil-square-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></a></p>\r\n<p class=\"\" style=\"margin-top: 20px;\"><a href=\"#\"><strong>BLOG</strong></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row\" style=\"padding-bottom: 60px;\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6 color4-background-color color-4-text-contrast bg-background-color\" style=\"padding: 3em 4em 4em;\">\r\n<h3 class=\"\">Lawn Care Services</h3>\r\n<p class=\"\">Whether you&rsquo;re having trouble getting around as well as you used to, have new responsibilities that keep you from getting everything done, we can help. We work with a wide variety of landscaping and lawn care services to keep your exterior looking fabulous.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6 color2-background-color color-2-text-contrast bg-background-color\" style=\"padding: 3em 4em 4em;\">\r\n<h3 class=\"\">Home Maintenance</h3>\r\n<p class=\"\">If you&rsquo;re having trouble keeping up with your home&rsquo;s necessary maintenance or have repairs that need to be made, but you don&rsquo;t have time to stay on top of it, we&rsquo;ll help arrange service partners to take care of the problem while you get on with your life.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12 color5-background-color color-5-text-contrast bg-background-color\" style=\"padding: 3em 4em 4em;\">\r\n<h3 class=\"\">Cleaning Services</h3>\r\n<p class=\"\">Sometimes it&rsquo;s hard to keep up with cleaning and daily tasks that take so much of your precious time. Whether you need a little help getting regular cleaning done or need a hand running errands and doing laundry, we&rsquo;ll get it done for you.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding: 3em 4em 1em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">About Us</h2>\r\n<p class=\"\">We have specialists focusing on residential real estate, business and commercial real estate, industrial retrofitting, property management, legal services and so much more. We feel that by offering comprehensive services, we can deliver so much more for our clients.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\"></div>\r\n</div>\r\n<div class=\"row\" style=\"padding: 0em 3em 90px;\">\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-110\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\" alt=\"\" data-unsplash-id=\"k8m4Uj5JJAQ\" width=\"300\" height=\"450\" data-imhwpb-asset-id=\"1111013\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-111\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\" alt=\"\" data-unsplash-id=\"r1tjlHBnHzY\" width=\"300\" height=\"450\" data-imhwpb-asset-id=\"1111014\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-112\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\" alt=\"\" data-unsplash-id=\"l5gzNmXTzIg\" width=\"300\" height=\"450\" data-imhwpb-asset-id=\"1111015\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-113\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\" alt=\"\" data-unsplash-id=\"\" width=\"300\" height=\"450\" data-imhwpb-asset-id=\"1111016\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-114\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\" alt=\"\" data-unsplash-id=\"sBtqOe23bd0\" width=\"300\" height=\"450\" data-imhwpb-asset-id=\"1111017\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-2 col-sm-4 col-xs-6 text-center\" style=\"padding-top: 1em;\">\r\n<p class=\"mod-reset\"><img class=\"bg-img bg-img-square alignnone size-full wp-image-115\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\" alt=\"\" data-unsplash-id=\"B8He4PJkMLg\" width=\"300\" height=\"450\" data-imhwpb-asset-id=\"1111018\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\" style=\"background-image: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\'); background-size: cover; background-position: 50% 58%;\" data-imhwpb-asset-id=\"1111020\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\" style=\"padding: 75px 2em 4em;\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-key\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Vacation Concierge</h3>\r\n<p class=\"\">While your seasonal home is vacant, we can find renters and provide a complete vacation concierge service from buying groceries to recommending local hot spots, enforcing safety and more.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\">\r\n<div class=\"text-center bg-box bg-box-square bg-box-cover\" style=\"border: 2px solid #ffffff; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 4px 2px; margin: 0px; padding: 3em 2em; background-color: rgba(255, 255, 255, 0.9);\">\r\n<p class=\"\"><i class=\"fa fa-star-o\" style=\"font-size: 45px;\" aria-hidden=\"true\"><span style=\"display: none;\">&nbsp;</span></i></p>\r\n\r\n<h3 class=\"\">Special Markets</h3>\r\n<p class=\"\">Do you have a home that will bring more on a specialty market? From working with homes on the National Register of Historic Places to highly specialized industrial sites, we&rsquo;ll handle it.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary\" href=\"#\">Learn More</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section color5-background-color color-5-text-contrast bg-background-color\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 col-xs-12 col-sm-6\" style=\"padding: 3em 4em 4em;\">\r\n<h3 class=\"\">Our Mission</h3>\r\n<p class=\"\">At Bold Estate we put the customer&rsquo;s needs before our own. We make your transaction, whether it&rsquo;s buying, selling, renting, or investing, a truly extraordinary experience.</p>\r\n<p class=\"\">We work endlessly to hone skills, continuously striving for perfection, and sweating over every detail. Our commitment to making your realty experience the best imaginable means that we&rsquo;ll always give you more.</p>\r\n\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-6 color5-background-color color-5-text-contrast bg-background-color\" style=\"padding: 4em; background-image: url(\'https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL19hTjZ6SURSTGZRLzE5MjB4MTI3OA_3D_3D-imhwpb-mp3ssj59au1z9n4.jpg\'); background-size: cover; background-position: 50% 50%;\" data-imhwpb-asset-id=\"1111021\" data-image-url=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL19hTjZ6SURSTGZRLzE5MjB4MTI3OA_3D_3D-imhwpb-mp3ssj59au1z9n4.jpg\">\r\n<div class=\"\">\r\n<p class=\"\">&nbsp;</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 col-xs-12 col-sm-12\" style=\"padding: 3em 4em 4em;\">\r\n<h3 class=\"\">Customer First</h3>\r\n<p class=\"\">We are committed to providing the absolute best quality to each and every one of our customers. We have continued to grow while staying true to our original mission &mdash; to give you, the customer, a winning service that you can rely on.</p>\r\n<p class=\"\">Our commitment to making your realty experience the best imaginable means that we&rsquo;ll always give you more than the other guys. We put the customer first.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12\" style=\"padding: 3em 4em 2em;\">\r\n<div class=\"\">\r\n<h2 class=\"\">Our Location</h2>\r\n<p class=\"\">Because we put the customer first, we always have free promotions that are charged at other realty agencies. Our commitment to making your realty experience the best imaginable means that we&rsquo;ll always give you more than the other guys.</p>\r\n<p class=\"\">Stop in today for a free consultation! Let us show you how we can do more for you than anyone else.</p>\r\n<p class=\"\" style=\"margin-top: 30px;\"><a class=\"button-primary\" href=\"#\">Learn More </a></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 bg-box-flush\">\r\n<p class=\"boldgrid-google-maps\" style=\"margin: 0; line-height: 0;\"><iframe style=\"width: 100%;\" src=\"https://maps.google.com/maps?q=New+York%2C+NY&amp;t=m&amp;z=16&amp;output=embed\" width=\"1000\" height=\"500\" frameborder=\"0\"></iframe></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\n\n\n\";s:10:\"theme_mods\";s:47825:\"{\"_boldgrid_theme_id\":55,\"sidebars_widgets\":{\"time\":1590516031,\"data\":{\"wp_inactive_widgets\":[\"archives-2\",\"archives-3\",\"archives-4\",\"archives-5\",\"archives-6\",\"archives-7\",\"archives-8\",\"archives-9\",\"archives-10\",\"archives-11\",\"archives-12\",\"archives-13\",\"archives-14\",\"archives-15\",\"archives-16\",\"archives-17\",\"archives-18\",\"archives-19\",\"archives-20\",\"archives-21\",\"archives-22\",\"archives-23\",\"archives-24\",\"archives-25\",\"archives-26\",\"archives-27\",\"archives-28\",\"archives-29\",\"archives-30\",\"archives-31\",\"archives-32\",\"archives-33\",\"archives-34\",\"archives-35\",\"archives-36\",\"archives-37\",\"archives-38\",\"archives-39\",\"archives-40\",\"archives-41\",\"archives-42\",\"archives-43\",\"archives-44\",\"archives-45\",\"archives-46\",\"archives-47\",\"archives-48\",\"archives-49\",\"archives-50\",\"archives-51\",\"archives-52\",\"archives-53\",\"archives-54\",\"archives-55\",\"archives-56\",\"archives-57\",\"archives-58\",\"archives-59\",\"archives-60\",\"archives-61\",\"archives-62\",\"archives-63\",\"archives-64\",\"archives-65\",\"archives-66\",\"archives-67\",\"archives-68\",\"archives-69\",\"archives-70\",\"archives-71\",\"archives-72\",\"archives-73\",\"archives-74\",\"archives-75\",\"archives-76\",\"archives-77\",\"archives-78\",\"archives-79\",\"archives-80\",\"archives-81\",\"archives-82\",\"archives-83\",\"archives-84\",\"archives-85\",\"archives-86\",\"archives-87\",\"archives-88\",\"archives-89\",\"archives-90\",\"archives-91\",\"archives-92\",\"archives-93\",\"archives-94\",\"archives-95\",\"archives-96\",\"archives-97\",\"archives-98\",\"archives-99\",\"archives-100\",\"archives-101\",\"archives-102\",\"archives-103\",\"archives-104\",\"archives-105\",\"archives-106\",\"archives-107\",\"archives-108\",\"archives-109\",\"archives-110\",\"archives-111\",\"archives-112\",\"archives-113\",\"archives-114\",\"archives-115\",\"archives-116\",\"archives-117\",\"meta-2\",\"search-2\",\"search-3\",\"search-4\",\"search-5\",\"search-6\",\"search-7\",\"search-8\",\"search-9\",\"search-10\",\"search-11\",\"search-12\",\"search-13\",\"search-14\",\"search-15\",\"search-16\",\"search-17\",\"search-18\",\"search-19\",\"search-20\",\"search-21\",\"search-22\",\"search-23\",\"search-24\",\"search-25\",\"search-26\",\"search-27\",\"search-28\",\"search-29\",\"search-30\",\"search-31\",\"search-32\",\"search-33\",\"search-34\",\"search-35\",\"search-36\",\"search-37\",\"search-38\",\"search-39\",\"search-40\",\"search-41\",\"search-42\",\"search-43\",\"search-44\",\"search-45\",\"search-46\",\"search-47\",\"search-48\",\"search-49\",\"search-50\",\"search-51\",\"search-52\",\"search-53\",\"search-54\",\"search-55\",\"search-56\",\"search-57\",\"search-58\",\"search-59\",\"search-60\",\"search-61\",\"search-62\",\"search-63\",\"search-64\",\"search-65\",\"search-66\",\"search-67\",\"search-68\",\"search-69\",\"search-70\",\"search-71\",\"search-72\",\"search-73\",\"search-74\",\"search-75\",\"search-76\",\"search-77\",\"search-78\",\"search-79\",\"search-80\",\"search-81\",\"search-82\",\"search-83\",\"search-84\",\"search-85\",\"search-86\",\"search-87\",\"search-88\",\"search-89\",\"search-90\",\"search-91\",\"search-92\",\"search-93\",\"search-94\",\"search-95\",\"search-96\",\"search-97\",\"search-98\",\"search-99\",\"search-100\",\"search-101\",\"search-102\",\"search-103\",\"search-104\",\"search-105\",\"search-106\",\"search-107\",\"search-108\",\"search-109\",\"search-110\",\"search-111\",\"search-112\",\"search-113\",\"search-114\",\"search-115\",\"search-116\",\"search-117\",\"categories-2\",\"categories-3\",\"categories-4\",\"categories-5\",\"categories-6\",\"categories-7\",\"categories-8\",\"categories-9\",\"categories-10\",\"categories-11\",\"categories-12\",\"categories-13\",\"categories-14\",\"categories-15\",\"categories-16\",\"categories-17\",\"categories-18\",\"categories-19\",\"categories-20\",\"categories-21\",\"categories-22\",\"categories-23\",\"categories-24\",\"categories-25\",\"categories-26\",\"categories-27\",\"categories-28\",\"categories-29\",\"categories-30\",\"categories-31\",\"categories-32\",\"categories-33\",\"categories-34\",\"categories-35\",\"categories-36\",\"categories-37\",\"categories-38\",\"categories-39\",\"categories-40\",\"categories-41\",\"categories-42\",\"categories-43\",\"categories-44\",\"categories-45\",\"categories-46\",\"categories-47\",\"categories-48\",\"categories-49\",\"categories-50\",\"categories-51\",\"categories-52\",\"categories-53\",\"categories-54\",\"categories-55\",\"categories-56\",\"categories-57\",\"categories-58\",\"categories-59\",\"categories-60\",\"categories-61\",\"categories-62\",\"categories-63\",\"categories-64\",\"categories-65\",\"categories-66\",\"categories-67\",\"categories-68\",\"categories-69\",\"categories-70\",\"categories-71\",\"categories-72\",\"categories-73\",\"categories-74\",\"categories-75\",\"categories-76\",\"categories-77\",\"categories-78\",\"categories-79\",\"categories-80\",\"categories-81\",\"categories-82\",\"categories-83\",\"categories-84\",\"categories-85\",\"categories-86\",\"categories-87\",\"categories-88\",\"categories-89\",\"categories-90\",\"categories-91\",\"categories-92\",\"categories-93\",\"categories-94\",\"categories-95\",\"categories-96\",\"categories-97\",\"categories-98\",\"categories-99\",\"categories-100\",\"categories-101\",\"categories-102\",\"categories-103\",\"categories-104\",\"categories-105\",\"categories-106\",\"categories-107\",\"categories-108\",\"categories-109\",\"categories-110\",\"categories-111\",\"categories-112\",\"categories-113\",\"categories-114\",\"categories-115\",\"categories-116\",\"categories-117\",\"recent-posts-2\",\"recent-posts-3\",\"recent-posts-4\",\"recent-posts-5\",\"recent-posts-6\",\"recent-posts-7\",\"recent-posts-8\",\"recent-posts-9\",\"recent-posts-10\",\"recent-posts-11\",\"recent-posts-12\",\"recent-posts-13\",\"recent-posts-14\",\"recent-posts-15\",\"recent-posts-16\",\"recent-posts-17\",\"recent-posts-18\",\"recent-posts-19\",\"recent-posts-20\",\"recent-posts-21\",\"recent-posts-22\",\"recent-posts-23\",\"recent-posts-24\",\"recent-posts-25\",\"recent-posts-26\",\"recent-posts-27\",\"recent-posts-28\",\"recent-posts-29\",\"recent-posts-30\",\"recent-posts-31\",\"recent-posts-32\",\"recent-posts-33\",\"recent-posts-34\",\"recent-posts-35\",\"recent-posts-36\",\"recent-posts-37\",\"recent-posts-38\",\"recent-posts-39\",\"recent-posts-40\",\"recent-posts-41\",\"recent-posts-42\",\"recent-posts-43\",\"recent-posts-44\",\"recent-posts-45\",\"recent-posts-46\",\"recent-posts-47\",\"recent-posts-48\",\"recent-posts-49\",\"recent-posts-50\",\"recent-posts-51\",\"recent-posts-52\",\"recent-posts-53\",\"recent-posts-54\",\"recent-posts-55\",\"recent-posts-56\",\"recent-posts-57\",\"recent-posts-58\",\"recent-posts-59\",\"recent-posts-60\",\"recent-posts-61\",\"recent-posts-62\",\"recent-posts-63\",\"recent-posts-64\",\"recent-posts-65\",\"recent-posts-66\",\"recent-posts-67\",\"recent-posts-68\",\"recent-posts-69\",\"recent-posts-70\",\"recent-posts-71\",\"recent-posts-72\",\"recent-posts-73\",\"recent-posts-74\",\"recent-posts-75\",\"recent-posts-76\",\"recent-posts-77\",\"recent-posts-78\",\"recent-posts-79\",\"recent-posts-80\",\"recent-posts-81\",\"recent-posts-82\",\"recent-posts-83\",\"recent-posts-84\",\"recent-posts-85\",\"recent-posts-86\",\"recent-posts-87\",\"recent-posts-88\",\"recent-posts-89\",\"recent-posts-90\",\"recent-posts-91\",\"recent-posts-92\",\"recent-posts-93\",\"recent-posts-94\",\"recent-posts-95\",\"recent-posts-96\",\"recent-posts-97\",\"recent-posts-98\",\"recent-posts-99\",\"recent-posts-100\",\"recent-posts-101\",\"recent-posts-102\",\"recent-posts-103\",\"recent-posts-104\",\"recent-posts-105\",\"recent-posts-106\",\"recent-posts-107\",\"recent-posts-108\",\"recent-posts-109\",\"recent-posts-110\",\"recent-posts-111\",\"recent-posts-112\",\"recent-posts-113\",\"recent-posts-114\",\"recent-posts-115\",\"recent-posts-116\",\"recent-posts-117\",\"recent-comments-2\"],\"sidebar-1\":[\"search-143\",\"recent-posts-143\",\"archives-143\",\"categories-143\"],\"sidebar-2\":[],\"boldgrid-editor-sidebar\":[]}},\"boldgrid_color_palette\":\"{\\\"state\\\":{\\\"active-palette\\\":\\\"palette-primary\\\",\\\"active-palette-id\\\":\\\"e22d08ee8e4f6ae9731a4d53fa2bb0a7\\\",\\\"palettes\\\":{\\\"palette-primary\\\":{\\\"format\\\":\\\"palette-primary\\\",\\\"colors\\\":[\\\"rgb(0, 167, 225)\\\",\\\"rgb(0, 3, 96)\\\",\\\"rgb(238, 238, 238)\\\",\\\"rgb(20, 0, 112)\\\",\\\"rgb(1, 1, 63)\\\"],\\\"neutral-color\\\":\\\"rgb(238, 238, 238)\\\"}},\\\"saved_palettes\\\":[{\\\"format\\\":\\\"palette-primary\\\",\\\"colors\\\":[\\\"rgb(0, 167, 225)\\\",\\\"rgb(43, 43, 43)\\\",\\\"rgb(238, 238, 238)\\\",\\\"rgb(56, 56, 56)\\\",\\\"rgb(26, 26, 26)\\\"],\\\"neutral-color\\\":\\\"rgb(238, 238, 238)\\\"},{\\\"format\\\":\\\"palette-primary\\\",\\\"colors\\\":[\\\"rgb(68, 187, 164)\\\",\\\"rgb(43, 43, 43)\\\",\\\"rgb(238, 238, 238)\\\",\\\"rgb(56, 56, 56)\\\",\\\"rgb(26, 26, 26)\\\"],\\\"neutral-color\\\":\\\"rgb(238, 238, 238)\\\"},{\\\"format\\\":\\\"palette-primary\\\",\\\"colors\\\":[\\\"rgb(0, 167, 225)\\\",\\\"rgb(0, 3, 96)\\\",\\\"rgb(238, 238, 238)\\\",\\\"rgb(20, 0, 112)\\\",\\\"rgb(1, 1, 63)\\\"],\\\"neutral-color\\\":\\\"rgb(238, 238, 238)\\\"}]}}\",\"boldgrid_compiled_css\":\".color1-background.color-1-link-color a{color:#00a7e1}.color1-background.color-1-link-color a:hover,.color1-background.color-1-link-color a:focus,.color1-background.color-1-link-color a:active,.color1-background.color-1-link-color a.highlighted{color:#005b7b}.color1-background.color-2-link-color a{color:#000360}.color1-background.color-2-link-color a:hover,.color1-background.color-2-link-color a:focus,.color1-background.color-2-link-color a:active,.color1-background.color-2-link-color a.highlighted{color:#000}.color1-background.color-3-link-color a{color:#eee}.color1-background.color-3-link-color a:hover,.color1-background.color-3-link-color a:focus,.color1-background.color-3-link-color a:active,.color1-background.color-3-link-color a.highlighted{color:#bbb}.color1-background.color-4-link-color a{color:#140070}.color1-background.color-4-link-color a:hover,.color1-background.color-4-link-color a:focus,.color1-background.color-4-link-color a:active,.color1-background.color-4-link-color a.highlighted{color:#02000a}.color1-background.color-5-link-color a{color:#01013f}.color1-background.color-5-link-color a:hover,.color1-background.color-5-link-color a:focus,.color1-background.color-5-link-color a:active,.color1-background.color-5-link-color a.highlighted{color:#0303a3}.color1-background.color-neutral-link-color a{color:#eee}.color1-background.color-neutral-link-color a:hover,.color1-background.color-neutral-link-color a:focus,.color1-background.color-neutral-link-color a:active,.color1-background.color-neutral-link-color a.highlighted{color:#bbb}.color1-background-hover:focus,.color1-background-hover:hover{background:#00a7e1 ! important}.color2-background.color-1-link-color a{color:#00a7e1}.color2-background.color-1-link-color a:hover,.color2-background.color-1-link-color a:focus,.color2-background.color-1-link-color a:active,.color2-background.color-1-link-color a.highlighted{color:#48d0ff}.color2-background.color-2-link-color a{color:#000360}.color2-background.color-2-link-color a:hover,.color2-background.color-2-link-color a:focus,.color2-background.color-2-link-color a:active,.color2-background.color-2-link-color a.highlighted{color:#000}.color2-background.color-3-link-color a{color:#eee}.color2-background.color-3-link-color a:hover,.color2-background.color-3-link-color a:focus,.color2-background.color-3-link-color a:active,.color2-background.color-3-link-color a.highlighted{color:#bbb}.color2-background.color-4-link-color a{color:#140070}.color2-background.color-4-link-color a:hover,.color2-background.color-4-link-color a:focus,.color2-background.color-4-link-color a:active,.color2-background.color-4-link-color a.highlighted{color:#2600d6}.color2-background.color-5-link-color a{color:#01013f}.color2-background.color-5-link-color a:hover,.color2-background.color-5-link-color a:focus,.color2-background.color-5-link-color a:active,.color2-background.color-5-link-color a.highlighted{color:#0303a3}.color2-background.color-neutral-link-color a{color:#eee}.color2-background.color-neutral-link-color a:hover,.color2-background.color-neutral-link-color a:focus,.color2-background.color-neutral-link-color a:active,.color2-background.color-neutral-link-color a.highlighted{color:#bbb}.color2-background-hover:focus,.color2-background-hover:hover{background:#000360 ! important}.color3-background.color-1-link-color a{color:#00a7e1}.color3-background.color-1-link-color a:hover,.color3-background.color-1-link-color a:focus,.color3-background.color-1-link-color a:active,.color3-background.color-1-link-color a.highlighted{color:#005b7b}.color3-background.color-2-link-color a{color:#000360}.color3-background.color-2-link-color a:hover,.color3-background.color-2-link-color a:focus,.color3-background.color-2-link-color a:active,.color3-background.color-2-link-color a.highlighted{color:#000}.color3-background.color-3-link-color a{color:#eee}.color3-background.color-3-link-color a:hover,.color3-background.color-3-link-color a:focus,.color3-background.color-3-link-color a:active,.color3-background.color-3-link-color a.highlighted{color:#bbb}.color3-background.color-4-link-color a{color:#140070}.color3-background.color-4-link-color a:hover,.color3-background.color-4-link-color a:focus,.color3-background.color-4-link-color a:active,.color3-background.color-4-link-color a.highlighted{color:#02000a}.color3-background.color-5-link-color a{color:#01013f}.color3-background.color-5-link-color a:hover,.color3-background.color-5-link-color a:focus,.color3-background.color-5-link-color a:active,.color3-background.color-5-link-color a.highlighted{color:#0303a3}.color3-background.color-neutral-link-color a{color:#eee}.color3-background.color-neutral-link-color a:hover,.color3-background.color-neutral-link-color a:focus,.color3-background.color-neutral-link-color a:active,.color3-background.color-neutral-link-color a.highlighted{color:#bbb}.color3-background-hover:focus,.color3-background-hover:hover{background:#eee ! important}.color4-background.color-1-link-color a{color:#00a7e1}.color4-background.color-1-link-color a:hover,.color4-background.color-1-link-color a:focus,.color4-background.color-1-link-color a:active,.color4-background.color-1-link-color a.highlighted{color:#48d0ff}.color4-background.color-2-link-color a{color:#000360}.color4-background.color-2-link-color a:hover,.color4-background.color-2-link-color a:focus,.color4-background.color-2-link-color a:active,.color4-background.color-2-link-color a.highlighted{color:#000}.color4-background.color-3-link-color a{color:#eee}.color4-background.color-3-link-color a:hover,.color4-background.color-3-link-color a:focus,.color4-background.color-3-link-color a:active,.color4-background.color-3-link-color a.highlighted{color:#bbb}.color4-background.color-4-link-color a{color:#140070}.color4-background.color-4-link-color a:hover,.color4-background.color-4-link-color a:focus,.color4-background.color-4-link-color a:active,.color4-background.color-4-link-color a.highlighted{color:#02000a}.color4-background.color-5-link-color a{color:#01013f}.color4-background.color-5-link-color a:hover,.color4-background.color-5-link-color a:focus,.color4-background.color-5-link-color a:active,.color4-background.color-5-link-color a.highlighted{color:#0303a3}.color4-background.color-neutral-link-color a{color:#eee}.color4-background.color-neutral-link-color a:hover,.color4-background.color-neutral-link-color a:focus,.color4-background.color-neutral-link-color a:active,.color4-background.color-neutral-link-color a.highlighted{color:#bbb}.color4-background-hover:focus,.color4-background-hover:hover{background:#140070 ! important}.color5-background.color-1-link-color a{color:#00a7e1}.color5-background.color-1-link-color a:hover,.color5-background.color-1-link-color a:focus,.color5-background.color-1-link-color a:active,.color5-background.color-1-link-color a.highlighted{color:#48d0ff}.color5-background.color-2-link-color a{color:#000360}.color5-background.color-2-link-color a:hover,.color5-background.color-2-link-color a:focus,.color5-background.color-2-link-color a:active,.color5-background.color-2-link-color a.highlighted{color:#0006c6}.color5-background.color-3-link-color a{color:#eee}.color5-background.color-3-link-color a:hover,.color5-background.color-3-link-color a:focus,.color5-background.color-3-link-color a:active,.color5-background.color-3-link-color a.highlighted{color:#bbb}.color5-background.color-4-link-color a{color:#140070}.color5-background.color-4-link-color a:hover,.color5-background.color-4-link-color a:focus,.color5-background.color-4-link-color a:active,.color5-background.color-4-link-color a.highlighted{color:#2600d6}.color5-background.color-5-link-color a{color:#01013f}.color5-background.color-5-link-color a:hover,.color5-background.color-5-link-color a:focus,.color5-background.color-5-link-color a:active,.color5-background.color-5-link-color a.highlighted{color:#0303a3}.color5-background.color-neutral-link-color a{color:#eee}.color5-background.color-neutral-link-color a:hover,.color5-background.color-neutral-link-color a:focus,.color5-background.color-neutral-link-color a:active,.color5-background.color-neutral-link-color a.highlighted{color:#bbb}.color5-background-hover:focus,.color5-background-hover:hover{background:#01013f ! important}.color-neutral-background.color-1-link-color a{color:#00a7e1}.color-neutral-background.color-1-link-color a:hover,.color-neutral-background.color-1-link-color a:focus,.color-neutral-background.color-1-link-color a:active,.color-neutral-background.color-1-link-color a.highlighted{color:#005b7b}.color-neutral-background.color-2-link-color a{color:#000360}.color-neutral-background.color-2-link-color a:hover,.color-neutral-background.color-2-link-color a:focus,.color-neutral-background.color-2-link-color a:active,.color-neutral-background.color-2-link-color a.highlighted{color:#000}.color-neutral-background.color-3-link-color a{color:#eee}.color-neutral-background.color-3-link-color a:hover,.color-neutral-background.color-3-link-color a:focus,.color-neutral-background.color-3-link-color a:active,.color-neutral-background.color-3-link-color a.highlighted{color:#bbb}.color-neutral-background.color-4-link-color a{color:#140070}.color-neutral-background.color-4-link-color a:hover,.color-neutral-background.color-4-link-color a:focus,.color-neutral-background.color-4-link-color a:active,.color-neutral-background.color-4-link-color a.highlighted{color:#02000a}.color-neutral-background.color-5-link-color a{color:#01013f}.color-neutral-background.color-5-link-color a:hover,.color-neutral-background.color-5-link-color a:focus,.color-neutral-background.color-5-link-color a:active,.color-neutral-background.color-5-link-color a.highlighted{color:#0303a3}.color-neutral-background.color-neutral-link-color a{color:#eee}.color-neutral-background.color-neutral-link-color a:hover,.color-neutral-background.color-neutral-link-color a:focus,.color-neutral-background.color-neutral-link-color a:active,.color-neutral-background.color-neutral-link-color a.highlighted{color:#bbb}.color1-background-color.color-1-link-color a{color:#00a7e1}.color1-background-color.color-1-link-color a:hover,.color1-background-color.color-1-link-color a:focus,.color1-background-color.color-1-link-color a:active,.color1-background-color.color-1-link-color a.highlighted{color:#005b7b}.color1-background-color.color-2-link-color a{color:#000360}.color1-background-color.color-2-link-color a:hover,.color1-background-color.color-2-link-color a:focus,.color1-background-color.color-2-link-color a:active,.color1-background-color.color-2-link-color a.highlighted{color:#000}.color1-background-color.color-3-link-color a{color:#eee}.color1-background-color.color-3-link-color a:hover,.color1-background-color.color-3-link-color a:focus,.color1-background-color.color-3-link-color a:active,.color1-background-color.color-3-link-color a.highlighted{color:#bbb}.color1-background-color.color-4-link-color a{color:#140070}.color1-background-color.color-4-link-color a:hover,.color1-background-color.color-4-link-color a:focus,.color1-background-color.color-4-link-color a:active,.color1-background-color.color-4-link-color a.highlighted{color:#02000a}.color1-background-color.color-5-link-color a{color:#01013f}.color1-background-color.color-5-link-color a:hover,.color1-background-color.color-5-link-color a:focus,.color1-background-color.color-5-link-color a:active,.color1-background-color.color-5-link-color a.highlighted{color:#0303a3}.color1-background-color.color-neutral-link-color a{color:#eee}.color1-background-color.color-neutral-link-color a:hover,.color1-background-color.color-neutral-link-color a:focus,.color1-background-color.color-neutral-link-color a:active,.color1-background-color.color-neutral-link-color a.highlighted{color:#bbb}.color1-background-color-hover:focus,.color1-background-color-hover:hover{background-color:#00a7e1 ! important}.color2-background-color.color-1-link-color a{color:#00a7e1}.color2-background-color.color-1-link-color a:hover,.color2-background-color.color-1-link-color a:focus,.color2-background-color.color-1-link-color a:active,.color2-background-color.color-1-link-color a.highlighted{color:#48d0ff}.color2-background-color.color-2-link-color a{color:#000360}.color2-background-color.color-2-link-color a:hover,.color2-background-color.color-2-link-color a:focus,.color2-background-color.color-2-link-color a:active,.color2-background-color.color-2-link-color a.highlighted{color:#000}.color2-background-color.color-3-link-color a{color:#eee}.color2-background-color.color-3-link-color a:hover,.color2-background-color.color-3-link-color a:focus,.color2-background-color.color-3-link-color a:active,.color2-background-color.color-3-link-color a.highlighted{color:#bbb}.color2-background-color.color-4-link-color a{color:#140070}.color2-background-color.color-4-link-color a:hover,.color2-background-color.color-4-link-color a:focus,.color2-background-color.color-4-link-color a:active,.color2-background-color.color-4-link-color a.highlighted{color:#2600d6}.color2-background-color.color-5-link-color a{color:#01013f}.color2-background-color.color-5-link-color a:hover,.color2-background-color.color-5-link-color a:focus,.color2-background-color.color-5-link-color a:active,.color2-background-color.color-5-link-color a.highlighted{color:#0303a3}.color2-background-color.color-neutral-link-color a{color:#eee}.color2-background-color.color-neutral-link-color a:hover,.color2-background-color.color-neutral-link-color a:focus,.color2-background-color.color-neutral-link-color a:active,.color2-background-color.color-neutral-link-color a.highlighted{color:#bbb}.color2-background-color-hover:focus,.color2-background-color-hover:hover{background-color:#000360 ! important}.color3-background-color.color-1-link-color a{color:#00a7e1}.color3-background-color.color-1-link-color a:hover,.color3-background-color.color-1-link-color a:focus,.color3-background-color.color-1-link-color a:active,.color3-background-color.color-1-link-color a.highlighted{color:#005b7b}.color3-background-color.color-2-link-color a{color:#000360}.color3-background-color.color-2-link-color a:hover,.color3-background-color.color-2-link-color a:focus,.color3-background-color.color-2-link-color a:active,.color3-background-color.color-2-link-color a.highlighted{color:#000}.color3-background-color.color-3-link-color a{color:#eee}.color3-background-color.color-3-link-color a:hover,.color3-background-color.color-3-link-color a:focus,.color3-background-color.color-3-link-color a:active,.color3-background-color.color-3-link-color a.highlighted{color:#bbb}.color3-background-color.color-4-link-color a{color:#140070}.color3-background-color.color-4-link-color a:hover,.color3-background-color.color-4-link-color a:focus,.color3-background-color.color-4-link-color a:active,.color3-background-color.color-4-link-color a.highlighted{color:#02000a}.color3-background-color.color-5-link-color a{color:#01013f}.color3-background-color.color-5-link-color a:hover,.color3-background-color.color-5-link-color a:focus,.color3-background-color.color-5-link-color a:active,.color3-background-color.color-5-link-color a.highlighted{color:#0303a3}.color3-background-color.color-neutral-link-color a{color:#eee}.color3-background-color.color-neutral-link-color a:hover,.color3-background-color.color-neutral-link-color a:focus,.color3-background-color.color-neutral-link-color a:active,.color3-background-color.color-neutral-link-color a.highlighted{color:#bbb}.color3-background-color-hover:focus,.color3-background-color-hover:hover{background-color:#eee ! important}.color4-background-color.color-1-link-color a{color:#00a7e1}.color4-background-color.color-1-link-color a:hover,.color4-background-color.color-1-link-color a:focus,.color4-background-color.color-1-link-color a:active,.color4-background-color.color-1-link-color a.highlighted{color:#48d0ff}.color4-background-color.color-2-link-color a{color:#000360}.color4-background-color.color-2-link-color a:hover,.color4-background-color.color-2-link-color a:focus,.color4-background-color.color-2-link-color a:active,.color4-background-color.color-2-link-color a.highlighted{color:#000}.color4-background-color.color-3-link-color a{color:#eee}.color4-background-color.color-3-link-color a:hover,.color4-background-color.color-3-link-color a:focus,.color4-background-color.color-3-link-color a:active,.color4-background-color.color-3-link-color a.highlighted{color:#bbb}.color4-background-color.color-4-link-color a{color:#140070}.color4-background-color.color-4-link-color a:hover,.color4-background-color.color-4-link-color a:focus,.color4-background-color.color-4-link-color a:active,.color4-background-color.color-4-link-color a.highlighted{color:#02000a}.color4-background-color.color-5-link-color a{color:#01013f}.color4-background-color.color-5-link-color a:hover,.color4-background-color.color-5-link-color a:focus,.color4-background-color.color-5-link-color a:active,.color4-background-color.color-5-link-color a.highlighted{color:#0303a3}.color4-background-color.color-neutral-link-color a{color:#eee}.color4-background-color.color-neutral-link-color a:hover,.color4-background-color.color-neutral-link-color a:focus,.color4-background-color.color-neutral-link-color a:active,.color4-background-color.color-neutral-link-color a.highlighted{color:#bbb}.color4-background-color-hover:focus,.color4-background-color-hover:hover{background-color:#140070 ! important}.color5-background-color.color-1-link-color a{color:#00a7e1}.color5-background-color.color-1-link-color a:hover,.color5-background-color.color-1-link-color a:focus,.color5-background-color.color-1-link-color a:active,.color5-background-color.color-1-link-color a.highlighted{color:#48d0ff}.color5-background-color.color-2-link-color a{color:#000360}.color5-background-color.color-2-link-color a:hover,.color5-background-color.color-2-link-color a:focus,.color5-background-color.color-2-link-color a:active,.color5-background-color.color-2-link-color a.highlighted{color:#0006c6}.color5-background-color.color-3-link-color a{color:#eee}.color5-background-color.color-3-link-color a:hover,.color5-background-color.color-3-link-color a:focus,.color5-background-color.color-3-link-color a:active,.color5-background-color.color-3-link-color a.highlighted{color:#bbb}.color5-background-color.color-4-link-color a{color:#140070}.color5-background-color.color-4-link-color a:hover,.color5-background-color.color-4-link-color a:focus,.color5-background-color.color-4-link-color a:active,.color5-background-color.color-4-link-color a.highlighted{color:#2600d6}.color5-background-color.color-5-link-color a{color:#01013f}.color5-background-color.color-5-link-color a:hover,.color5-background-color.color-5-link-color a:focus,.color5-background-color.color-5-link-color a:active,.color5-background-color.color-5-link-color a.highlighted{color:#0303a3}.color5-background-color.color-neutral-link-color a{color:#eee}.color5-background-color.color-neutral-link-color a:hover,.color5-background-color.color-neutral-link-color a:focus,.color5-background-color.color-neutral-link-color a:active,.color5-background-color.color-neutral-link-color a.highlighted{color:#bbb}.color5-background-color-hover:focus,.color5-background-color-hover:hover{background-color:#01013f ! important}.color-neutral-background-color.color-1-link-color a{color:#00a7e1}.color-neutral-background-color.color-1-link-color a:hover,.color-neutral-background-color.color-1-link-color a:focus,.color-neutral-background-color.color-1-link-color a:active,.color-neutral-background-color.color-1-link-color a.highlighted{color:#005b7b}.color-neutral-background-color.color-2-link-color a{color:#000360}.color-neutral-background-color.color-2-link-color a:hover,.color-neutral-background-color.color-2-link-color a:focus,.color-neutral-background-color.color-2-link-color a:active,.color-neutral-background-color.color-2-link-color a.highlighted{color:#000}.color-neutral-background-color.color-3-link-color a{color:#eee}.color-neutral-background-color.color-3-link-color a:hover,.color-neutral-background-color.color-3-link-color a:focus,.color-neutral-background-color.color-3-link-color a:active,.color-neutral-background-color.color-3-link-color a.highlighted{color:#bbb}.color-neutral-background-color.color-4-link-color a{color:#140070}.color-neutral-background-color.color-4-link-color a:hover,.color-neutral-background-color.color-4-link-color a:focus,.color-neutral-background-color.color-4-link-color a:active,.color-neutral-background-color.color-4-link-color a.highlighted{color:#02000a}.color-neutral-background-color.color-5-link-color a{color:#01013f}.color-neutral-background-color.color-5-link-color a:hover,.color-neutral-background-color.color-5-link-color a:focus,.color-neutral-background-color.color-5-link-color a:active,.color-neutral-background-color.color-5-link-color a.highlighted{color:#0303a3}.color-neutral-background-color.color-neutral-link-color a{color:#eee}.color-neutral-background-color.color-neutral-link-color a:hover,.color-neutral-background-color.color-neutral-link-color a:focus,.color-neutral-background-color.color-neutral-link-color a:active,.color-neutral-background-color.color-neutral-link-color a.highlighted{color:#bbb}.btn-color-1,.palette-primary .button-primary,.palette-primary .woocommerce .button,.btn-color-1-flat{background-color:#00a7e1;border-color:#00a7e1;color:var(--color-1-text-contrast) !important}.btn-color-1:visited,.palette-primary .button-primary:visited,.palette-primary .woocommerce .button:visited,.btn-color-1-flat:visited{color:var(--color-1-text-contrast)}.btn-color-1:hover,.palette-primary .button-primary:hover,.palette-primary .woocommerce .button:hover,.btn-color-1-flat:hover,.btn-color-1:focus,.palette-primary .button-primary:focus,.palette-primary .woocommerce .button:focus,.btn-color-1-flat:focus{background-color:#15c3ff;border-color:#15c3ff;color:var(--color-1-text-contrast) !important}.btn-color-1:active,.palette-primary .button-primary:active,.palette-primary .woocommerce .button:active,.btn-color-1-flat:active,.btn-color-1.active,.palette-primary .button-primary.active,.palette-primary .woocommerce .button.active,.btn-color-1-flat.active,.btn-color-1.is-active,.palette-primary .button-primary.is-active,.palette-primary .woocommerce .button.is-active,.btn-color-1-flat.is-active{background-color:#0ba2d6;border-color:#0ba2d6;color:#0081ae !important}.btn-color-2,.palette-primary .button-secondary,.palette-primary .woocommerce .alt.button,.btn-color-2-flat{background-color:#000360;border-color:#000360;color:var(--color-2-text-contrast) !important}.btn-color-2:visited,.palette-primary .button-secondary:visited,.palette-primary .woocommerce .alt.button:visited,.btn-color-2-flat:visited{color:var(--color-2-text-contrast)}.btn-color-2:hover,.palette-primary .button-secondary:hover,.palette-primary .woocommerce .alt.button:hover,.btn-color-2-flat:hover,.btn-color-2:focus,.palette-primary .button-secondary:focus,.palette-primary .woocommerce .alt.button:focus,.btn-color-2-flat:focus{background-color:#000593;border-color:#000593;color:var(--color-2-text-contrast) !important}.btn-color-2:active,.palette-primary .button-secondary:active,.palette-primary .woocommerce .alt.button:active,.btn-color-2-flat:active,.btn-color-2.active,.palette-primary .button-secondary.active,.palette-primary .woocommerce .alt.button.active,.btn-color-2-flat.active,.btn-color-2.is-active,.palette-primary .button-secondary.is-active,.palette-primary .woocommerce .alt.button.is-active,.btn-color-2-flat.is-active{background-color:#05075b;border-color:#05075b;color:#00012d !important}.btn-color-3,.btn-color-3-flat{background-color:#eee;border-color:#eee;color:var(--color-3-text-contrast) !important}.btn-color-3:visited,.btn-color-3-flat:visited{color:var(--color-3-text-contrast)}.btn-color-3:hover,.btn-color-3-flat:hover,.btn-color-3:focus,.btn-color-3-flat:focus{background-color:#fff;border-color:#fff;color:var(--color-3-text-contrast) !important}.btn-color-3:active,.btn-color-3-flat:active,.btn-color-3.active,.btn-color-3-flat.active,.btn-color-3.is-active,.btn-color-3-flat.is-active{background-color:#eee;border-color:#eee;color:#d5d5d5 !important}.btn-color-4,.btn-color-4-flat{background-color:#140070;border-color:#140070;color:var(--color-4-text-contrast) !important}.btn-color-4:visited,.btn-color-4-flat:visited{color:var(--color-4-text-contrast)}.btn-color-4:hover,.btn-color-4-flat:hover,.btn-color-4:focus,.btn-color-4-flat:focus{background-color:#1d00a3;border-color:#1d00a3;color:var(--color-4-text-contrast) !important}.btn-color-4:active,.btn-color-4-flat:active,.btn-color-4.active,.btn-color-4-flat.active,.btn-color-4.is-active,.btn-color-4-flat.is-active{background-color:#18066a;border-color:#18066a;color:#0b003d !important}.btn-color-5,.btn-color-5-flat{background-color:#01013f;border-color:#01013f;color:var(--color-5-text-contrast) !important}.btn-color-5:visited,.btn-color-5-flat:visited{color:var(--color-5-text-contrast)}.btn-color-5:hover,.btn-color-5-flat:hover,.btn-color-5:focus,.btn-color-5-flat:focus{background-color:#020271;border-color:#020271;color:var(--color-5-text-contrast) !important}.btn-color-5:active,.btn-color-5-flat:active,.btn-color-5.active,.btn-color-5-flat.active,.btn-color-5.is-active,.btn-color-5-flat.is-active{background-color:#04043c;border-color:#04043c;color:#00000d !important}.btn-neutral-color,.btn-neutral-color-flat{background-color:#eee;border-color:#eee;color:var(--color-neutral-text-contrast) !important}.btn-neutral-color:visited,.btn-neutral-color-flat:visited{color:var(--color-neutral-text-contrast)}.btn-neutral-color:hover,.btn-neutral-color-flat:hover,.btn-neutral-color:focus,.btn-neutral-color-flat:focus{background-color:#fff;border-color:#fff;color:var(--color-neutral-text-contrast) !important}.btn-neutral-color:active,.btn-neutral-color-flat:active,.btn-neutral-color.active,.btn-neutral-color-flat.active,.btn-neutral-color.is-active,.btn-neutral-color-flat.is-active{background-color:#eee;border-color:#eee;color:#d5d5d5 !important}.palette-primary .color1-background-alpha{background-color:rgba(0, 167, 225, 0.7)}.palette-primary .color2-background-alpha{background-color:rgba(0, 3, 96, 0.7)}.palette-primary .color3-background-alpha{background-color:rgba(238, 238, 238, 0.7)}.palette-primary .color4-background-alpha{background-color:rgba(20, 0, 112, 0.7)}.palette-primary .color5-background-alpha{background-color:rgba(1, 1, 63, 0.7)}.palette-primary .boldgrid-shortcode .bgc-single-article{background-color:#eee;color:#333}.palette-primary .bgc-single-image .date{background-color:rgba(0, 167, 225, 0.7);color:#fff}.palette-primary .bgc-single-image .image-opacity{background-color:rgba(0, 3, 96, 0.3)}\",\"boldgrid_palette_class\":\"palette-primary\",\"bgtfw_version\":\"2.2.3\",\"force_scss_recompile\":{\"active\":false,\"staging\":true},\"custom_css_post_id\":229,\"sidebar_meta\":{\"header-1\":{\"background_color\":\"color-neutral:rgb(238,238,238)\",\"headings_color\":\"color-2:rgb(0,3,96)\",\"links_color\":\"color-1:rgb(0,167,225)\"},\"header-2\":{\"background_color\":\"color-neutral:rgb(238,238,238)\",\"headings_color\":\"color-2:rgb(0,3,96)\",\"links_color\":\"color-1:rgb(0,167,225)\"},\"header-3\":{\"background_color\":\"color-neutral:rgb(238,238,238)\",\"headings_color\":\"color-2:rgb(0,3,96)\",\"links_color\":\"color-1:rgb(0,167,225)\"},\"header-4\":{\"background_color\":\"color-neutral:rgb(238,238,238)\",\"headings_color\":\"color-2:rgb(0,3,96)\",\"links_color\":\"color-1:rgb(0,167,225)\"},\"footer-1\":{\"background_color\":\"color-2:rgb(0,3,96)\",\"headings_color\":\"color-1:rgb(0,167,225)\",\"links_color\":\"color-4:rgb(20,0,112)\"},\"footer-2\":{\"background_color\":\"color-2:rgb(0,3,96)\",\"headings_color\":\"color-1:rgb(0,167,225)\",\"links_color\":\"color-4:rgb(20,0,112)\"},\"footer-3\":{\"background_color\":\"color-2:rgb(0,3,96)\",\"headings_color\":\"color-1:rgb(0,167,225)\",\"links_color\":\"color-4:rgb(20,0,112)\"},\"footer-4\":{\"background_color\":\"color-2:rgb(0,3,96)\",\"headings_color\":\"color-1:rgb(0,167,225)\",\"links_color\":\"color-4:rgb(20,0,112)\"},\"primary-sidebar\":{\"background_color\":\"color-4:rgb(20,0,112)\",\"headings_color\":\"color-neutral:rgb(238,238,238)\",\"links_color\":\"color-1:rgb(0,167,225)\"}},\"boldgrid_background_color\":\"color-neutral:rgb(238,238,238)\",\"bgtfw_background_overlay_color\":\"color-1:rgb(0,167,225)\",\"bgtfw_header_border_color\":\"color-1:rgb(0,167,225)\",\"bgtfw_footer_border_color\":\"color-1:rgb(0,167,225)\",\"bgtfw_pages_container\":\"\",\"bgtfw_posts_tags_link_color\":\"color-1:rgb(0,167,225)\",\"bgtfw_posts_cats_link_color\":\"color-1:rgb(0,167,225)\",\"bgtfw_posts_navigation_link_color\":\"color-1:rgb(0,167,225)\",\"bgtfw_headings_color\":\"color-2:rgb(0,3,96)\",\"bgtfw_tagline_color\":\"color-neutral:rgb(238,238,238)\",\"bgtfw_header_color\":\"color-4:rgb(20,0,112)\",\"bgtfw_site_title_color\":\"color-neutral:rgb(238,238,238)\",\"bgtfw_global_title_background_color\":\"color-4:rgb(20,0,112)\",\"bgtfw_global_title_color\":\"color-neutral:rgb(238,238,238)\",\"bgtfw_body_link_color\":\"color-1:rgb(0,167,225)\",\"bgtfw_header_overlay_color\":\"color-1:rgb(0,167,225)\",\"bgtfw_footer_color\":\"color-5:rgb(1,1,63)\",\"bgtfw_footer_links\":\"color-1:rgb(0,167,225)\",\"bgtfw_menu_hamburger_main_color\":\"color-1:rgb(0,167,225)\",\"bgtfw_menu_border_color_main\":\"color-3:rgb(238,238,238)\",\"bgtfw_menu_items_border_color_main\":\"color-3:rgb(238,238,238)\",\"bgtfw_menu_items_hover_color_main\":\"color-4:rgb(20,0,112)\",\"bgtfw_menu_items_hover_background_main\":\"color-1:rgb(0,167,225)\",\"bgtfw_menu_items_link_color_main\":\"color-neutral:rgb(238,238,238)\",\"bgtfw_menu_items_active_link_color_main\":\"color-1:rgb(0,167,225)\",\"bgtfw_menu_items_active_link_border_color_main\":\"color-3:rgb(238,238,238)\",\"bgtfw_blog_border_color\":\"color-1:rgb(0,167,225)\",\"bgtfw_blog_header_background_color\":\"color-neutral:rgb(238,238,238)\",\"bgtfw_blog_post_background_color\":\"color-neutral:rgb(238,238,238)\",\"bgtfw_blog_post_header_title_color\":\"color-2:rgb(0,3,96)\",\"bgtfw_blog_post_header_date_link_color\":\"color-1:rgb(0,167,225)\",\"bgtfw_blog_post_header_byline_link_color\":\"color-1:rgb(0,167,225)\",\"bgtfw_blog_post_tags_link_color\":\"color-1:rgb(0,167,225)\",\"bgtfw_blog_post_cats_link_color\":\"color-1:rgb(0,167,225)\",\"bgtfw_blog_post_comments_link_color\":\"color-1:rgb(0,167,225)\",\"bgtfw_blog_post_readmore_link_color\":\"color-1:rgb(0,167,225)\",\"bgtfw_menu_items_link_color_social\":\"color-1:rgb(0,167,225)\",\"bgtfw_menu_items_hover_color_social\":\"color-3:rgb(238,238,238)\",\"bgtfw_menu_items_active_link_color_social\":\"color-3:rgb(238,238,238)\",\"bgtfw_menu_hamburger_secondary_color\":\"color-1:rgb(0,167,225)\",\"bgtfw_menu_hamburger_tertiary_color\":\"color-1:rgb(0,167,225)\",\"bgtfw_menu_hamburger_quaternary_color\":\"color-1:rgb(0,167,225)\",\"bgtfw_menu_hamburger_social_color\":\"color-1:rgb(0,167,225)\",\"bgtfw_menu_hamburger_sticky-main_color\":\"color-1:rgb(0,167,225)\",\"bgtfw_menu_hamburger_sticky-secondary_color\":\"color-1:rgb(0,167,225)\",\"bgtfw_menu_hamburger_sticky-tertiary_color\":\"color-1:rgb(0,167,225)\",\"bgtfw_menu_hamburger_sticky-quaternary_color\":\"color-1:rgb(0,167,225)\",\"bgtfw_menu_hamburger_sticky-social_color\":\"color-1:rgb(0,167,225)\",\"bgtfw_menu_border_color_secondary\":\"color-3:rgb(238,238,238)\",\"bgtfw_menu_border_color_tertiary\":\"color-3:rgb(238,238,238)\",\"bgtfw_menu_border_color_quaternary\":\"color-3:rgb(238,238,238)\",\"bgtfw_menu_border_color_social\":\"color-3:rgb(238,238,238)\",\"bgtfw_menu_border_color_sticky-main\":\"color-3:rgb(238,238,238)\",\"bgtfw_menu_border_color_sticky-secondary\":\"color-3:rgb(238,238,238)\",\"bgtfw_menu_border_color_sticky-tertiary\":\"color-3:rgb(238,238,238)\",\"bgtfw_menu_border_color_sticky-quaternary\":\"color-3:rgb(238,238,238)\",\"bgtfw_menu_border_color_sticky-social\":\"color-3:rgb(238,238,238)\",\"bgtfw_menu_items_border_color_secondary\":\"color-3:rgb(238,238,238)\",\"bgtfw_menu_items_border_color_tertiary\":\"color-3:rgb(238,238,238)\",\"bgtfw_menu_items_border_color_quaternary\":\"color-3:rgb(238,238,238)\",\"bgtfw_menu_items_border_color_social\":\"color-3:rgb(238,238,238)\",\"bgtfw_menu_items_border_color_sticky-main\":\"color-3:rgb(238,238,238)\",\"bgtfw_menu_items_border_color_sticky-secondary\":\"color-3:rgb(238,238,238)\",\"bgtfw_menu_items_border_color_sticky-tertiary\":\"color-3:rgb(238,238,238)\",\"bgtfw_menu_items_border_color_sticky-quaternary\":\"color-3:rgb(238,238,238)\",\"bgtfw_menu_items_border_color_sticky-social\":\"color-3:rgb(238,238,238)\",\"bgtfw_menu_items_hover_color_secondary\":\"color-1:rgb(0,167,225)\",\"bgtfw_menu_items_hover_color_tertiary\":\"color-1:rgb(0,167,225)\",\"bgtfw_menu_items_hover_color_quaternary\":\"color-1:rgb(0,167,225)\",\"bgtfw_menu_items_hover_color_sticky-main\":\"color-1:rgb(0,167,225)\",\"bgtfw_menu_items_hover_color_sticky-secondary\":\"color-1:rgb(0,167,225)\",\"bgtfw_menu_items_hover_color_sticky-tertiary\":\"color-1:rgb(0,167,225)\",\"bgtfw_menu_items_hover_color_sticky-quaternary\":\"color-1:rgb(0,167,225)\",\"bgtfw_menu_items_hover_color_sticky-social\":\"color-1:rgb(0,167,225)\",\"bgtfw_menu_items_hover_background_secondary\":\"color-3:rgb(238,238,238)\",\"bgtfw_menu_items_hover_background_tertiary\":\"color-3:rgb(238,238,238)\",\"bgtfw_menu_items_hover_background_quaternary\":\"color-3:rgb(238,238,238)\",\"bgtfw_menu_items_hover_background_social\":\"color-3:rgb(238,238,238)\",\"bgtfw_menu_items_hover_background_sticky-main\":\"color-3:rgb(238,238,238)\",\"bgtfw_menu_items_hover_background_sticky-secondary\":\"color-3:rgb(238,238,238)\",\"bgtfw_menu_items_hover_background_sticky-tertiary\":\"color-3:rgb(238,238,238)\",\"bgtfw_menu_items_hover_background_sticky-quaternary\":\"color-3:rgb(238,238,238)\",\"bgtfw_menu_items_hover_background_sticky-social\":\"color-3:rgb(238,238,238)\",\"bgtfw_menu_items_link_color_secondary\":\"color-2:rgb(0,3,96)\",\"bgtfw_menu_items_link_color_tertiary\":\"color-2:rgb(0,3,96)\",\"bgtfw_menu_items_link_color_quaternary\":\"color-2:rgb(0,3,96)\",\"bgtfw_menu_items_link_color_sticky-main\":\"color-2:rgb(0,3,96)\",\"bgtfw_menu_items_link_color_sticky-secondary\":\"color-2:rgb(0,3,96)\",\"bgtfw_menu_items_link_color_sticky-tertiary\":\"color-2:rgb(0,3,96)\",\"bgtfw_menu_items_link_color_sticky-quaternary\":\"color-2:rgb(0,3,96)\",\"bgtfw_menu_items_link_color_sticky-social\":\"color-2:rgb(0,3,96)\",\"bgtfw_menu_items_active_link_color_secondary\":\"color-1:rgb(0,167,225)\",\"bgtfw_menu_items_active_link_color_tertiary\":\"color-1:rgb(0,167,225)\",\"bgtfw_menu_items_active_link_color_quaternary\":\"color-1:rgb(0,167,225)\",\"bgtfw_menu_items_active_link_color_sticky-main\":\"color-1:rgb(0,167,225)\",\"bgtfw_menu_items_active_link_color_sticky-secondary\":\"color-1:rgb(0,167,225)\",\"bgtfw_menu_items_active_link_color_sticky-tertiary\":\"color-1:rgb(0,167,225)\",\"bgtfw_menu_items_active_link_color_sticky-quaternary\":\"color-1:rgb(0,167,225)\",\"bgtfw_menu_items_active_link_color_sticky-social\":\"color-1:rgb(0,167,225)\",\"bgtfw_menu_items_active_link_border_color_secondary\":\"color-3:rgb(238,238,238)\",\"bgtfw_menu_items_active_link_border_color_tertiary\":\"color-3:rgb(238,238,238)\",\"bgtfw_menu_items_active_link_border_color_quaternary\":\"color-3:rgb(238,238,238)\",\"bgtfw_menu_items_active_link_border_color_social\":\"color-3:rgb(238,238,238)\",\"bgtfw_menu_items_active_link_border_color_sticky-main\":\"color-3:rgb(238,238,238)\",\"bgtfw_menu_items_active_link_border_color_sticky-secondary\":\"color-3:rgb(238,238,238)\",\"bgtfw_menu_items_active_link_border_color_sticky-tertiary\":\"color-3:rgb(238,238,238)\",\"bgtfw_menu_items_active_link_border_color_sticky-quaternary\":\"color-3:rgb(238,238,238)\",\"bgtfw_menu_items_active_link_border_color_sticky-social\":\"color-3:rgb(238,238,238)\",\"hide_boldgrid_attribution\":false,\"bgtfw_site_title_typography\":{\"font-family\":\"Yantramanav\",\"font-size\":\"46px\",\"text-transform\":\"uppercase\",\"line-height\":\"1.5\",\"variant\":\"500\",\"font-backup\":\"\",\"font-weight\":500,\"font-style\":\"normal\"},\"bgtfw_tagline_typography\":{\"font-family\":\"Raleway\",\"font-size\":\"22px\",\"text-transform\":\"none\",\"line-height\":\"1.4\",\"variant\":\"regular\",\"font-backup\":\"\",\"font-weight\":400,\"font-style\":\"normal\"},\"bgtfw_headings_typography\":{\"font-family\":\"Yantramanav\",\"line-height\":\"1.3\",\"text-transform\":\"uppercase\",\"variant\":\"500\",\"font-backup\":\"\",\"font-weight\":500,\"font-style\":\"normal\"},\"bgtfw_headings_font_size\":\"18\",\"bgtfw_body_typography\":{\"font-family\":\"Montserrat\",\"font-size\":\"18px\",\"line-height\":\"1.4\",\"text-transform\":\"none\",\"variant\":\"regular\",\"font-backup\":\"\",\"font-weight\":400,\"font-style\":\"normal\"},\"bgtfw_header_layout\":[{\"container\":\"full-width\",\"items\":[{\"key\":\"menu\",\"type\":\"boldgrid_menu_main\",\"align\":\"c\",\"uid\":\"h2029\"}]},{\"container\":\"full-width\",\"items\":[{\"type\":\"boldgrid_site_identity\",\"key\":\"branding\",\"align\":\"c\",\"display\":[{\"selector\":\".custom-logo-link\",\"display\":\"hide\",\"title\":\"Logo\"},{\"selector\":\".site-title\",\"display\":\"show\",\"title\":\"Title\"},{\"selector\":\".site-description\",\"display\":\"hide\",\"title\":\"Tagline\"}],\"uid\":\"h2016\"}]}],\"bgtfw_menu_background_main\":\"color-5:rgb(1,1,63)\",\"bgtfw_menu_typography_main\":{\"font-family\":\"Montserrat\",\"font-size\":\"16px\",\"line-height\":\"1.5\",\"text-transform\":\"none\",\"variant\":\"500\",\"font-backup\":\"\",\"font-weight\":500,\"font-style\":\"normal\"},\"bgtfw_header_border\":{\"css\":\".site-header header{border-top-width:0px;border-right-width:0px;border-bottom-width:2px;border-left-width:0px;border-style: solid;border-color:var(--color-1);;}\",\"media\":\"{\\\"base\\\":{\\\"unit\\\":\\\"px\\\",\\\"slidersLinked\\\":false,\\\"values\\\":{\\\"top\\\":0,\\\"right\\\":0,\\\"bottom\\\":2,\\\"left\\\":0},\\\"css\\\":\\\".site-header header{border-top-width:0px;border-right-width:0px;border-bottom-width:2px;border-left-width:0px;border-style: solid;border-color:var(--color-1);;}\\\",\\\"type\\\":\\\"solid\\\",\\\"color\\\":\\\"color-1:rgb(249, 91, 38)\\\"}}\",\"ID\":0,\"filter\":\"raw\"},\"bgtfw_footer_layout\":[{\"container\":\"full-width\",\"items\":[{\"key\":\"menu\",\"type\":\"boldgrid_menu_social\",\"align\":\"c\",\"uid\":\"f2027\"}]},{\"container\":\"full-width\",\"items\":[{\"type\":\"boldgrid_display_attribution_links\",\"key\":\"attribution\",\"align\":\"c\",\"uid\":\"f2011\"}]}],\"bgtfw_footer_padding\":{\"media\":\"{\\\"base\\\":{\\\"unit\\\":\\\"em\\\",\\\"slidersLinked\\\":false,\\\"values\\\":{\\\"top\\\":1,\\\"right\\\":0,\\\"bottom\\\":1,\\\"left\\\":0},\\\"css\\\":\\\"#colophon.site-footer{padding-top:1em;padding-right:0em;padding-bottom:1em;padding-left:0em;}\\\"}}\",\"css\":\"#colophon.site-footer{padding-top:1em;padding-right:0em;padding-bottom:1em;padding-left:0em;}\",\"ID\":0,\"filter\":\"raw\"},\"bgtfw_header_padding\":{\"media\":\"{\\\"base\\\":{\\\"unit\\\":\\\"em\\\",\\\"slidersLinked\\\":false,\\\"values\\\":{\\\"top\\\":0,\\\"right\\\":0,\\\"bottom\\\":0.3,\\\"left\\\":0},\\\"css\\\":\\\".site-header header{padding-top:0em;padding-right:0em;padding-bottom:0.3em;padding-left:0em;}\\\"}}\",\"css\":\".site-header header{padding-top:0em;padding-right:0em;padding-bottom:0.3em;padding-left:0em;}\",\"ID\":0,\"filter\":\"raw\"},\"bgtfw_blog_blog_page_sidebar\":\"left-sidebar\",\"bgtfw_pages_blog_blog_page_layout_columns\":\"2\",\"bgtfw_blog_page_container\":\"\",\"bgtfw_pages_blog_blog_page_layout_content\":\"excerpt\",\"bgtfw_pages_blog_blog_page_layout_excerpt_length\":\"42\",\"bgtfw_global_title_size\":\"h2\",\"bgtfw_global_title_alignment\":\"center\",\"bgtfw_global_title_position\":\"above\",\"bgtfw_blog_post_header_meta_display\":\"none\",\"bgtfw_blog_post_header_date_display\":\"inherit\",\"bgtfw_blog_post_header_byline_display\":\"none\",\"bgtfw_blog_post_header_feat_image_position\":\"above\",\"bgtfw_menu_items_hover_effect_main\":\"hvr-sweep-to-right\",\"bgtfw_blog_post_header_title_size\":\"h3\",\"bgtfw_blog_post_header_title_position\":\"left\",\"bgtfw_blog_post_readmore_type\":\"btn button-primary\",\"bgtfw_blog_post_readmore_position\":\"left\",\"bgtfw_layout_blog\":\"left-sidebar\",\"bgtfw_pages_blog_posts_layout_layout\":\"\",\"bgtfw_menu_items_active_link_background_main\":\"color-4:rgb(20,0,112)\",\"bgtfw_blog_posts_container\":\"\"}\";s:14:\"checklist_html\";N;s:6:\"layout\";N;s:19:\"has_page_containers\";s:1:\"1\";s:17:\"homepage_theme_id\";s:2:\"56\";s:7:\"in_menu\";s:1:\"1\";s:10:\"menu_order\";s:1:\"0\";s:23:\"featured_image_asset_id\";N;s:11:\"is_readonly\";s:1:\"0\";s:8:\"is_posts\";s:1:\"0\";s:12:\"is_blog_post\";s:1:\"0\";}i:1;O:8:\"stdClass\":17:{s:2:\"id\";s:2:\"67\";s:16:\"page_revision_id\";s:3:\"326\";s:10:\"page_title\";s:12:\"Blogging 101\";s:9:\"page_slug\";s:12:\"blogging-101\";s:9:\"post_type\";s:4:\"post\";s:4:\"code\";s:0:\"\";s:10:\"theme_mods\";N;s:14:\"checklist_html\";s:0:\"\";s:6:\"layout\";s:7:\"default\";s:19:\"has_page_containers\";s:1:\"1\";s:17:\"homepage_theme_id\";N;s:7:\"in_menu\";s:1:\"0\";s:10:\"menu_order\";s:1:\"0\";s:23:\"featured_image_asset_id\";N;s:11:\"is_readonly\";s:1:\"0\";s:8:\"is_posts\";s:1:\"0\";s:12:\"is_blog_post\";s:1:\"1\";}i:2;O:8:\"stdClass\":17:{s:2:\"id\";s:2:\"68\";s:16:\"page_revision_id\";s:3:\"331\";s:10:\"page_title\";s:16:\"Basic Taxonomies\";s:9:\"page_slug\";s:16:\"basic-taxonomies\";s:9:\"post_type\";s:4:\"post\";s:4:\"code\";s:0:\"\";s:10:\"theme_mods\";N;s:14:\"checklist_html\";s:0:\"\";s:6:\"layout\";s:7:\"default\";s:19:\"has_page_containers\";s:1:\"1\";s:17:\"homepage_theme_id\";N;s:7:\"in_menu\";s:1:\"0\";s:10:\"menu_order\";s:1:\"0\";s:23:\"featured_image_asset_id\";N;s:11:\"is_readonly\";s:1:\"0\";s:8:\"is_posts\";s:1:\"0\";s:12:\"is_blog_post\";s:1:\"1\";}i:3;O:8:\"stdClass\":17:{s:2:\"id\";s:2:\"69\";s:16:\"page_revision_id\";s:4:\"1683\";s:10:\"page_title\";s:23:\"Tips For Better Writing\";s:9:\"page_slug\";s:23:\"tips-for-better-writing\";s:9:\"post_type\";s:4:\"post\";s:4:\"code\";s:0:\"\";s:10:\"theme_mods\";N;s:14:\"checklist_html\";s:0:\"\";s:6:\"layout\";s:7:\"default\";s:19:\"has_page_containers\";s:1:\"0\";s:17:\"homepage_theme_id\";N;s:7:\"in_menu\";s:1:\"0\";s:10:\"menu_order\";s:1:\"0\";s:23:\"featured_image_asset_id\";N;s:11:\"is_readonly\";s:1:\"0\";s:8:\"is_posts\";s:1:\"0\";s:12:\"is_blog_post\";s:1:\"1\";}i:4;O:8:\"stdClass\":17:{s:2:\"id\";s:2:\"19\";s:16:\"page_revision_id\";s:4:\"3900\";s:10:\"page_title\";s:8:\"About Us\";s:9:\"page_slug\";s:8:\"about-us\";s:9:\"post_type\";s:4:\"page\";s:4:\"code\";s:6255:\"\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-top: 42px;\">\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<h1>Quality Over Quantity</h1>\r\n<h4>We Do It Right The First Time</h4>\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr></div>\r\n</div>\r\n</div>\r\n</div>\r\nWe\'ve all run into real estate agents who seem to always be in a hurry. They can\'t stop and take the time to make sure your needs are being met because they\'re afraid they\'ll miss out on that next big deal. At Krista Crowder Real Estate, we think buying or selling a home should be a careful, deliberate process that meets all your needs, not done so quickly that you don\'t know what happened.\r\n\r\nWe use a unique, multifaceted approach to ensure that our customers are put first, no matter what. When we opened 30 years ago, we believed in providing quality customer service to meet your family\'s needs, and we still do today. We\'re your realtor yesterday, today and tomorrow.\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><a class=\"button-primary\" href=\"#\">View Our Services</a></p>\r\n&nbsp;\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"aligncenter size-full wp-image-119\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL0hOUXRBWG5RbEtBLzYwMHg0NTA_3D-imhwpb-ablx9xvvio15zbg.jpg\" alt=\"\" data-imhwpb-asset-id=\"780397\" width=\"600\" height=\"450\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-1 col-sm-12 col-xs-12\">\r\n<p class=\"mod-img\"><img src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/58a6d85b-b046b108-epstock130300058-300x300.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"92|any\" width=\"300\" class=\"wp-image-120\"></p>\r\n<p class=\"mod-img\"><img src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/8af423c8-69090677-aomarch131000010-300x300.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"92|any\" width=\"300\" class=\"wp-image-121\"></p>\r\n<p class=\"mod-img\"><img src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/79502064-7e911594-detanan140400125-300x300.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"92|any\" width=\"300\" class=\"wp-image-122\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone size-medium wp-image-123\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1ZCczFDeXcyRDU4LzYwMHg2MDA_3D-imhwpb-kvn8geljy5ro8kv.jpg\" alt=\"\" data-imhwpb-asset-id=\"780398\" width=\"300\" height=\"300\"></p>\r\n<p class=\"mod-img\"><img class=\"alignnone size-medium wp-image-124\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1dMOGVQdmpONzVFLzYwMHg2MDA_3D-imhwpb-w7q2zqdkflext39.jpg\" alt=\"\" data-imhwpb-asset-id=\"780399\" width=\"300\" height=\"300\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"aligncenter size-full wp-image-125\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL19NbjRpOG5HMUswLzYwMHg0NTA_3D-imhwpb-b28rbl4nmwu3sjz.jpg\" alt=\"\" data-imhwpb-asset-id=\"780400\" width=\"600\" height=\"450\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<h2>Selling Your Home?</h2>\r\n<h4>Explore Your Options With Us</h4>\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr></div>\r\n</div>\r\n</div>\r\n</div>\r\nWe know there are many reasons why you need to sell your home, and some of them can be very complicated. That\'s why we discuss your options before having you sign any paperwork - we want you to be able to make the best choice for your family. Whether you\'re moving across town, out of state, across the country or around the world, we\'ll take care of you.\r\n\r\nDo you need income to pay your mortgage but don\'t want to sell while the housing market is still in a slump? No problem! We offer a variety of services. We\'ll ensure you\'ll get more visibility in a specific market to get the right price. If you\'d rather rent your home, we\'ll provide property management.\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><a class=\"button-primary\" href=\"#\">Featured Homes</a> <a class=\"button-secondary\" href=\"#\">Listings</a></p>\r\n&nbsp;\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<h2>Buying a New Home?</h2>\r\n<h4>Rest Assured In Our Services</h4>\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr></div>\r\n</div>\r\n</div>\r\n</div>\r\nWe know that buying a home can be a truly nerve wracking experience. Whether you\'re looking for your first home or are downsizing because of an empty nest, we can help you find the perfect home. Do you need to step up to an executive-level luxury home? Want a quiet place in the woods to reflect during your retirement? Our access to a variety of databases ensures you\'ll be happy with your options.\r\n\r\nWe also believe in small town values and honesty. If the basement always leaks after a hard rain, we\'ll tell you. We won\'t tell you the roof is new when it\'s ten years old. You\'ll get more than you expect with exceptional service.\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p class=\"\"><a class=\"button-primary\" href=\"#\">View Our Services</a></p>\r\n&nbsp;\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"aligncenter size-full wp-image-126\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL2JqZWo4QlkxSllRLzYwMHg0NTA_3D-imhwpb-csgvgj7sie6vvcj.jpg\" alt=\"\" data-imhwpb-asset-id=\"780401\" width=\"600\" height=\"450\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n\n\n\";s:10:\"theme_mods\";s:0:\"\";s:14:\"checklist_html\";s:0:\"\";s:6:\"layout\";s:7:\"default\";s:19:\"has_page_containers\";s:1:\"1\";s:17:\"homepage_theme_id\";N;s:7:\"in_menu\";s:1:\"1\";s:10:\"menu_order\";s:1:\"1\";s:23:\"featured_image_asset_id\";N;s:11:\"is_readonly\";s:1:\"0\";s:8:\"is_posts\";s:1:\"0\";s:12:\"is_blog_post\";s:1:\"0\";}i:5;O:8:\"stdClass\":17:{s:2:\"id\";s:2:\"25\";s:16:\"page_revision_id\";s:4:\"3664\";s:10:\"page_title\";s:4:\"Info\";s:9:\"page_slug\";s:4:\"info\";s:9:\"post_type\";s:4:\"page\";s:4:\"code\";s:5422:\"\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-7 col-xs-12 col-sm-12\">\r\n<h3>Some of Our Everyday Offerings:</h3>\r\nWhen you\'re looking for a new home, it can seem like there are a world of opportunities - too many to choose from! These listings cover some properties that are similar to many others we have available.\r\n\r\nAre you looking for an inexpensive cottage to rent for additional income? A duplex to keep a closer eye on elderly relatives? A picture-perfect subdivision home? We can find the perfect home for you.\r\n\r\nAt Krista Crowder Real Estate, we match you to the perfect home, not the one we\'re trying to sell.\r\n\r\n</div>\r\n<div class=\"col-md-5 col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/1ec7c829-7fdc71fe-AnikaSalsera130900111-555x350.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"93|landscape\" width=\"555\" class=\"wp-image-127\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-5 text-center col-xs-12\">\r\n<p class=\"mod-img\"><img src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/fa379a03-2116d75a-jodiejohnson150100028-555x350.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"92|landscape\" width=\"555\" class=\"wp-image-128\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-7 col-xs-12\">\r\n<h2>Subdivision Perfection at Old Oaks</h2>\r\n<h4>Get More For Your Money</h4>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr></div>\r\n</div>\r\n</div>\r\n</div>\r\nThis 4 bedroom 3 bath home provides plenty of high-class details for far less than you might expect. With numerous options available including fireplaces, flooring, paint and a gourmet kitchen, buy now and get your home your way in this final expansion at in-demand Old Oaks.\r\n<p class=\"p-button-primary text-center\"><a class=\"button-primary\" href=\"#\">READ MORE</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-5 text-center col-xs-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone size-full wp-image-129\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tLzAyZjNLQzN6S1BrLzYwMHg0NTA_3D-imhwpb-kseohjmebzmdss1.jpg\" alt=\"\" data-imhwpb-asset-id=\"780402\" width=\"600\" height=\"450\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-7 col-xs-12\">\r\n<h2>Convenient to Downtown</h2>\r\n<h4>Modern Living</h4>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr></div>\r\n</div>\r\n</div>\r\n</div>\r\nOnce a series of artists\' lofts, these older buildings have amazing architectural features. Updated electrical service, windows and HVAC provide all the charm of the industrial era with all the comforts of the modern era along with fabulous hand-crafted details.\r\n<p class=\"p-button-primary text-center\"><a class=\"button-primary\" href=\"#\">READ MORE</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-5 text-center col-xs-12\">\r\n<p class=\"mod-img\"><img src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/b5518de7-aecf4fe-dotshock150602357-555x350.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"92|landscape\" width=\"555\" class=\"wp-image-130\"></p>\r\n\r\n</div>\r\n<div class=\"col-md-6 col-sm-7 col-xs-12\">\r\n<h2>Country Estate</h2>\r\n<h4>Plenty of Breathing Space</h4>\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr></div>\r\n</div>\r\n</div>\r\n</div>\r\nWant the best a subdivision has to offer while still having room to breathe? This country subdivision still has several 5- and 10-acre plots with a variety of house plans available through their builder. Forest, river, field and valley, this subdivision has it all at a great price.\r\n<p class=\"p-button-primary text-center\"><a class=\"button-primary\" href=\"#\">READ MORE</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n\n\n\";s:10:\"theme_mods\";N;s:14:\"checklist_html\";s:0:\"\";s:6:\"layout\";s:7:\"default\";s:19:\"has_page_containers\";s:1:\"1\";s:17:\"homepage_theme_id\";N;s:7:\"in_menu\";s:1:\"1\";s:10:\"menu_order\";s:1:\"3\";s:23:\"featured_image_asset_id\";N;s:11:\"is_readonly\";s:1:\"0\";s:8:\"is_posts\";s:1:\"0\";s:12:\"is_blog_post\";s:1:\"0\";}i:6;O:8:\"stdClass\":17:{s:2:\"id\";s:2:\"27\";s:16:\"page_revision_id\";s:4:\"3897\";s:10:\"page_title\";s:8:\"Services\";s:9:\"page_slug\";s:8:\"services\";s:9:\"post_type\";s:4:\"page\";s:4:\"code\";s:4946:\"\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-8 col-xs-12 col-sm-12\">\r\n<h2>Serving Our Community</h2>\r\n<h4>Taking Care of Our Neighbors</h4>\r\nAt Krista Crowder Real Estate, we believe in serving our community. Beyond the realty and property management services we offer, we also participate in many area organizations to improve our home town. From Habitat for Humanity and Children\'s Miracle Network to Peewee baseball and Our Town Art Fair, we provide assistance to groups that serve to better our community in a wide variety of ways.\r\n\r\nFor home buyers, we offer comprehensive services as a buyer\'s agent, from arranging mortgage options and helping you evaluate a home\'s future resale potential to providing advice on negotiating your offer and walking you through the closing process.\r\n\r\nFor our home owners, we offer a variety of options in handling your home sale, from evaluating it\'s potential in the current market and marketing it to a specific audience to securing the top dollar for your home and ensuring your closing goes smoothly. We also offer comprehensive property management options if you\'re not ready to sell yet.\r\n<div class=\"row gridblock\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"mod-space\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"gridblock\">\r\n<p class=\"p-button-primary\"><a class=\"button-primary\" href=\"#\">Take A Tour</a></p>\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 text-center col-xs-12 col-sm-12\">\r\n<p class=\"mod-img\"><img class=\"alignnone size-full wp-image-131\" src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL05zcmdBeUVwVEhRLzQ1MHg2MDA_3D-imhwpb-624eetygobomcyf.jpg\" alt=\"\" data-imhwpb-asset-id=\"780403\" width=\"450\" height=\"600\"></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 text-center col-xs-12 col-sm-12\">\r\n<h2>Our Services</h2>\r\n<h4>We\'re proud to offer a wide range of comprehensive services to homeowners and home buyers in our community.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n<div class=\"row\">\r\n<div class=\"col-md-12 col-xs-12 col-sm-12\">\r\n\r\n<hr></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-6\">\r\n<div class=\"row\">\r\n<div class=\"col-md-2 col-xs-6 col-sm-2\">\r\n<div class=\"text-center\" data-imhwpb-draggable=\"true\"><i class=\"fa fa-2x fa-home\"> </i></div>\r\n</div>\r\n<div class=\"col-md-10 col-xs-6 col-sm-10\">\r\n<div class=\"xs-center sm-center\">\r\n<h5>Pre-Listing and Listing Service</h5>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-6\">\r\n<div class=\"row\">\r\n<div class=\"col-md-2 col-xs-6 col-sm-2\">\r\n<div class=\"text-center\" data-imhwpb-draggable=\"true\"><i class=\"fa fa-2x fa-line-chart\"> </i></div>\r\n</div>\r\n<div class=\"col-md-10 col-xs-6 col-sm-10\">\r\n<div class=\"xs-center sm-center\">\r\n<h5>Marketing Via Print and Internet</h5>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-6\">\r\n<div class=\"row\">\r\n<div class=\"col-md-2 col-xs-6 col-sm-2\">\r\n<div class=\"text-center\" data-imhwpb-draggable=\"true\"><i class=\"fa fa-2x fa-suitcase\"> </i></div>\r\n</div>\r\n<div class=\"col-md-10 col-xs-6 col-sm-10\">\r\n<div class=\"xs-center sm-center\">\r\n<h5>Property Management Service</h5>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-6\">\r\n<div class=\"row\">\r\n<div class=\"col-md-2 col-xs-6 col-sm-2\">\r\n<div class=\"text-center\" data-imhwpb-draggable=\"true\"><i class=\"fa fa-2x fa-clipboard\"> </i></div>\r\n</div>\r\n<div class=\"col-md-10 col-xs-6 col-sm-10\">\r\n<div class=\"xs-center sm-center\">\r\n<h5>Buyer\'s Agent Service</h5>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"boldgrid-section\">\r\n<div class=\"container\">\r\n<div class=\"row\" style=\"padding-bottom: 50px;\">\r\n<div class=\"col-md-6 col-xs-12 col-sm-6\">\r\n<div class=\"row\">\r\n<div class=\"col-md-2 col-xs-6 col-sm-2\">\r\n<div class=\"text-center\" data-imhwpb-draggable=\"true\"><i class=\"fa fa-2x fa-bar-chart\"> </i></div>\r\n</div>\r\n<div class=\"col-md-10 col-xs-6 col-sm-10\">\r\n<div class=\"xs-center sm-center\">\r\n<h5>Monitoring Offer Requirements</h5>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-xs-12 col-sm-6\">\r\n<div class=\"row\">\r\n<div class=\"col-md-2 col-xs-6 col-sm-2\">\r\n<div class=\"text-center\" data-imhwpb-draggable=\"true\"><i class=\"fa fa-2x fa-check-square-o\"> </i></div>\r\n</div>\r\n<div class=\"col-md-10 col-xs-6 col-sm-10\">\r\n<div class=\"xs-center sm-center\">\r\n<h5>Ensuring a Smooth Closing</h5>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n\n\n\";s:10:\"theme_mods\";N;s:14:\"checklist_html\";s:0:\"\";s:6:\"layout\";s:7:\"default\";s:19:\"has_page_containers\";s:1:\"1\";s:17:\"homepage_theme_id\";N;s:7:\"in_menu\";s:1:\"1\";s:10:\"menu_order\";s:1:\"4\";s:23:\"featured_image_asset_id\";N;s:11:\"is_readonly\";s:1:\"0\";s:8:\"is_posts\";s:1:\"0\";s:12:\"is_blog_post\";s:1:\"0\";}i:7;O:8:\"stdClass\":17:{s:2:\"id\";s:2:\"20\";s:16:\"page_revision_id\";s:3:\"300\";s:10:\"page_title\";s:10:\"Contact Us\";s:9:\"page_slug\";s:10:\"contact-us\";s:9:\"post_type\";s:4:\"page\";s:4:\"code\";s:606:\"\n<div class=\"boldgrid-section\"><div class=\"container\"><div class=\"row\">\r\n<div class=\"col-md-8 col-sm-8 col-xs-12\">\r\nPlease use the contact form below, if you have any general questions or requests about our services.\r\n\r\nWe will try our best to respond back to you within 24 hours.\r\n\r\n[weforms id=\"57\"]\r\n\r\n</div>\r\n<div class=\"col-md-4 col-sm-4 col-xs-12\">\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<img src=\"https://estatesatnuevo.com/wp-content/uploads/2022/03/e029adc9-84defea2-elwynn110400180-360x300.jpg\" alt=\"\" data-imhwpb-built-photo-search=\"52|portrait\" width=\"360\" class=\"wp-image-109\">\r\n\r\n</div>\r\n</div></div></div>\n\n\";s:10:\"theme_mods\";N;s:14:\"checklist_html\";s:0:\"\";s:6:\"layout\";s:7:\"default\";s:19:\"has_page_containers\";s:1:\"1\";s:17:\"homepage_theme_id\";N;s:7:\"in_menu\";s:1:\"1\";s:10:\"menu_order\";s:2:\"99\";s:23:\"featured_image_asset_id\";N;s:11:\"is_readonly\";s:1:\"0\";s:8:\"is_posts\";s:1:\"0\";s:12:\"is_blog_post\";s:1:\"0\";}}s:10:\"additional\";a:0:{}}}','yes'),(1465,'widget_weforms_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(395823,'_site_transient_timeout_kirki_googlefonts_cache','1687413650','no'),(395824,'_site_transient_kirki_googlefonts_cache','a:1359:{s:7:\"ABeeZee\";a:3:{s:5:\"label\";s:7:\"ABeeZee\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Abel\";a:3:{s:5:\"label\";s:4:\"Abel\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Abhaya Libre\";a:3:{s:5:\"label\";s:12:\"Abhaya Libre\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Abril Fatface\";a:3:{s:5:\"label\";s:13:\"Abril Fatface\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Aclonica\";a:3:{s:5:\"label\";s:8:\"Aclonica\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Acme\";a:3:{s:5:\"label\";s:4:\"Acme\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Actor\";a:3:{s:5:\"label\";s:5:\"Actor\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Adamina\";a:3:{s:5:\"label\";s:7:\"Adamina\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Advent Pro\";a:3:{s:5:\"label\";s:10:\"Advent Pro\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Aguafina Script\";a:3:{s:5:\"label\";s:15:\"Aguafina Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Akaya Kanadaka\";a:3:{s:5:\"label\";s:14:\"Akaya Kanadaka\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Akaya Telivigala\";a:3:{s:5:\"label\";s:16:\"Akaya Telivigala\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Akronim\";a:3:{s:5:\"label\";s:7:\"Akronim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Aladin\";a:3:{s:5:\"label\";s:6:\"Aladin\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Alata\";a:3:{s:5:\"label\";s:5:\"Alata\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Alatsi\";a:3:{s:5:\"label\";s:6:\"Alatsi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Aldrich\";a:3:{s:5:\"label\";s:7:\"Aldrich\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Alef\";a:3:{s:5:\"label\";s:4:\"Alef\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Alegreya\";a:3:{s:5:\"label\";s:8:\"Alegreya\";s:8:\"variants\";a:12:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Alegreya SC\";a:3:{s:5:\"label\";s:11:\"Alegreya SC\";s:8:\"variants\";a:10:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:3:\"800\";i:5;s:9:\"800italic\";i:6;s:3:\"900\";i:7;s:9:\"900italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Alegreya Sans\";a:3:{s:5:\"label\";s:13:\"Alegreya Sans\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Alegreya Sans SC\";a:3:{s:5:\"label\";s:16:\"Alegreya Sans SC\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Aleo\";a:3:{s:5:\"label\";s:4:\"Aleo\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Alex Brush\";a:3:{s:5:\"label\";s:10:\"Alex Brush\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Alfa Slab One\";a:3:{s:5:\"label\";s:13:\"Alfa Slab One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Alice\";a:3:{s:5:\"label\";s:5:\"Alice\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Alike\";a:3:{s:5:\"label\";s:5:\"Alike\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Alike Angular\";a:3:{s:5:\"label\";s:13:\"Alike Angular\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Allan\";a:3:{s:5:\"label\";s:5:\"Allan\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Allerta\";a:3:{s:5:\"label\";s:7:\"Allerta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Allerta Stencil\";a:3:{s:5:\"label\";s:15:\"Allerta Stencil\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Allison\";a:3:{s:5:\"label\";s:7:\"Allison\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Allura\";a:3:{s:5:\"label\";s:6:\"Allura\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Almarai\";a:3:{s:5:\"label\";s:7:\"Almarai\";s:8:\"variants\";a:4:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:3:\"800\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Almendra\";a:3:{s:5:\"label\";s:8:\"Almendra\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Almendra Display\";a:3:{s:5:\"label\";s:16:\"Almendra Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Almendra SC\";a:3:{s:5:\"label\";s:11:\"Almendra SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Alumni Sans\";a:3:{s:5:\"label\";s:11:\"Alumni Sans\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Amarante\";a:3:{s:5:\"label\";s:8:\"Amarante\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Amaranth\";a:3:{s:5:\"label\";s:8:\"Amaranth\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Amatic SC\";a:3:{s:5:\"label\";s:9:\"Amatic SC\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Amethysta\";a:3:{s:5:\"label\";s:9:\"Amethysta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Amiko\";a:3:{s:5:\"label\";s:5:\"Amiko\";s:8:\"variants\";a:3:{i:0;s:3:\"600\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Amiri\";a:3:{s:5:\"label\";s:5:\"Amiri\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Amita\";a:3:{s:5:\"label\";s:5:\"Amita\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Anaheim\";a:3:{s:5:\"label\";s:7:\"Anaheim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Andada Pro\";a:3:{s:5:\"label\";s:10:\"Andada Pro\";s:8:\"variants\";a:10:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Andika\";a:3:{s:5:\"label\";s:6:\"Andika\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Andika New Basic\";a:3:{s:5:\"label\";s:16:\"Andika New Basic\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Angkor\";a:3:{s:5:\"label\";s:6:\"Angkor\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:24:\"Annie Use Your Telescope\";a:3:{s:5:\"label\";s:24:\"Annie Use Your Telescope\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Anonymous Pro\";a:3:{s:5:\"label\";s:13:\"Anonymous Pro\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:5:\"Antic\";a:3:{s:5:\"label\";s:5:\"Antic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Antic Didone\";a:3:{s:5:\"label\";s:12:\"Antic Didone\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Antic Slab\";a:3:{s:5:\"label\";s:10:\"Antic Slab\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Anton\";a:3:{s:5:\"label\";s:5:\"Anton\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Antonio\";a:3:{s:5:\"label\";s:7:\"Antonio\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Arapey\";a:3:{s:5:\"label\";s:6:\"Arapey\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Arbutus\";a:3:{s:5:\"label\";s:7:\"Arbutus\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Arbutus Slab\";a:3:{s:5:\"label\";s:12:\"Arbutus Slab\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"Architects Daughter\";a:3:{s:5:\"label\";s:19:\"Architects Daughter\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Archivo\";a:3:{s:5:\"label\";s:7:\"Archivo\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Archivo Black\";a:3:{s:5:\"label\";s:13:\"Archivo Black\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Archivo Narrow\";a:3:{s:5:\"label\";s:14:\"Archivo Narrow\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Are You Serious\";a:3:{s:5:\"label\";s:15:\"Are You Serious\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Aref Ruqaa\";a:3:{s:5:\"label\";s:10:\"Aref Ruqaa\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Arima Madurai\";a:3:{s:5:\"label\";s:13:\"Arima Madurai\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Arimo\";a:3:{s:5:\"label\";s:5:\"Arimo\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Arizonia\";a:3:{s:5:\"label\";s:8:\"Arizonia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Armata\";a:3:{s:5:\"label\";s:6:\"Armata\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Arsenal\";a:3:{s:5:\"label\";s:7:\"Arsenal\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Artifika\";a:3:{s:5:\"label\";s:8:\"Artifika\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Arvo\";a:3:{s:5:\"label\";s:4:\"Arvo\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Arya\";a:3:{s:5:\"label\";s:4:\"Arya\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Asap\";a:3:{s:5:\"label\";s:4:\"Asap\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Asap Condensed\";a:3:{s:5:\"label\";s:14:\"Asap Condensed\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Asar\";a:3:{s:5:\"label\";s:4:\"Asar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Asset\";a:3:{s:5:\"label\";s:5:\"Asset\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Assistant\";a:3:{s:5:\"label\";s:9:\"Assistant\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Astloch\";a:3:{s:5:\"label\";s:7:\"Astloch\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Asul\";a:3:{s:5:\"label\";s:4:\"Asul\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Athiti\";a:3:{s:5:\"label\";s:6:\"Athiti\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Atkinson Hyperlegible\";a:3:{s:5:\"label\";s:21:\"Atkinson Hyperlegible\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Atma\";a:3:{s:5:\"label\";s:4:\"Atma\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Atomic Age\";a:3:{s:5:\"label\";s:10:\"Atomic Age\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Aubrey\";a:3:{s:5:\"label\";s:6:\"Aubrey\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Audiowide\";a:3:{s:5:\"label\";s:9:\"Audiowide\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Autour One\";a:3:{s:5:\"label\";s:10:\"Autour One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Average\";a:3:{s:5:\"label\";s:7:\"Average\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Average Sans\";a:3:{s:5:\"label\";s:12:\"Average Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Averia Gruesa Libre\";a:3:{s:5:\"label\";s:19:\"Averia Gruesa Libre\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Averia Libre\";a:3:{s:5:\"label\";s:12:\"Averia Libre\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Averia Sans Libre\";a:3:{s:5:\"label\";s:17:\"Averia Sans Libre\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:18:\"Averia Serif Libre\";a:3:{s:5:\"label\";s:18:\"Averia Serif Libre\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Azeret Mono\";a:3:{s:5:\"label\";s:11:\"Azeret Mono\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:4:\"B612\";a:3:{s:5:\"label\";s:4:\"B612\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"B612 Mono\";a:3:{s:5:\"label\";s:9:\"B612 Mono\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:10:\"Bad Script\";a:3:{s:5:\"label\";s:10:\"Bad Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Bahiana\";a:3:{s:5:\"label\";s:7:\"Bahiana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Bahianita\";a:3:{s:5:\"label\";s:9:\"Bahianita\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Bai Jamjuree\";a:3:{s:5:\"label\";s:12:\"Bai Jamjuree\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Bakbak One\";a:3:{s:5:\"label\";s:10:\"Bakbak One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Ballet\";a:3:{s:5:\"label\";s:6:\"Ballet\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Baloo 2\";a:3:{s:5:\"label\";s:7:\"Baloo 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Baloo Bhai 2\";a:3:{s:5:\"label\";s:12:\"Baloo Bhai 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Baloo Bhaijaan 2\";a:3:{s:5:\"label\";s:16:\"Baloo Bhaijaan 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Baloo Bhaina 2\";a:3:{s:5:\"label\";s:14:\"Baloo Bhaina 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Baloo Chettan 2\";a:3:{s:5:\"label\";s:15:\"Baloo Chettan 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Baloo Da 2\";a:3:{s:5:\"label\";s:10:\"Baloo Da 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Baloo Paaji 2\";a:3:{s:5:\"label\";s:13:\"Baloo Paaji 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Baloo Tamma 2\";a:3:{s:5:\"label\";s:13:\"Baloo Tamma 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Baloo Tammudu 2\";a:3:{s:5:\"label\";s:15:\"Baloo Tammudu 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Baloo Thambi 2\";a:3:{s:5:\"label\";s:14:\"Baloo Thambi 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Balsamiq Sans\";a:3:{s:5:\"label\";s:13:\"Balsamiq Sans\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Balthazar\";a:3:{s:5:\"label\";s:9:\"Balthazar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Bangers\";a:3:{s:5:\"label\";s:7:\"Bangers\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Barlow\";a:3:{s:5:\"label\";s:6:\"Barlow\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Barlow Condensed\";a:3:{s:5:\"label\";s:16:\"Barlow Condensed\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Barlow Semi Condensed\";a:3:{s:5:\"label\";s:21:\"Barlow Semi Condensed\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Barriecito\";a:3:{s:5:\"label\";s:10:\"Barriecito\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Barrio\";a:3:{s:5:\"label\";s:6:\"Barrio\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Basic\";a:3:{s:5:\"label\";s:5:\"Basic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Baskervville\";a:3:{s:5:\"label\";s:12:\"Baskervville\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Battambang\";a:3:{s:5:\"label\";s:10:\"Battambang\";s:8:\"variants\";a:5:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"900\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Baumans\";a:3:{s:5:\"label\";s:7:\"Baumans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Bayon\";a:3:{s:5:\"label\";s:5:\"Bayon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Be Vietnam Pro\";a:3:{s:5:\"label\";s:14:\"Be Vietnam Pro\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Bebas Neue\";a:3:{s:5:\"label\";s:10:\"Bebas Neue\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Belgrano\";a:3:{s:5:\"label\";s:8:\"Belgrano\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Bellefair\";a:3:{s:5:\"label\";s:9:\"Bellefair\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Belleza\";a:3:{s:5:\"label\";s:7:\"Belleza\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Bellota\";a:3:{s:5:\"label\";s:7:\"Bellota\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Bellota Text\";a:3:{s:5:\"label\";s:12:\"Bellota Text\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"BenchNine\";a:3:{s:5:\"label\";s:9:\"BenchNine\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Benne\";a:3:{s:5:\"label\";s:5:\"Benne\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Bentham\";a:3:{s:5:\"label\";s:7:\"Bentham\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Berkshire Swash\";a:3:{s:5:\"label\";s:15:\"Berkshire Swash\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Besley\";a:3:{s:5:\"label\";s:6:\"Besley\";s:8:\"variants\";a:12:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Beth Ellen\";a:3:{s:5:\"label\";s:10:\"Beth Ellen\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Bevan\";a:3:{s:5:\"label\";s:5:\"Bevan\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:21:\"Big Shoulders Display\";a:3:{s:5:\"label\";s:21:\"Big Shoulders Display\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:28:\"Big Shoulders Inline Display\";a:3:{s:5:\"label\";s:28:\"Big Shoulders Inline Display\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:25:\"Big Shoulders Inline Text\";a:3:{s:5:\"label\";s:25:\"Big Shoulders Inline Text\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:29:\"Big Shoulders Stencil Display\";a:3:{s:5:\"label\";s:29:\"Big Shoulders Stencil Display\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:26:\"Big Shoulders Stencil Text\";a:3:{s:5:\"label\";s:26:\"Big Shoulders Stencil Text\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:18:\"Big Shoulders Text\";a:3:{s:5:\"label\";s:18:\"Big Shoulders Text\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Bigelow Rules\";a:3:{s:5:\"label\";s:13:\"Bigelow Rules\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Bigshot One\";a:3:{s:5:\"label\";s:11:\"Bigshot One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Bilbo\";a:3:{s:5:\"label\";s:5:\"Bilbo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:16:\"Bilbo Swash Caps\";a:3:{s:5:\"label\";s:16:\"Bilbo Swash Caps\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"BioRhyme\";a:3:{s:5:\"label\";s:8:\"BioRhyme\";s:8:\"variants\";a:5:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"BioRhyme Expanded\";a:3:{s:5:\"label\";s:17:\"BioRhyme Expanded\";s:8:\"variants\";a:5:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Birthstone\";a:3:{s:5:\"label\";s:10:\"Birthstone\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:17:\"Birthstone Bounce\";a:3:{s:5:\"label\";s:17:\"Birthstone Bounce\";s:8:\"variants\";a:2:{i:0;s:3:\"500\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Biryani\";a:3:{s:5:\"label\";s:7:\"Biryani\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Bitter\";a:3:{s:5:\"label\";s:6:\"Bitter\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:23:\"Black And White Picture\";a:3:{s:5:\"label\";s:23:\"Black And White Picture\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Black Han Sans\";a:3:{s:5:\"label\";s:14:\"Black Han Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Black Ops One\";a:3:{s:5:\"label\";s:13:\"Black Ops One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Blinker\";a:3:{s:5:\"label\";s:7:\"Blinker\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Bodoni Moda\";a:3:{s:5:\"label\";s:11:\"Bodoni Moda\";s:8:\"variants\";a:12:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Bokor\";a:3:{s:5:\"label\";s:5:\"Bokor\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Bona Nova\";a:3:{s:5:\"label\";s:9:\"Bona Nova\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Bonbon\";a:3:{s:5:\"label\";s:6:\"Bonbon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Bonheur Royale\";a:3:{s:5:\"label\";s:14:\"Bonheur Royale\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Boogaloo\";a:3:{s:5:\"label\";s:8:\"Boogaloo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Bowlby One\";a:3:{s:5:\"label\";s:10:\"Bowlby One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Bowlby One SC\";a:3:{s:5:\"label\";s:13:\"Bowlby One SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Brawler\";a:3:{s:5:\"label\";s:7:\"Brawler\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Bree Serif\";a:3:{s:5:\"label\";s:10:\"Bree Serif\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Brygada 1918\";a:3:{s:5:\"label\";s:12:\"Brygada 1918\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Bubblegum Sans\";a:3:{s:5:\"label\";s:14:\"Bubblegum Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Bubbler One\";a:3:{s:5:\"label\";s:11:\"Bubbler One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Buda\";a:3:{s:5:\"label\";s:4:\"Buda\";s:8:\"variants\";a:1:{i:0;s:3:\"300\";}s:8:\"category\";s:7:\"display\";}s:7:\"Buenard\";a:3:{s:5:\"label\";s:7:\"Buenard\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Bungee\";a:3:{s:5:\"label\";s:6:\"Bungee\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Bungee Hairline\";a:3:{s:5:\"label\";s:15:\"Bungee Hairline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Bungee Inline\";a:3:{s:5:\"label\";s:13:\"Bungee Inline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Bungee Outline\";a:3:{s:5:\"label\";s:14:\"Bungee Outline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Bungee Shade\";a:3:{s:5:\"label\";s:12:\"Bungee Shade\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Butcherman\";a:3:{s:5:\"label\";s:10:\"Butcherman\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Butterfly Kids\";a:3:{s:5:\"label\";s:14:\"Butterfly Kids\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Cabin\";a:3:{s:5:\"label\";s:5:\"Cabin\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Cabin Condensed\";a:3:{s:5:\"label\";s:15:\"Cabin Condensed\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Cabin Sketch\";a:3:{s:5:\"label\";s:12:\"Cabin Sketch\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Caesar Dressing\";a:3:{s:5:\"label\";s:15:\"Caesar Dressing\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Cagliostro\";a:3:{s:5:\"label\";s:10:\"Cagliostro\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Cairo\";a:3:{s:5:\"label\";s:5:\"Cairo\";s:8:\"variants\";a:8:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Caladea\";a:3:{s:5:\"label\";s:7:\"Caladea\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Calistoga\";a:3:{s:5:\"label\";s:9:\"Calistoga\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Calligraffitti\";a:3:{s:5:\"label\";s:14:\"Calligraffitti\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Cambay\";a:3:{s:5:\"label\";s:6:\"Cambay\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Cambo\";a:3:{s:5:\"label\";s:5:\"Cambo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Candal\";a:3:{s:5:\"label\";s:6:\"Candal\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Cantarell\";a:3:{s:5:\"label\";s:9:\"Cantarell\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Cantata One\";a:3:{s:5:\"label\";s:11:\"Cantata One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Cantora One\";a:3:{s:5:\"label\";s:11:\"Cantora One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Capriola\";a:3:{s:5:\"label\";s:8:\"Capriola\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Caramel\";a:3:{s:5:\"label\";s:7:\"Caramel\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Carattere\";a:3:{s:5:\"label\";s:9:\"Carattere\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Cardo\";a:3:{s:5:\"label\";s:5:\"Cardo\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Carme\";a:3:{s:5:\"label\";s:5:\"Carme\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Carrois Gothic\";a:3:{s:5:\"label\";s:14:\"Carrois Gothic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Carrois Gothic SC\";a:3:{s:5:\"label\";s:17:\"Carrois Gothic SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Carter One\";a:3:{s:5:\"label\";s:10:\"Carter One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Castoro\";a:3:{s:5:\"label\";s:7:\"Castoro\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Catamaran\";a:3:{s:5:\"label\";s:9:\"Catamaran\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Caudex\";a:3:{s:5:\"label\";s:6:\"Caudex\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Caveat\";a:3:{s:5:\"label\";s:6:\"Caveat\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Caveat Brush\";a:3:{s:5:\"label\";s:12:\"Caveat Brush\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:18:\"Cedarville Cursive\";a:3:{s:5:\"label\";s:18:\"Cedarville Cursive\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Ceviche One\";a:3:{s:5:\"label\";s:11:\"Ceviche One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Chakra Petch\";a:3:{s:5:\"label\";s:12:\"Chakra Petch\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Changa\";a:3:{s:5:\"label\";s:6:\"Changa\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Changa One\";a:3:{s:5:\"label\";s:10:\"Changa One\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Chango\";a:3:{s:5:\"label\";s:6:\"Chango\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Charm\";a:3:{s:5:\"label\";s:5:\"Charm\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Charmonman\";a:3:{s:5:\"label\";s:10:\"Charmonman\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Chathura\";a:3:{s:5:\"label\";s:8:\"Chathura\";s:8:\"variants\";a:5:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Chau Philomene One\";a:3:{s:5:\"label\";s:18:\"Chau Philomene One\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Chela One\";a:3:{s:5:\"label\";s:9:\"Chela One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Chelsea Market\";a:3:{s:5:\"label\";s:14:\"Chelsea Market\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Chenla\";a:3:{s:5:\"label\";s:6:\"Chenla\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Cherish\";a:3:{s:5:\"label\";s:7:\"Cherish\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:17:\"Cherry Cream Soda\";a:3:{s:5:\"label\";s:17:\"Cherry Cream Soda\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Cherry Swash\";a:3:{s:5:\"label\";s:12:\"Cherry Swash\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Chewy\";a:3:{s:5:\"label\";s:5:\"Chewy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Chicle\";a:3:{s:5:\"label\";s:6:\"Chicle\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Chilanka\";a:3:{s:5:\"label\";s:8:\"Chilanka\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Chivo\";a:3:{s:5:\"label\";s:5:\"Chivo\";s:8:\"variants\";a:8:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:3:\"900\";i:5;s:9:\"900italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Chonburi\";a:3:{s:5:\"label\";s:8:\"Chonburi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Cinzel\";a:3:{s:5:\"label\";s:6:\"Cinzel\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Cinzel Decorative\";a:3:{s:5:\"label\";s:17:\"Cinzel Decorative\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"900\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Clicker Script\";a:3:{s:5:\"label\";s:14:\"Clicker Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Coda\";a:3:{s:5:\"label\";s:4:\"Coda\";s:8:\"variants\";a:2:{i:0;s:3:\"800\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Coda Caption\";a:3:{s:5:\"label\";s:12:\"Coda Caption\";s:8:\"variants\";a:1:{i:0;s:3:\"800\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Codystar\";a:3:{s:5:\"label\";s:8:\"Codystar\";s:8:\"variants\";a:2:{i:0;s:3:\"300\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Coiny\";a:3:{s:5:\"label\";s:5:\"Coiny\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Combo\";a:3:{s:5:\"label\";s:5:\"Combo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Comfortaa\";a:3:{s:5:\"label\";s:9:\"Comfortaa\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Comforter\";a:3:{s:5:\"label\";s:9:\"Comforter\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Comforter Brush\";a:3:{s:5:\"label\";s:15:\"Comforter Brush\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Comic Neue\";a:3:{s:5:\"label\";s:10:\"Comic Neue\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Coming Soon\";a:3:{s:5:\"label\";s:11:\"Coming Soon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Commissioner\";a:3:{s:5:\"label\";s:12:\"Commissioner\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Concert One\";a:3:{s:5:\"label\";s:11:\"Concert One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Condiment\";a:3:{s:5:\"label\";s:9:\"Condiment\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Content\";a:3:{s:5:\"label\";s:7:\"Content\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Contrail One\";a:3:{s:5:\"label\";s:12:\"Contrail One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Convergence\";a:3:{s:5:\"label\";s:11:\"Convergence\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Cookie\";a:3:{s:5:\"label\";s:6:\"Cookie\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Copse\";a:3:{s:5:\"label\";s:5:\"Copse\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Corben\";a:3:{s:5:\"label\";s:6:\"Corben\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Corinthia\";a:3:{s:5:\"label\";s:9:\"Corinthia\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Cormorant\";a:3:{s:5:\"label\";s:9:\"Cormorant\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Cormorant Garamond\";a:3:{s:5:\"label\";s:18:\"Cormorant Garamond\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Cormorant Infant\";a:3:{s:5:\"label\";s:16:\"Cormorant Infant\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Cormorant SC\";a:3:{s:5:\"label\";s:12:\"Cormorant SC\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Cormorant Unicase\";a:3:{s:5:\"label\";s:17:\"Cormorant Unicase\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Cormorant Upright\";a:3:{s:5:\"label\";s:17:\"Cormorant Upright\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Courgette\";a:3:{s:5:\"label\";s:9:\"Courgette\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Courier Prime\";a:3:{s:5:\"label\";s:13:\"Courier Prime\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"Cousine\";a:3:{s:5:\"label\";s:7:\"Cousine\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:8:\"Coustard\";a:3:{s:5:\"label\";s:8:\"Coustard\";s:8:\"variants\";a:2:{i:0;s:3:\"900\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:21:\"Covered By Your Grace\";a:3:{s:5:\"label\";s:21:\"Covered By Your Grace\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Crafty Girls\";a:3:{s:5:\"label\";s:12:\"Crafty Girls\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Creepster\";a:3:{s:5:\"label\";s:9:\"Creepster\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Crete Round\";a:3:{s:5:\"label\";s:11:\"Crete Round\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Crimson Pro\";a:3:{s:5:\"label\";s:11:\"Crimson Pro\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Croissant One\";a:3:{s:5:\"label\";s:13:\"Croissant One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Crushed\";a:3:{s:5:\"label\";s:7:\"Crushed\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Cuprum\";a:3:{s:5:\"label\";s:6:\"Cuprum\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Cute Font\";a:3:{s:5:\"label\";s:9:\"Cute Font\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Cutive\";a:3:{s:5:\"label\";s:6:\"Cutive\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Cutive Mono\";a:3:{s:5:\"label\";s:11:\"Cutive Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"DM Mono\";a:3:{s:5:\"label\";s:7:\"DM Mono\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"DM Sans\";a:3:{s:5:\"label\";s:7:\"DM Sans\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"DM Serif Display\";a:3:{s:5:\"label\";s:16:\"DM Serif Display\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"DM Serif Text\";a:3:{s:5:\"label\";s:13:\"DM Serif Text\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Damion\";a:3:{s:5:\"label\";s:6:\"Damion\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Dancing Script\";a:3:{s:5:\"label\";s:14:\"Dancing Script\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Dangrek\";a:3:{s:5:\"label\";s:7:\"Dangrek\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Darker Grotesque\";a:3:{s:5:\"label\";s:16:\"Darker Grotesque\";s:8:\"variants\";a:7:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"David Libre\";a:3:{s:5:\"label\";s:11:\"David Libre\";s:8:\"variants\";a:3:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"Dawning of a New Day\";a:3:{s:5:\"label\";s:20:\"Dawning of a New Day\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Days One\";a:3:{s:5:\"label\";s:8:\"Days One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Dekko\";a:3:{s:5:\"label\";s:5:\"Dekko\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Dela Gothic One\";a:3:{s:5:\"label\";s:15:\"Dela Gothic One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Delius\";a:3:{s:5:\"label\";s:6:\"Delius\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:17:\"Delius Swash Caps\";a:3:{s:5:\"label\";s:17:\"Delius Swash Caps\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Delius Unicase\";a:3:{s:5:\"label\";s:14:\"Delius Unicase\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Della Respira\";a:3:{s:5:\"label\";s:13:\"Della Respira\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Denk One\";a:3:{s:5:\"label\";s:8:\"Denk One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Devonshire\";a:3:{s:5:\"label\";s:10:\"Devonshire\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Dhurjati\";a:3:{s:5:\"label\";s:8:\"Dhurjati\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Didact Gothic\";a:3:{s:5:\"label\";s:13:\"Didact Gothic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Diplomata\";a:3:{s:5:\"label\";s:9:\"Diplomata\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Diplomata SC\";a:3:{s:5:\"label\";s:12:\"Diplomata SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Do Hyeon\";a:3:{s:5:\"label\";s:8:\"Do Hyeon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Dokdo\";a:3:{s:5:\"label\";s:5:\"Dokdo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Domine\";a:3:{s:5:\"label\";s:6:\"Domine\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Donegal One\";a:3:{s:5:\"label\";s:11:\"Donegal One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Dongle\";a:3:{s:5:\"label\";s:6:\"Dongle\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Doppio One\";a:3:{s:5:\"label\";s:10:\"Doppio One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Dorsa\";a:3:{s:5:\"label\";s:5:\"Dorsa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Dosis\";a:3:{s:5:\"label\";s:5:\"Dosis\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"DotGothic16\";a:3:{s:5:\"label\";s:11:\"DotGothic16\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Dr Sugiyama\";a:3:{s:5:\"label\";s:11:\"Dr Sugiyama\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Duru Sans\";a:3:{s:5:\"label\";s:9:\"Duru Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Dynalight\";a:3:{s:5:\"label\";s:9:\"Dynalight\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"EB Garamond\";a:3:{s:5:\"label\";s:11:\"EB Garamond\";s:8:\"variants\";a:10:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Eagle Lake\";a:3:{s:5:\"label\";s:10:\"Eagle Lake\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"East Sea Dokdo\";a:3:{s:5:\"label\";s:14:\"East Sea Dokdo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Eater\";a:3:{s:5:\"label\";s:5:\"Eater\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Economica\";a:3:{s:5:\"label\";s:9:\"Economica\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Eczar\";a:3:{s:5:\"label\";s:5:\"Eczar\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"El Messiri\";a:3:{s:5:\"label\";s:10:\"El Messiri\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Electrolize\";a:3:{s:5:\"label\";s:11:\"Electrolize\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Elsie\";a:3:{s:5:\"label\";s:5:\"Elsie\";s:8:\"variants\";a:2:{i:0;s:3:\"900\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Elsie Swash Caps\";a:3:{s:5:\"label\";s:16:\"Elsie Swash Caps\";s:8:\"variants\";a:2:{i:0;s:3:\"900\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Emblema One\";a:3:{s:5:\"label\";s:11:\"Emblema One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Emilys Candy\";a:3:{s:5:\"label\";s:12:\"Emilys Candy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Encode Sans\";a:3:{s:5:\"label\";s:11:\"Encode Sans\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Encode Sans Condensed\";a:3:{s:5:\"label\";s:21:\"Encode Sans Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Encode Sans Expanded\";a:3:{s:5:\"label\";s:20:\"Encode Sans Expanded\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Encode Sans SC\";a:3:{s:5:\"label\";s:14:\"Encode Sans SC\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:26:\"Encode Sans Semi Condensed\";a:3:{s:5:\"label\";s:26:\"Encode Sans Semi Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:25:\"Encode Sans Semi Expanded\";a:3:{s:5:\"label\";s:25:\"Encode Sans Semi Expanded\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Engagement\";a:3:{s:5:\"label\";s:10:\"Engagement\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Englebert\";a:3:{s:5:\"label\";s:9:\"Englebert\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Enriqueta\";a:3:{s:5:\"label\";s:9:\"Enriqueta\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Ephesis\";a:3:{s:5:\"label\";s:7:\"Ephesis\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Epilogue\";a:3:{s:5:\"label\";s:8:\"Epilogue\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Erica One\";a:3:{s:5:\"label\";s:9:\"Erica One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Esteban\";a:3:{s:5:\"label\";s:7:\"Esteban\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Estonia\";a:3:{s:5:\"label\";s:7:\"Estonia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Euphoria Script\";a:3:{s:5:\"label\";s:15:\"Euphoria Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Ewert\";a:3:{s:5:\"label\";s:5:\"Ewert\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:3:\"Exo\";a:3:{s:5:\"label\";s:3:\"Exo\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Exo 2\";a:3:{s:5:\"label\";s:5:\"Exo 2\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Expletus Sans\";a:3:{s:5:\"label\";s:13:\"Expletus Sans\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Explora\";a:3:{s:5:\"label\";s:7:\"Explora\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Fahkwang\";a:3:{s:5:\"label\";s:8:\"Fahkwang\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Fanwood Text\";a:3:{s:5:\"label\";s:12:\"Fanwood Text\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Farro\";a:3:{s:5:\"label\";s:5:\"Farro\";s:8:\"variants\";a:4:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Farsan\";a:3:{s:5:\"label\";s:6:\"Farsan\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Fascinate\";a:3:{s:5:\"label\";s:9:\"Fascinate\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Fascinate Inline\";a:3:{s:5:\"label\";s:16:\"Fascinate Inline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Faster One\";a:3:{s:5:\"label\";s:10:\"Faster One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Fasthand\";a:3:{s:5:\"label\";s:8:\"Fasthand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Fauna One\";a:3:{s:5:\"label\";s:9:\"Fauna One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Faustina\";a:3:{s:5:\"label\";s:8:\"Faustina\";s:8:\"variants\";a:12:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Federant\";a:3:{s:5:\"label\";s:8:\"Federant\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Federo\";a:3:{s:5:\"label\";s:6:\"Federo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Felipa\";a:3:{s:5:\"label\";s:6:\"Felipa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Fenix\";a:3:{s:5:\"label\";s:5:\"Fenix\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Festive\";a:3:{s:5:\"label\";s:7:\"Festive\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Finger Paint\";a:3:{s:5:\"label\";s:12:\"Finger Paint\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Fira Code\";a:3:{s:5:\"label\";s:9:\"Fira Code\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:9:\"Fira Mono\";a:3:{s:5:\"label\";s:9:\"Fira Mono\";s:8:\"variants\";a:3:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:9:\"Fira Sans\";a:3:{s:5:\"label\";s:9:\"Fira Sans\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Fira Sans Condensed\";a:3:{s:5:\"label\";s:19:\"Fira Sans Condensed\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:25:\"Fira Sans Extra Condensed\";a:3:{s:5:\"label\";s:25:\"Fira Sans Extra Condensed\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Fjalla One\";a:3:{s:5:\"label\";s:10:\"Fjalla One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Fjord One\";a:3:{s:5:\"label\";s:9:\"Fjord One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Flamenco\";a:3:{s:5:\"label\";s:8:\"Flamenco\";s:8:\"variants\";a:2:{i:0;s:3:\"300\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Flavors\";a:3:{s:5:\"label\";s:7:\"Flavors\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Fleur De Leah\";a:3:{s:5:\"label\";s:13:\"Fleur De Leah\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Flow Block\";a:3:{s:5:\"label\";s:10:\"Flow Block\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Flow Circular\";a:3:{s:5:\"label\";s:13:\"Flow Circular\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Flow Rounded\";a:3:{s:5:\"label\";s:12:\"Flow Rounded\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Fondamento\";a:3:{s:5:\"label\";s:10:\"Fondamento\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:16:\"Fontdiner Swanky\";a:3:{s:5:\"label\";s:16:\"Fontdiner Swanky\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Forum\";a:3:{s:5:\"label\";s:5:\"Forum\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Francois One\";a:3:{s:5:\"label\";s:12:\"Francois One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Frank Ruhl Libre\";a:3:{s:5:\"label\";s:16:\"Frank Ruhl Libre\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"700\";i:3;s:3:\"900\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Fraunces\";a:3:{s:5:\"label\";s:8:\"Fraunces\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Freckle Face\";a:3:{s:5:\"label\";s:12:\"Freckle Face\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:20:\"Fredericka the Great\";a:3:{s:5:\"label\";s:20:\"Fredericka the Great\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Fredoka One\";a:3:{s:5:\"label\";s:11:\"Fredoka One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Freehand\";a:3:{s:5:\"label\";s:8:\"Freehand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Fresca\";a:3:{s:5:\"label\";s:6:\"Fresca\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Frijole\";a:3:{s:5:\"label\";s:7:\"Frijole\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Fruktur\";a:3:{s:5:\"label\";s:7:\"Fruktur\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Fugaz One\";a:3:{s:5:\"label\";s:9:\"Fugaz One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Fuggles\";a:3:{s:5:\"label\";s:7:\"Fuggles\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Fuzzy Bubbles\";a:3:{s:5:\"label\";s:13:\"Fuzzy Bubbles\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"GFS Didot\";a:3:{s:5:\"label\";s:9:\"GFS Didot\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"GFS Neohellenic\";a:3:{s:5:\"label\";s:15:\"GFS Neohellenic\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Gabriela\";a:3:{s:5:\"label\";s:8:\"Gabriela\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Gaegu\";a:3:{s:5:\"label\";s:5:\"Gaegu\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Gafata\";a:3:{s:5:\"label\";s:6:\"Gafata\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Galada\";a:3:{s:5:\"label\";s:6:\"Galada\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Galdeano\";a:3:{s:5:\"label\";s:8:\"Galdeano\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Galindo\";a:3:{s:5:\"label\";s:7:\"Galindo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Gamja Flower\";a:3:{s:5:\"label\";s:12:\"Gamja Flower\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Gayathri\";a:3:{s:5:\"label\";s:8:\"Gayathri\";s:8:\"variants\";a:3:{i:0;s:3:\"100\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Gelasio\";a:3:{s:5:\"label\";s:7:\"Gelasio\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Gemunu Libre\";a:3:{s:5:\"label\";s:12:\"Gemunu Libre\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Genos\";a:3:{s:5:\"label\";s:5:\"Genos\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Gentium Basic\";a:3:{s:5:\"label\";s:13:\"Gentium Basic\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Gentium Book Basic\";a:3:{s:5:\"label\";s:18:\"Gentium Book Basic\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:3:\"Geo\";a:3:{s:5:\"label\";s:3:\"Geo\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Georama\";a:3:{s:5:\"label\";s:7:\"Georama\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Geostar\";a:3:{s:5:\"label\";s:7:\"Geostar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Geostar Fill\";a:3:{s:5:\"label\";s:12:\"Geostar Fill\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Germania One\";a:3:{s:5:\"label\";s:12:\"Germania One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Gideon Roman\";a:3:{s:5:\"label\";s:12:\"Gideon Roman\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Gidugu\";a:3:{s:5:\"label\";s:6:\"Gidugu\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Gilda Display\";a:3:{s:5:\"label\";s:13:\"Gilda Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Girassol\";a:3:{s:5:\"label\";s:8:\"Girassol\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Give You Glory\";a:3:{s:5:\"label\";s:14:\"Give You Glory\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Glass Antiqua\";a:3:{s:5:\"label\";s:13:\"Glass Antiqua\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Glegoo\";a:3:{s:5:\"label\";s:6:\"Glegoo\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Gloria Hallelujah\";a:3:{s:5:\"label\";s:17:\"Gloria Hallelujah\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Glory\";a:3:{s:5:\"label\";s:5:\"Glory\";s:8:\"variants\";a:16:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Gluten\";a:3:{s:5:\"label\";s:6:\"Gluten\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Goblin One\";a:3:{s:5:\"label\";s:10:\"Goblin One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Gochi Hand\";a:3:{s:5:\"label\";s:10:\"Gochi Hand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Goldman\";a:3:{s:5:\"label\";s:7:\"Goldman\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Gorditas\";a:3:{s:5:\"label\";s:8:\"Gorditas\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Gothic A1\";a:3:{s:5:\"label\";s:9:\"Gothic A1\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Gotu\";a:3:{s:5:\"label\";s:4:\"Gotu\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Goudy Bookletter 1911\";a:3:{s:5:\"label\";s:21:\"Goudy Bookletter 1911\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Gowun Batang\";a:3:{s:5:\"label\";s:12:\"Gowun Batang\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Gowun Dodum\";a:3:{s:5:\"label\";s:11:\"Gowun Dodum\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Graduate\";a:3:{s:5:\"label\";s:8:\"Graduate\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Grand Hotel\";a:3:{s:5:\"label\";s:11:\"Grand Hotel\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Grandstander\";a:3:{s:5:\"label\";s:12:\"Grandstander\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Gravitas One\";a:3:{s:5:\"label\";s:12:\"Gravitas One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Great Vibes\";a:3:{s:5:\"label\";s:11:\"Great Vibes\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Grechen Fuemen\";a:3:{s:5:\"label\";s:14:\"Grechen Fuemen\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Grenze\";a:3:{s:5:\"label\";s:6:\"Grenze\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Grenze Gotisch\";a:3:{s:5:\"label\";s:14:\"Grenze Gotisch\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Grey Qo\";a:3:{s:5:\"label\";s:7:\"Grey Qo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Griffy\";a:3:{s:5:\"label\";s:6:\"Griffy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Gruppo\";a:3:{s:5:\"label\";s:6:\"Gruppo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Gudea\";a:3:{s:5:\"label\";s:5:\"Gudea\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Gugi\";a:3:{s:5:\"label\";s:4:\"Gugi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Gupter\";a:3:{s:5:\"label\";s:6:\"Gupter\";s:8:\"variants\";a:3:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Gurajada\";a:3:{s:5:\"label\";s:8:\"Gurajada\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Gwendolyn\";a:3:{s:5:\"label\";s:9:\"Gwendolyn\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Habibi\";a:3:{s:5:\"label\";s:6:\"Habibi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Hachi Maru Pop\";a:3:{s:5:\"label\";s:14:\"Hachi Maru Pop\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Hahmlet\";a:3:{s:5:\"label\";s:7:\"Hahmlet\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Halant\";a:3:{s:5:\"label\";s:6:\"Halant\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Hammersmith One\";a:3:{s:5:\"label\";s:15:\"Hammersmith One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Hanalei\";a:3:{s:5:\"label\";s:7:\"Hanalei\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Hanalei Fill\";a:3:{s:5:\"label\";s:12:\"Hanalei Fill\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Handlee\";a:3:{s:5:\"label\";s:7:\"Handlee\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Hanuman\";a:3:{s:5:\"label\";s:7:\"Hanuman\";s:8:\"variants\";a:5:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"900\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Happy Monkey\";a:3:{s:5:\"label\";s:12:\"Happy Monkey\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Harmattan\";a:3:{s:5:\"label\";s:9:\"Harmattan\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Headland One\";a:3:{s:5:\"label\";s:12:\"Headland One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Heebo\";a:3:{s:5:\"label\";s:5:\"Heebo\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Henny Penny\";a:3:{s:5:\"label\";s:11:\"Henny Penny\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Hepta Slab\";a:3:{s:5:\"label\";s:10:\"Hepta Slab\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"Herr Von Muellerhoff\";a:3:{s:5:\"label\";s:20:\"Herr Von Muellerhoff\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Hi Melody\";a:3:{s:5:\"label\";s:9:\"Hi Melody\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Hina Mincho\";a:3:{s:5:\"label\";s:11:\"Hina Mincho\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Hind\";a:3:{s:5:\"label\";s:4:\"Hind\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Hind Guntur\";a:3:{s:5:\"label\";s:11:\"Hind Guntur\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Hind Madurai\";a:3:{s:5:\"label\";s:12:\"Hind Madurai\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Hind Siliguri\";a:3:{s:5:\"label\";s:13:\"Hind Siliguri\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Hind Vadodara\";a:3:{s:5:\"label\";s:13:\"Hind Vadodara\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Holtwood One SC\";a:3:{s:5:\"label\";s:15:\"Holtwood One SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Homemade Apple\";a:3:{s:5:\"label\";s:14:\"Homemade Apple\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Homenaje\";a:3:{s:5:\"label\";s:8:\"Homenaje\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Hurricane\";a:3:{s:5:\"label\";s:9:\"Hurricane\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"IBM Plex Mono\";a:3:{s:5:\"label\";s:13:\"IBM Plex Mono\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:13:\"IBM Plex Sans\";a:3:{s:5:\"label\";s:13:\"IBM Plex Sans\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"IBM Plex Sans Arabic\";a:3:{s:5:\"label\";s:20:\"IBM Plex Sans Arabic\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:23:\"IBM Plex Sans Condensed\";a:3:{s:5:\"label\";s:23:\"IBM Plex Sans Condensed\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:24:\"IBM Plex Sans Devanagari\";a:3:{s:5:\"label\";s:24:\"IBM Plex Sans Devanagari\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"IBM Plex Sans Hebrew\";a:3:{s:5:\"label\";s:20:\"IBM Plex Sans Hebrew\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"IBM Plex Sans KR\";a:3:{s:5:\"label\";s:16:\"IBM Plex Sans KR\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"IBM Plex Sans Thai\";a:3:{s:5:\"label\";s:18:\"IBM Plex Sans Thai\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:25:\"IBM Plex Sans Thai Looped\";a:3:{s:5:\"label\";s:25:\"IBM Plex Sans Thai Looped\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"IBM Plex Serif\";a:3:{s:5:\"label\";s:14:\"IBM Plex Serif\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"IM Fell DW Pica\";a:3:{s:5:\"label\";s:15:\"IM Fell DW Pica\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"IM Fell DW Pica SC\";a:3:{s:5:\"label\";s:18:\"IM Fell DW Pica SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"IM Fell Double Pica\";a:3:{s:5:\"label\";s:19:\"IM Fell Double Pica\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:22:\"IM Fell Double Pica SC\";a:3:{s:5:\"label\";s:22:\"IM Fell Double Pica SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"IM Fell English\";a:3:{s:5:\"label\";s:15:\"IM Fell English\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"IM Fell English SC\";a:3:{s:5:\"label\";s:18:\"IM Fell English SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"IM Fell French Canon\";a:3:{s:5:\"label\";s:20:\"IM Fell French Canon\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:23:\"IM Fell French Canon SC\";a:3:{s:5:\"label\";s:23:\"IM Fell French Canon SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"IM Fell Great Primer\";a:3:{s:5:\"label\";s:20:\"IM Fell Great Primer\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:23:\"IM Fell Great Primer SC\";a:3:{s:5:\"label\";s:23:\"IM Fell Great Primer SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Ibarra Real Nova\";a:3:{s:5:\"label\";s:16:\"Ibarra Real Nova\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Iceberg\";a:3:{s:5:\"label\";s:7:\"Iceberg\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Iceland\";a:3:{s:5:\"label\";s:7:\"Iceland\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Imbue\";a:3:{s:5:\"label\";s:5:\"Imbue\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Imperial Script\";a:3:{s:5:\"label\";s:15:\"Imperial Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Imprima\";a:3:{s:5:\"label\";s:7:\"Imprima\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Inconsolata\";a:3:{s:5:\"label\";s:11:\"Inconsolata\";s:8:\"variants\";a:8:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:5:\"Inder\";a:3:{s:5:\"label\";s:5:\"Inder\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Indie Flower\";a:3:{s:5:\"label\";s:12:\"Indie Flower\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Inika\";a:3:{s:5:\"label\";s:5:\"Inika\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Inknut Antiqua\";a:3:{s:5:\"label\";s:14:\"Inknut Antiqua\";s:8:\"variants\";a:7:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Inria Sans\";a:3:{s:5:\"label\";s:10:\"Inria Sans\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Inria Serif\";a:3:{s:5:\"label\";s:11:\"Inria Serif\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Inspiration\";a:3:{s:5:\"label\";s:11:\"Inspiration\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Inter\";a:3:{s:5:\"label\";s:5:\"Inter\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Irish Grover\";a:3:{s:5:\"label\";s:12:\"Irish Grover\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Island Moments\";a:3:{s:5:\"label\";s:14:\"Island Moments\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Istok Web\";a:3:{s:5:\"label\";s:9:\"Istok Web\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Italiana\";a:3:{s:5:\"label\";s:8:\"Italiana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Italianno\";a:3:{s:5:\"label\";s:9:\"Italianno\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Itim\";a:3:{s:5:\"label\";s:4:\"Itim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:16:\"Jacques Francois\";a:3:{s:5:\"label\";s:16:\"Jacques Francois\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:23:\"Jacques Francois Shadow\";a:3:{s:5:\"label\";s:23:\"Jacques Francois Shadow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Jaldi\";a:3:{s:5:\"label\";s:5:\"Jaldi\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"JetBrains Mono\";a:3:{s:5:\"label\";s:14:\"JetBrains Mono\";s:8:\"variants\";a:16:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:14:\"Jim Nightshade\";a:3:{s:5:\"label\";s:14:\"Jim Nightshade\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Jockey One\";a:3:{s:5:\"label\";s:10:\"Jockey One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Jolly Lodger\";a:3:{s:5:\"label\";s:12:\"Jolly Lodger\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Jomhuria\";a:3:{s:5:\"label\";s:8:\"Jomhuria\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Jomolhari\";a:3:{s:5:\"label\";s:9:\"Jomolhari\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Josefin Sans\";a:3:{s:5:\"label\";s:12:\"Josefin Sans\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Josefin Slab\";a:3:{s:5:\"label\";s:12:\"Josefin Slab\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Jost\";a:3:{s:5:\"label\";s:4:\"Jost\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Joti One\";a:3:{s:5:\"label\";s:8:\"Joti One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:3:\"Jua\";a:3:{s:5:\"label\";s:3:\"Jua\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Judson\";a:3:{s:5:\"label\";s:6:\"Judson\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Julee\";a:3:{s:5:\"label\";s:5:\"Julee\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Julius Sans One\";a:3:{s:5:\"label\";s:15:\"Julius Sans One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Junge\";a:3:{s:5:\"label\";s:5:\"Junge\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Jura\";a:3:{s:5:\"label\";s:4:\"Jura\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Just Another Hand\";a:3:{s:5:\"label\";s:17:\"Just Another Hand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:23:\"Just Me Again Down Here\";a:3:{s:5:\"label\";s:23:\"Just Me Again Down Here\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:3:\"K2D\";a:3:{s:5:\"label\";s:3:\"K2D\";s:8:\"variants\";a:16:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Kadwa\";a:3:{s:5:\"label\";s:5:\"Kadwa\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Kaisei Decol\";a:3:{s:5:\"label\";s:12:\"Kaisei Decol\";s:8:\"variants\";a:3:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Kaisei HarunoUmi\";a:3:{s:5:\"label\";s:16:\"Kaisei HarunoUmi\";s:8:\"variants\";a:3:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Kaisei Opti\";a:3:{s:5:\"label\";s:11:\"Kaisei Opti\";s:8:\"variants\";a:3:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Kaisei Tokumin\";a:3:{s:5:\"label\";s:14:\"Kaisei Tokumin\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:3:\"800\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Kalam\";a:3:{s:5:\"label\";s:5:\"Kalam\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Kameron\";a:3:{s:5:\"label\";s:7:\"Kameron\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Kanit\";a:3:{s:5:\"label\";s:5:\"Kanit\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Kantumruy\";a:3:{s:5:\"label\";s:9:\"Kantumruy\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Karantina\";a:3:{s:5:\"label\";s:9:\"Karantina\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Karla\";a:3:{s:5:\"label\";s:5:\"Karla\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Karma\";a:3:{s:5:\"label\";s:5:\"Karma\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Katibeh\";a:3:{s:5:\"label\";s:7:\"Katibeh\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Kaushan Script\";a:3:{s:5:\"label\";s:14:\"Kaushan Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Kavivanar\";a:3:{s:5:\"label\";s:9:\"Kavivanar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Kavoon\";a:3:{s:5:\"label\";s:6:\"Kavoon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Kdam Thmor\";a:3:{s:5:\"label\";s:10:\"Kdam Thmor\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Keania One\";a:3:{s:5:\"label\";s:10:\"Keania One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Kelly Slab\";a:3:{s:5:\"label\";s:10:\"Kelly Slab\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Kenia\";a:3:{s:5:\"label\";s:5:\"Kenia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Khand\";a:3:{s:5:\"label\";s:5:\"Khand\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Khmer\";a:3:{s:5:\"label\";s:5:\"Khmer\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Khula\";a:3:{s:5:\"label\";s:5:\"Khula\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Kings\";a:3:{s:5:\"label\";s:5:\"Kings\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Kirang Haerang\";a:3:{s:5:\"label\";s:14:\"Kirang Haerang\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Kite One\";a:3:{s:5:\"label\";s:8:\"Kite One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Kiwi Maru\";a:3:{s:5:\"label\";s:9:\"Kiwi Maru\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Klee One\";a:3:{s:5:\"label\";s:8:\"Klee One\";s:8:\"variants\";a:2:{i:0;s:3:\"600\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Knewave\";a:3:{s:5:\"label\";s:7:\"Knewave\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"KoHo\";a:3:{s:5:\"label\";s:4:\"KoHo\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Kodchasan\";a:3:{s:5:\"label\";s:9:\"Kodchasan\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Koh Santepheap\";a:3:{s:5:\"label\";s:14:\"Koh Santepheap\";s:8:\"variants\";a:5:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"900\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Kolker Brush\";a:3:{s:5:\"label\";s:12:\"Kolker Brush\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Kosugi\";a:3:{s:5:\"label\";s:6:\"Kosugi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Kosugi Maru\";a:3:{s:5:\"label\";s:11:\"Kosugi Maru\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Kotta One\";a:3:{s:5:\"label\";s:9:\"Kotta One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Koulen\";a:3:{s:5:\"label\";s:6:\"Koulen\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Kranky\";a:3:{s:5:\"label\";s:6:\"Kranky\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Kreon\";a:3:{s:5:\"label\";s:5:\"Kreon\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Kristi\";a:3:{s:5:\"label\";s:6:\"Kristi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Krona One\";a:3:{s:5:\"label\";s:9:\"Krona One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Krub\";a:3:{s:5:\"label\";s:4:\"Krub\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Kufam\";a:3:{s:5:\"label\";s:5:\"Kufam\";s:8:\"variants\";a:12:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Kulim Park\";a:3:{s:5:\"label\";s:10:\"Kulim Park\";s:8:\"variants\";a:10:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Kumar One\";a:3:{s:5:\"label\";s:9:\"Kumar One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Kumar One Outline\";a:3:{s:5:\"label\";s:17:\"Kumar One Outline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Kumbh Sans\";a:3:{s:5:\"label\";s:10:\"Kumbh Sans\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Kurale\";a:3:{s:5:\"label\";s:6:\"Kurale\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"La Belle Aurore\";a:3:{s:5:\"label\";s:15:\"La Belle Aurore\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Lacquer\";a:3:{s:5:\"label\";s:7:\"Lacquer\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Laila\";a:3:{s:5:\"label\";s:5:\"Laila\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Lakki Reddy\";a:3:{s:5:\"label\";s:11:\"Lakki Reddy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Lalezar\";a:3:{s:5:\"label\";s:7:\"Lalezar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Lancelot\";a:3:{s:5:\"label\";s:8:\"Lancelot\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Langar\";a:3:{s:5:\"label\";s:6:\"Langar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Lateef\";a:3:{s:5:\"label\";s:6:\"Lateef\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Lato\";a:3:{s:5:\"label\";s:4:\"Lato\";s:8:\"variants\";a:10:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"900\";i:7;s:9:\"900italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"League Script\";a:3:{s:5:\"label\";s:13:\"League Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Leckerli One\";a:3:{s:5:\"label\";s:12:\"Leckerli One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Ledger\";a:3:{s:5:\"label\";s:6:\"Ledger\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Lekton\";a:3:{s:5:\"label\";s:6:\"Lekton\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Lemon\";a:3:{s:5:\"label\";s:5:\"Lemon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Lemonada\";a:3:{s:5:\"label\";s:8:\"Lemonada\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Lexend\";a:3:{s:5:\"label\";s:6:\"Lexend\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Lexend Deca\";a:3:{s:5:\"label\";s:11:\"Lexend Deca\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Lexend Exa\";a:3:{s:5:\"label\";s:10:\"Lexend Exa\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Lexend Giga\";a:3:{s:5:\"label\";s:11:\"Lexend Giga\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Lexend Mega\";a:3:{s:5:\"label\";s:11:\"Lexend Mega\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Lexend Peta\";a:3:{s:5:\"label\";s:11:\"Lexend Peta\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Lexend Tera\";a:3:{s:5:\"label\";s:11:\"Lexend Tera\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Lexend Zetta\";a:3:{s:5:\"label\";s:12:\"Lexend Zetta\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Libre Barcode 128\";a:3:{s:5:\"label\";s:17:\"Libre Barcode 128\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:22:\"Libre Barcode 128 Text\";a:3:{s:5:\"label\";s:22:\"Libre Barcode 128 Text\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Libre Barcode 39\";a:3:{s:5:\"label\";s:16:\"Libre Barcode 39\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:25:\"Libre Barcode 39 Extended\";a:3:{s:5:\"label\";s:25:\"Libre Barcode 39 Extended\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:30:\"Libre Barcode 39 Extended Text\";a:3:{s:5:\"label\";s:30:\"Libre Barcode 39 Extended Text\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:21:\"Libre Barcode 39 Text\";a:3:{s:5:\"label\";s:21:\"Libre Barcode 39 Text\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:24:\"Libre Barcode EAN13 Text\";a:3:{s:5:\"label\";s:24:\"Libre Barcode EAN13 Text\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Libre Baskerville\";a:3:{s:5:\"label\";s:17:\"Libre Baskerville\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"Libre Caslon Display\";a:3:{s:5:\"label\";s:20:\"Libre Caslon Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Libre Caslon Text\";a:3:{s:5:\"label\";s:17:\"Libre Caslon Text\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Libre Franklin\";a:3:{s:5:\"label\";s:14:\"Libre Franklin\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Licorice\";a:3:{s:5:\"label\";s:8:\"Licorice\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Life Savers\";a:3:{s:5:\"label\";s:11:\"Life Savers\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"800\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Lilita One\";a:3:{s:5:\"label\";s:10:\"Lilita One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Lily Script One\";a:3:{s:5:\"label\";s:15:\"Lily Script One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Limelight\";a:3:{s:5:\"label\";s:9:\"Limelight\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Linden Hill\";a:3:{s:5:\"label\";s:11:\"Linden Hill\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Literata\";a:3:{s:5:\"label\";s:8:\"Literata\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Liu Jian Mao Cao\";a:3:{s:5:\"label\";s:16:\"Liu Jian Mao Cao\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Livvic\";a:3:{s:5:\"label\";s:6:\"Livvic\";s:8:\"variants\";a:16:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Lobster\";a:3:{s:5:\"label\";s:7:\"Lobster\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Lobster Two\";a:3:{s:5:\"label\";s:11:\"Lobster Two\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Londrina Outline\";a:3:{s:5:\"label\";s:16:\"Londrina Outline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Londrina Shadow\";a:3:{s:5:\"label\";s:15:\"Londrina Shadow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Londrina Sketch\";a:3:{s:5:\"label\";s:15:\"Londrina Sketch\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Londrina Solid\";a:3:{s:5:\"label\";s:14:\"Londrina Solid\";s:8:\"variants\";a:4:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"900\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Long Cang\";a:3:{s:5:\"label\";s:9:\"Long Cang\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Lora\";a:3:{s:5:\"label\";s:4:\"Lora\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Love Light\";a:3:{s:5:\"label\";s:10:\"Love Light\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:21:\"Love Ya Like A Sister\";a:3:{s:5:\"label\";s:21:\"Love Ya Like A Sister\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Loved by the King\";a:3:{s:5:\"label\";s:17:\"Loved by the King\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Lovers Quarrel\";a:3:{s:5:\"label\";s:14:\"Lovers Quarrel\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Luckiest Guy\";a:3:{s:5:\"label\";s:12:\"Luckiest Guy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Lusitana\";a:3:{s:5:\"label\";s:8:\"Lusitana\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Lustria\";a:3:{s:5:\"label\";s:7:\"Lustria\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Luxurious Roman\";a:3:{s:5:\"label\";s:15:\"Luxurious Roman\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Luxurious Script\";a:3:{s:5:\"label\";s:16:\"Luxurious Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"M PLUS 1\";a:3:{s:5:\"label\";s:8:\"M PLUS 1\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"M PLUS 1 Code\";a:3:{s:5:\"label\";s:13:\"M PLUS 1 Code\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"M PLUS 1p\";a:3:{s:5:\"label\";s:9:\"M PLUS 1p\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"M PLUS 2\";a:3:{s:5:\"label\";s:8:\"M PLUS 2\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"M PLUS Code Latin\";a:3:{s:5:\"label\";s:17:\"M PLUS Code Latin\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"M PLUS Rounded 1c\";a:3:{s:5:\"label\";s:17:\"M PLUS Rounded 1c\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Ma Shan Zheng\";a:3:{s:5:\"label\";s:13:\"Ma Shan Zheng\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Macondo\";a:3:{s:5:\"label\";s:7:\"Macondo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:18:\"Macondo Swash Caps\";a:3:{s:5:\"label\";s:18:\"Macondo Swash Caps\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Mada\";a:3:{s:5:\"label\";s:4:\"Mada\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Magra\";a:3:{s:5:\"label\";s:5:\"Magra\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Maiden Orange\";a:3:{s:5:\"label\";s:13:\"Maiden Orange\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Maitree\";a:3:{s:5:\"label\";s:7:\"Maitree\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Major Mono Display\";a:3:{s:5:\"label\";s:18:\"Major Mono Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:4:\"Mako\";a:3:{s:5:\"label\";s:4:\"Mako\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Mali\";a:3:{s:5:\"label\";s:4:\"Mali\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Mallanna\";a:3:{s:5:\"label\";s:8:\"Mallanna\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Mandali\";a:3:{s:5:\"label\";s:7:\"Mandali\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Manjari\";a:3:{s:5:\"label\";s:7:\"Manjari\";s:8:\"variants\";a:3:{i:0;s:3:\"100\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Manrope\";a:3:{s:5:\"label\";s:7:\"Manrope\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Mansalva\";a:3:{s:5:\"label\";s:8:\"Mansalva\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Manuale\";a:3:{s:5:\"label\";s:7:\"Manuale\";s:8:\"variants\";a:12:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Marcellus\";a:3:{s:5:\"label\";s:9:\"Marcellus\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Marcellus SC\";a:3:{s:5:\"label\";s:12:\"Marcellus SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Marck Script\";a:3:{s:5:\"label\";s:12:\"Marck Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Margarine\";a:3:{s:5:\"label\";s:9:\"Margarine\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Markazi Text\";a:3:{s:5:\"label\";s:12:\"Markazi Text\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Marko One\";a:3:{s:5:\"label\";s:9:\"Marko One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Marmelad\";a:3:{s:5:\"label\";s:8:\"Marmelad\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Martel\";a:3:{s:5:\"label\";s:6:\"Martel\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Martel Sans\";a:3:{s:5:\"label\";s:11:\"Martel Sans\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Marvel\";a:3:{s:5:\"label\";s:6:\"Marvel\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Mate\";a:3:{s:5:\"label\";s:4:\"Mate\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Mate SC\";a:3:{s:5:\"label\";s:7:\"Mate SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Maven Pro\";a:3:{s:5:\"label\";s:9:\"Maven Pro\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"McLaren\";a:3:{s:5:\"label\";s:7:\"McLaren\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Mea Culpa\";a:3:{s:5:\"label\";s:9:\"Mea Culpa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Meddon\";a:3:{s:5:\"label\";s:6:\"Meddon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"MedievalSharp\";a:3:{s:5:\"label\";s:13:\"MedievalSharp\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Medula One\";a:3:{s:5:\"label\";s:10:\"Medula One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Meera Inimai\";a:3:{s:5:\"label\";s:12:\"Meera Inimai\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Megrim\";a:3:{s:5:\"label\";s:6:\"Megrim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Meie Script\";a:3:{s:5:\"label\";s:11:\"Meie Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Meow Script\";a:3:{s:5:\"label\";s:11:\"Meow Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Merienda\";a:3:{s:5:\"label\";s:8:\"Merienda\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Merienda One\";a:3:{s:5:\"label\";s:12:\"Merienda One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Merriweather\";a:3:{s:5:\"label\";s:12:\"Merriweather\";s:8:\"variants\";a:8:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:3:\"900\";i:5;s:9:\"900italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Merriweather Sans\";a:3:{s:5:\"label\";s:17:\"Merriweather Sans\";s:8:\"variants\";a:12:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Metal\";a:3:{s:5:\"label\";s:5:\"Metal\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Metal Mania\";a:3:{s:5:\"label\";s:11:\"Metal Mania\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Metamorphous\";a:3:{s:5:\"label\";s:12:\"Metamorphous\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Metrophobic\";a:3:{s:5:\"label\";s:11:\"Metrophobic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Michroma\";a:3:{s:5:\"label\";s:8:\"Michroma\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Milonga\";a:3:{s:5:\"label\";s:7:\"Milonga\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Miltonian\";a:3:{s:5:\"label\";s:9:\"Miltonian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Miltonian Tattoo\";a:3:{s:5:\"label\";s:16:\"Miltonian Tattoo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Mina\";a:3:{s:5:\"label\";s:4:\"Mina\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Miniver\";a:3:{s:5:\"label\";s:7:\"Miniver\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Miriam Libre\";a:3:{s:5:\"label\";s:12:\"Miriam Libre\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Mirza\";a:3:{s:5:\"label\";s:5:\"Mirza\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Miss Fajardose\";a:3:{s:5:\"label\";s:14:\"Miss Fajardose\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Mitr\";a:3:{s:5:\"label\";s:4:\"Mitr\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Mochiy Pop One\";a:3:{s:5:\"label\";s:14:\"Mochiy Pop One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Mochiy Pop P One\";a:3:{s:5:\"label\";s:16:\"Mochiy Pop P One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Modak\";a:3:{s:5:\"label\";s:5:\"Modak\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Modern Antiqua\";a:3:{s:5:\"label\";s:14:\"Modern Antiqua\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Mogra\";a:3:{s:5:\"label\";s:5:\"Mogra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Mohave\";a:3:{s:5:\"label\";s:6:\"Mohave\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Molengo\";a:3:{s:5:\"label\";s:7:\"Molengo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Molle\";a:3:{s:5:\"label\";s:5:\"Molle\";s:8:\"variants\";a:1:{i:0;s:6:\"italic\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Monda\";a:3:{s:5:\"label\";s:5:\"Monda\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Monofett\";a:3:{s:5:\"label\";s:8:\"Monofett\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Monoton\";a:3:{s:5:\"label\";s:7:\"Monoton\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:20:\"Monsieur La Doulaise\";a:3:{s:5:\"label\";s:20:\"Monsieur La Doulaise\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Montaga\";a:3:{s:5:\"label\";s:7:\"Montaga\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Montagu Slab\";a:3:{s:5:\"label\";s:12:\"Montagu Slab\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"MonteCarlo\";a:3:{s:5:\"label\";s:10:\"MonteCarlo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Montez\";a:3:{s:5:\"label\";s:6:\"Montez\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Montserrat\";a:3:{s:5:\"label\";s:10:\"Montserrat\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Montserrat Alternates\";a:3:{s:5:\"label\";s:21:\"Montserrat Alternates\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Montserrat Subrayada\";a:3:{s:5:\"label\";s:20:\"Montserrat Subrayada\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Moo Lah Lah\";a:3:{s:5:\"label\";s:11:\"Moo Lah Lah\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Moon Dance\";a:3:{s:5:\"label\";s:10:\"Moon Dance\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Moul\";a:3:{s:5:\"label\";s:4:\"Moul\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Moulpali\";a:3:{s:5:\"label\";s:8:\"Moulpali\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:22:\"Mountains of Christmas\";a:3:{s:5:\"label\";s:22:\"Mountains of Christmas\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Mouse Memoirs\";a:3:{s:5:\"label\";s:13:\"Mouse Memoirs\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Mr Bedfort\";a:3:{s:5:\"label\";s:10:\"Mr Bedfort\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Mr Dafoe\";a:3:{s:5:\"label\";s:8:\"Mr Dafoe\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Mr De Haviland\";a:3:{s:5:\"label\";s:14:\"Mr De Haviland\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:19:\"Mrs Saint Delafield\";a:3:{s:5:\"label\";s:19:\"Mrs Saint Delafield\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Mrs Sheppards\";a:3:{s:5:\"label\";s:13:\"Mrs Sheppards\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Mukta\";a:3:{s:5:\"label\";s:5:\"Mukta\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Mukta Mahee\";a:3:{s:5:\"label\";s:11:\"Mukta Mahee\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Mukta Malar\";a:3:{s:5:\"label\";s:11:\"Mukta Malar\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Mukta Vaani\";a:3:{s:5:\"label\";s:11:\"Mukta Vaani\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Mulish\";a:3:{s:5:\"label\";s:6:\"Mulish\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Murecho\";a:3:{s:5:\"label\";s:7:\"Murecho\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"MuseoModerno\";a:3:{s:5:\"label\";s:12:\"MuseoModerno\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Mystery Quest\";a:3:{s:5:\"label\";s:13:\"Mystery Quest\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:3:\"NTR\";a:3:{s:5:\"label\";s:3:\"NTR\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Nanum Brush Script\";a:3:{s:5:\"label\";s:18:\"Nanum Brush Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Nanum Gothic\";a:3:{s:5:\"label\";s:12:\"Nanum Gothic\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"800\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Nanum Gothic Coding\";a:3:{s:5:\"label\";s:19:\"Nanum Gothic Coding\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:14:\"Nanum Myeongjo\";a:3:{s:5:\"label\";s:14:\"Nanum Myeongjo\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"800\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Nanum Pen Script\";a:3:{s:5:\"label\";s:16:\"Nanum Pen Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Neonderthaw\";a:3:{s:5:\"label\";s:11:\"Neonderthaw\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Nerko One\";a:3:{s:5:\"label\";s:9:\"Nerko One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Neucha\";a:3:{s:5:\"label\";s:6:\"Neucha\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Neuton\";a:3:{s:5:\"label\";s:6:\"Neuton\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"New Rocker\";a:3:{s:5:\"label\";s:10:\"New Rocker\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"New Tegomin\";a:3:{s:5:\"label\";s:11:\"New Tegomin\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"News Cycle\";a:3:{s:5:\"label\";s:10:\"News Cycle\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Newsreader\";a:3:{s:5:\"label\";s:10:\"Newsreader\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Niconne\";a:3:{s:5:\"label\";s:7:\"Niconne\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Niramit\";a:3:{s:5:\"label\";s:7:\"Niramit\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Nixie One\";a:3:{s:5:\"label\";s:9:\"Nixie One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Nobile\";a:3:{s:5:\"label\";s:6:\"Nobile\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Nokora\";a:3:{s:5:\"label\";s:6:\"Nokora\";s:8:\"variants\";a:5:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"900\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Norican\";a:3:{s:5:\"label\";s:7:\"Norican\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Nosifer\";a:3:{s:5:\"label\";s:7:\"Nosifer\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Notable\";a:3:{s:5:\"label\";s:7:\"Notable\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Nothing You Could Do\";a:3:{s:5:\"label\";s:20:\"Nothing You Could Do\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Noticia Text\";a:3:{s:5:\"label\";s:12:\"Noticia Text\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Noto Kufi Arabic\";a:3:{s:5:\"label\";s:16:\"Noto Kufi Arabic\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Noto Music\";a:3:{s:5:\"label\";s:10:\"Noto Music\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Naskh Arabic\";a:3:{s:5:\"label\";s:17:\"Noto Naskh Arabic\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Noto Nastaliq Urdu\";a:3:{s:5:\"label\";s:18:\"Noto Nastaliq Urdu\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Noto Rashi Hebrew\";a:3:{s:5:\"label\";s:17:\"Noto Rashi Hebrew\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Noto Sans\";a:3:{s:5:\"label\";s:9:\"Noto Sans\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Adlam\";a:3:{s:5:\"label\";s:15:\"Noto Sans Adlam\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:24:\"Noto Sans Adlam Unjoined\";a:3:{s:5:\"label\";s:24:\"Noto Sans Adlam Unjoined\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:31:\"Noto Sans Anatolian Hieroglyphs\";a:3:{s:5:\"label\";s:31:\"Noto Sans Anatolian Hieroglyphs\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Arabic\";a:3:{s:5:\"label\";s:16:\"Noto Sans Arabic\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Armenian\";a:3:{s:5:\"label\";s:18:\"Noto Sans Armenian\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Avestan\";a:3:{s:5:\"label\";s:17:\"Noto Sans Avestan\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Balinese\";a:3:{s:5:\"label\";s:18:\"Noto Sans Balinese\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Bamum\";a:3:{s:5:\"label\";s:15:\"Noto Sans Bamum\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Noto Sans Bassa Vah\";a:3:{s:5:\"label\";s:19:\"Noto Sans Bassa Vah\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Batak\";a:3:{s:5:\"label\";s:15:\"Noto Sans Batak\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Bengali\";a:3:{s:5:\"label\";s:17:\"Noto Sans Bengali\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Noto Sans Bhaiksuki\";a:3:{s:5:\"label\";s:19:\"Noto Sans Bhaiksuki\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Brahmi\";a:3:{s:5:\"label\";s:16:\"Noto Sans Brahmi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Buginese\";a:3:{s:5:\"label\";s:18:\"Noto Sans Buginese\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Buhid\";a:3:{s:5:\"label\";s:15:\"Noto Sans Buhid\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:29:\"Noto Sans Canadian Aboriginal\";a:3:{s:5:\"label\";s:29:\"Noto Sans Canadian Aboriginal\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Carian\";a:3:{s:5:\"label\";s:16:\"Noto Sans Carian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:28:\"Noto Sans Caucasian Albanian\";a:3:{s:5:\"label\";s:28:\"Noto Sans Caucasian Albanian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Chakma\";a:3:{s:5:\"label\";s:16:\"Noto Sans Chakma\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Noto Sans Cham\";a:3:{s:5:\"label\";s:14:\"Noto Sans Cham\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Cherokee\";a:3:{s:5:\"label\";s:18:\"Noto Sans Cherokee\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Coptic\";a:3:{s:5:\"label\";s:16:\"Noto Sans Coptic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Noto Sans Cuneiform\";a:3:{s:5:\"label\";s:19:\"Noto Sans Cuneiform\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Cypriot\";a:3:{s:5:\"label\";s:17:\"Noto Sans Cypriot\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Deseret\";a:3:{s:5:\"label\";s:17:\"Noto Sans Deseret\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Noto Sans Devanagari\";a:3:{s:5:\"label\";s:20:\"Noto Sans Devanagari\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Display\";a:3:{s:5:\"label\";s:17:\"Noto Sans Display\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Duployan\";a:3:{s:5:\"label\";s:18:\"Noto Sans Duployan\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:30:\"Noto Sans Egyptian Hieroglyphs\";a:3:{s:5:\"label\";s:30:\"Noto Sans Egyptian Hieroglyphs\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Elbasan\";a:3:{s:5:\"label\";s:17:\"Noto Sans Elbasan\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Elymaic\";a:3:{s:5:\"label\";s:17:\"Noto Sans Elymaic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Georgian\";a:3:{s:5:\"label\";s:18:\"Noto Sans Georgian\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Noto Sans Glagolitic\";a:3:{s:5:\"label\";s:20:\"Noto Sans Glagolitic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Gothic\";a:3:{s:5:\"label\";s:16:\"Noto Sans Gothic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Grantha\";a:3:{s:5:\"label\";s:17:\"Noto Sans Grantha\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Gujarati\";a:3:{s:5:\"label\";s:18:\"Noto Sans Gujarati\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:23:\"Noto Sans Gunjala Gondi\";a:3:{s:5:\"label\";s:23:\"Noto Sans Gunjala Gondi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Gurmukhi\";a:3:{s:5:\"label\";s:18:\"Noto Sans Gurmukhi\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Noto Sans HK\";a:3:{s:5:\"label\";s:12:\"Noto Sans HK\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:25:\"Noto Sans Hanifi Rohingya\";a:3:{s:5:\"label\";s:25:\"Noto Sans Hanifi Rohingya\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Hanunoo\";a:3:{s:5:\"label\";s:17:\"Noto Sans Hanunoo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Hatran\";a:3:{s:5:\"label\";s:16:\"Noto Sans Hatran\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Hebrew\";a:3:{s:5:\"label\";s:16:\"Noto Sans Hebrew\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:26:\"Noto Sans Imperial Aramaic\";a:3:{s:5:\"label\";s:26:\"Noto Sans Imperial Aramaic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:29:\"Noto Sans Indic Siyaq Numbers\";a:3:{s:5:\"label\";s:29:\"Noto Sans Indic Siyaq Numbers\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:31:\"Noto Sans Inscriptional Pahlavi\";a:3:{s:5:\"label\";s:31:\"Noto Sans Inscriptional Pahlavi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:32:\"Noto Sans Inscriptional Parthian\";a:3:{s:5:\"label\";s:32:\"Noto Sans Inscriptional Parthian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Noto Sans JP\";a:3:{s:5:\"label\";s:12:\"Noto Sans JP\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Javanese\";a:3:{s:5:\"label\";s:18:\"Noto Sans Javanese\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Noto Sans KR\";a:3:{s:5:\"label\";s:12:\"Noto Sans KR\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Kaithi\";a:3:{s:5:\"label\";s:16:\"Noto Sans Kaithi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Kannada\";a:3:{s:5:\"label\";s:17:\"Noto Sans Kannada\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Kayah Li\";a:3:{s:5:\"label\";s:18:\"Noto Sans Kayah Li\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Noto Sans Kharoshthi\";a:3:{s:5:\"label\";s:20:\"Noto Sans Kharoshthi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Khmer\";a:3:{s:5:\"label\";s:15:\"Noto Sans Khmer\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Khojki\";a:3:{s:5:\"label\";s:16:\"Noto Sans Khojki\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Noto Sans Khudawadi\";a:3:{s:5:\"label\";s:19:\"Noto Sans Khudawadi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Noto Sans Lao\";a:3:{s:5:\"label\";s:13:\"Noto Sans Lao\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Lepcha\";a:3:{s:5:\"label\";s:16:\"Noto Sans Lepcha\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Limbu\";a:3:{s:5:\"label\";s:15:\"Noto Sans Limbu\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Linear A\";a:3:{s:5:\"label\";s:18:\"Noto Sans Linear A\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Linear B\";a:3:{s:5:\"label\";s:18:\"Noto Sans Linear B\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Noto Sans Lisu\";a:3:{s:5:\"label\";s:14:\"Noto Sans Lisu\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Lycian\";a:3:{s:5:\"label\";s:16:\"Noto Sans Lycian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Lydian\";a:3:{s:5:\"label\";s:16:\"Noto Sans Lydian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Mahajani\";a:3:{s:5:\"label\";s:18:\"Noto Sans Mahajani\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Noto Sans Malayalam\";a:3:{s:5:\"label\";s:19:\"Noto Sans Malayalam\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Mandaic\";a:3:{s:5:\"label\";s:17:\"Noto Sans Mandaic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Noto Sans Manichaean\";a:3:{s:5:\"label\";s:20:\"Noto Sans Manichaean\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Marchen\";a:3:{s:5:\"label\";s:17:\"Noto Sans Marchen\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:23:\"Noto Sans Masaram Gondi\";a:3:{s:5:\"label\";s:23:\"Noto Sans Masaram Gondi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Noto Sans Math\";a:3:{s:5:\"label\";s:14:\"Noto Sans Math\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:24:\"Noto Sans Mayan Numerals\";a:3:{s:5:\"label\";s:24:\"Noto Sans Mayan Numerals\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Noto Sans Medefaidrin\";a:3:{s:5:\"label\";s:21:\"Noto Sans Medefaidrin\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:22:\"Noto Sans Meetei Mayek\";a:3:{s:5:\"label\";s:22:\"Noto Sans Meetei Mayek\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Meroitic\";a:3:{s:5:\"label\";s:18:\"Noto Sans Meroitic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Noto Sans Miao\";a:3:{s:5:\"label\";s:14:\"Noto Sans Miao\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Noto Sans Modi\";a:3:{s:5:\"label\";s:14:\"Noto Sans Modi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Noto Sans Mongolian\";a:3:{s:5:\"label\";s:19:\"Noto Sans Mongolian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Noto Sans Mono\";a:3:{s:5:\"label\";s:14:\"Noto Sans Mono\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:13:\"Noto Sans Mro\";a:3:{s:5:\"label\";s:13:\"Noto Sans Mro\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Multani\";a:3:{s:5:\"label\";s:17:\"Noto Sans Multani\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Myanmar\";a:3:{s:5:\"label\";s:17:\"Noto Sans Myanmar\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Noto Sans N Ko\";a:3:{s:5:\"label\";s:14:\"Noto Sans N Ko\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Noto Sans Nabataean\";a:3:{s:5:\"label\";s:19:\"Noto Sans Nabataean\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Noto Sans New Tai Lue\";a:3:{s:5:\"label\";s:21:\"Noto Sans New Tai Lue\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Noto Sans Newa\";a:3:{s:5:\"label\";s:14:\"Noto Sans Newa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Nushu\";a:3:{s:5:\"label\";s:15:\"Noto Sans Nushu\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Ogham\";a:3:{s:5:\"label\";s:15:\"Noto Sans Ogham\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Ol Chiki\";a:3:{s:5:\"label\";s:18:\"Noto Sans Ol Chiki\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:23:\"Noto Sans Old Hungarian\";a:3:{s:5:\"label\";s:23:\"Noto Sans Old Hungarian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Noto Sans Old Italic\";a:3:{s:5:\"label\";s:20:\"Noto Sans Old Italic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:27:\"Noto Sans Old North Arabian\";a:3:{s:5:\"label\";s:27:\"Noto Sans Old North Arabian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Noto Sans Old Permic\";a:3:{s:5:\"label\";s:20:\"Noto Sans Old Permic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Noto Sans Old Persian\";a:3:{s:5:\"label\";s:21:\"Noto Sans Old Persian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Noto Sans Old Sogdian\";a:3:{s:5:\"label\";s:21:\"Noto Sans Old Sogdian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:27:\"Noto Sans Old South Arabian\";a:3:{s:5:\"label\";s:27:\"Noto Sans Old South Arabian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Noto Sans Old Turkic\";a:3:{s:5:\"label\";s:20:\"Noto Sans Old Turkic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Oriya\";a:3:{s:5:\"label\";s:15:\"Noto Sans Oriya\";s:8:\"variants\";a:4:{i:0;s:3:\"100\";i:1;s:3:\"700\";i:2;s:3:\"900\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Osage\";a:3:{s:5:\"label\";s:15:\"Noto Sans Osage\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Osmanya\";a:3:{s:5:\"label\";s:17:\"Noto Sans Osmanya\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:22:\"Noto Sans Pahawh Hmong\";a:3:{s:5:\"label\";s:22:\"Noto Sans Pahawh Hmong\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Noto Sans Palmyrene\";a:3:{s:5:\"label\";s:19:\"Noto Sans Palmyrene\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Noto Sans Pau Cin Hau\";a:3:{s:5:\"label\";s:21:\"Noto Sans Pau Cin Hau\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Phags Pa\";a:3:{s:5:\"label\";s:18:\"Noto Sans Phags Pa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Noto Sans Phoenician\";a:3:{s:5:\"label\";s:20:\"Noto Sans Phoenician\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:25:\"Noto Sans Psalter Pahlavi\";a:3:{s:5:\"label\";s:25:\"Noto Sans Psalter Pahlavi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Rejang\";a:3:{s:5:\"label\";s:16:\"Noto Sans Rejang\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Runic\";a:3:{s:5:\"label\";s:15:\"Noto Sans Runic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Noto Sans SC\";a:3:{s:5:\"label\";s:12:\"Noto Sans SC\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Noto Sans Samaritan\";a:3:{s:5:\"label\";s:19:\"Noto Sans Samaritan\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Noto Sans Saurashtra\";a:3:{s:5:\"label\";s:20:\"Noto Sans Saurashtra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Sharada\";a:3:{s:5:\"label\";s:17:\"Noto Sans Sharada\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Shavian\";a:3:{s:5:\"label\";s:17:\"Noto Sans Shavian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Siddham\";a:3:{s:5:\"label\";s:17:\"Noto Sans Siddham\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Sinhala\";a:3:{s:5:\"label\";s:17:\"Noto Sans Sinhala\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Sogdian\";a:3:{s:5:\"label\";s:17:\"Noto Sans Sogdian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:22:\"Noto Sans Sora Sompeng\";a:3:{s:5:\"label\";s:22:\"Noto Sans Sora Sompeng\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Soyombo\";a:3:{s:5:\"label\";s:17:\"Noto Sans Soyombo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Noto Sans Sundanese\";a:3:{s:5:\"label\";s:19:\"Noto Sans Sundanese\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:22:\"Noto Sans Syloti Nagri\";a:3:{s:5:\"label\";s:22:\"Noto Sans Syloti Nagri\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Symbols\";a:3:{s:5:\"label\";s:17:\"Noto Sans Symbols\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Noto Sans Symbols 2\";a:3:{s:5:\"label\";s:19:\"Noto Sans Symbols 2\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Syriac\";a:3:{s:5:\"label\";s:16:\"Noto Sans Syriac\";s:8:\"variants\";a:3:{i:0;s:3:\"100\";i:1;s:3:\"900\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Noto Sans TC\";a:3:{s:5:\"label\";s:12:\"Noto Sans TC\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Tagalog\";a:3:{s:5:\"label\";s:17:\"Noto Sans Tagalog\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Tagbanwa\";a:3:{s:5:\"label\";s:18:\"Noto Sans Tagbanwa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Tai Le\";a:3:{s:5:\"label\";s:16:\"Noto Sans Tai Le\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Tai Tham\";a:3:{s:5:\"label\";s:18:\"Noto Sans Tai Tham\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Tai Viet\";a:3:{s:5:\"label\";s:18:\"Noto Sans Tai Viet\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Takri\";a:3:{s:5:\"label\";s:15:\"Noto Sans Takri\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Noto Sans Tamil\";a:3:{s:5:\"label\";s:15:\"Noto Sans Tamil\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:26:\"Noto Sans Tamil Supplement\";a:3:{s:5:\"label\";s:26:\"Noto Sans Tamil Supplement\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Telugu\";a:3:{s:5:\"label\";s:16:\"Noto Sans Telugu\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Thaana\";a:3:{s:5:\"label\";s:16:\"Noto Sans Thaana\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Noto Sans Thai\";a:3:{s:5:\"label\";s:14:\"Noto Sans Thai\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Noto Sans Thai Looped\";a:3:{s:5:\"label\";s:21:\"Noto Sans Thai Looped\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Tifinagh\";a:3:{s:5:\"label\";s:18:\"Noto Sans Tifinagh\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Noto Sans Tirhuta\";a:3:{s:5:\"label\";s:17:\"Noto Sans Tirhuta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Noto Sans Ugaritic\";a:3:{s:5:\"label\";s:18:\"Noto Sans Ugaritic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Noto Sans Vai\";a:3:{s:5:\"label\";s:13:\"Noto Sans Vai\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Noto Sans Wancho\";a:3:{s:5:\"label\";s:16:\"Noto Sans Wancho\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Noto Sans Warang Citi\";a:3:{s:5:\"label\";s:21:\"Noto Sans Warang Citi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Noto Sans Yi\";a:3:{s:5:\"label\";s:12:\"Noto Sans Yi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:26:\"Noto Sans Zanabazar Square\";a:3:{s:5:\"label\";s:26:\"Noto Sans Zanabazar Square\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Noto Serif\";a:3:{s:5:\"label\";s:10:\"Noto Serif\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Noto Serif Ahom\";a:3:{s:5:\"label\";s:15:\"Noto Serif Ahom\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"Noto Serif Armenian\";a:3:{s:5:\"label\";s:19:\"Noto Serif Armenian\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"Noto Serif Balinese\";a:3:{s:5:\"label\";s:19:\"Noto Serif Balinese\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Noto Serif Bengali\";a:3:{s:5:\"label\";s:18:\"Noto Serif Bengali\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:21:\"Noto Serif Devanagari\";a:3:{s:5:\"label\";s:21:\"Noto Serif Devanagari\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Noto Serif Display\";a:3:{s:5:\"label\";s:18:\"Noto Serif Display\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Noto Serif Dogra\";a:3:{s:5:\"label\";s:16:\"Noto Serif Dogra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"Noto Serif Ethiopic\";a:3:{s:5:\"label\";s:19:\"Noto Serif Ethiopic\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"Noto Serif Georgian\";a:3:{s:5:\"label\";s:19:\"Noto Serif Georgian\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Noto Serif Grantha\";a:3:{s:5:\"label\";s:18:\"Noto Serif Grantha\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"Noto Serif Gujarati\";a:3:{s:5:\"label\";s:19:\"Noto Serif Gujarati\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"Noto Serif Gurmukhi\";a:3:{s:5:\"label\";s:19:\"Noto Serif Gurmukhi\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Noto Serif Hebrew\";a:3:{s:5:\"label\";s:17:\"Noto Serif Hebrew\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Noto Serif JP\";a:3:{s:5:\"label\";s:13:\"Noto Serif JP\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Noto Serif KR\";a:3:{s:5:\"label\";s:13:\"Noto Serif KR\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Noto Serif Kannada\";a:3:{s:5:\"label\";s:18:\"Noto Serif Kannada\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Noto Serif Khmer\";a:3:{s:5:\"label\";s:16:\"Noto Serif Khmer\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Noto Serif Lao\";a:3:{s:5:\"label\";s:14:\"Noto Serif Lao\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"Noto Serif Malayalam\";a:3:{s:5:\"label\";s:20:\"Noto Serif Malayalam\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Noto Serif Myanmar\";a:3:{s:5:\"label\";s:18:\"Noto Serif Myanmar\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:33:\"Noto Serif Nyiakeng Puachue Hmong\";a:3:{s:5:\"label\";s:33:\"Noto Serif Nyiakeng Puachue Hmong\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Noto Serif SC\";a:3:{s:5:\"label\";s:13:\"Noto Serif SC\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Noto Serif Sinhala\";a:3:{s:5:\"label\";s:18:\"Noto Serif Sinhala\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Noto Serif TC\";a:3:{s:5:\"label\";s:13:\"Noto Serif TC\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Noto Serif Tamil\";a:3:{s:5:\"label\";s:16:\"Noto Serif Tamil\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Noto Serif Tangut\";a:3:{s:5:\"label\";s:17:\"Noto Serif Tangut\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Noto Serif Telugu\";a:3:{s:5:\"label\";s:17:\"Noto Serif Telugu\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Noto Serif Thai\";a:3:{s:5:\"label\";s:15:\"Noto Serif Thai\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Noto Serif Tibetan\";a:3:{s:5:\"label\";s:18:\"Noto Serif Tibetan\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Noto Serif Yezidi\";a:3:{s:5:\"label\";s:17:\"Noto Serif Yezidi\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:22:\"Noto Traditional Nushu\";a:3:{s:5:\"label\";s:22:\"Noto Traditional Nushu\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Nova Cut\";a:3:{s:5:\"label\";s:8:\"Nova Cut\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Nova Flat\";a:3:{s:5:\"label\";s:9:\"Nova Flat\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Nova Mono\";a:3:{s:5:\"label\";s:9:\"Nova Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:9:\"Nova Oval\";a:3:{s:5:\"label\";s:9:\"Nova Oval\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Nova Round\";a:3:{s:5:\"label\";s:10:\"Nova Round\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Nova Script\";a:3:{s:5:\"label\";s:11:\"Nova Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Nova Slim\";a:3:{s:5:\"label\";s:9:\"Nova Slim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Nova Square\";a:3:{s:5:\"label\";s:11:\"Nova Square\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Numans\";a:3:{s:5:\"label\";s:6:\"Numans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Nunito\";a:3:{s:5:\"label\";s:6:\"Nunito\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Nunito Sans\";a:3:{s:5:\"label\";s:11:\"Nunito Sans\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Odibee Sans\";a:3:{s:5:\"label\";s:11:\"Odibee Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Odor Mean Chey\";a:3:{s:5:\"label\";s:14:\"Odor Mean Chey\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Offside\";a:3:{s:5:\"label\";s:7:\"Offside\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:2:\"Oi\";a:3:{s:5:\"label\";s:2:\"Oi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Old Standard TT\";a:3:{s:5:\"label\";s:15:\"Old Standard TT\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Oldenburg\";a:3:{s:5:\"label\";s:9:\"Oldenburg\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:3:\"Ole\";a:3:{s:5:\"label\";s:3:\"Ole\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Oleo Script\";a:3:{s:5:\"label\";s:11:\"Oleo Script\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:22:\"Oleo Script Swash Caps\";a:3:{s:5:\"label\";s:22:\"Oleo Script Swash Caps\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Oooh Baby\";a:3:{s:5:\"label\";s:9:\"Oooh Baby\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Open Sans\";a:3:{s:5:\"label\";s:9:\"Open Sans\";s:8:\"variants\";a:12:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Open Sans Condensed\";a:3:{s:5:\"label\";s:19:\"Open Sans Condensed\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Oranienbaum\";a:3:{s:5:\"label\";s:11:\"Oranienbaum\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Orbitron\";a:3:{s:5:\"label\";s:8:\"Orbitron\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Oregano\";a:3:{s:5:\"label\";s:7:\"Oregano\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Orelega One\";a:3:{s:5:\"label\";s:11:\"Orelega One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Orienta\";a:3:{s:5:\"label\";s:7:\"Orienta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Original Surfer\";a:3:{s:5:\"label\";s:15:\"Original Surfer\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Oswald\";a:3:{s:5:\"label\";s:6:\"Oswald\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Otomanopee One\";a:3:{s:5:\"label\";s:14:\"Otomanopee One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Outfit\";a:3:{s:5:\"label\";s:6:\"Outfit\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Over the Rainbow\";a:3:{s:5:\"label\";s:16:\"Over the Rainbow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Overlock\";a:3:{s:5:\"label\";s:8:\"Overlock\";s:8:\"variants\";a:6:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:3:\"900\";i:3;s:9:\"900italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Overlock SC\";a:3:{s:5:\"label\";s:11:\"Overlock SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Overpass\";a:3:{s:5:\"label\";s:8:\"Overpass\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Overpass Mono\";a:3:{s:5:\"label\";s:13:\"Overpass Mono\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:3:\"Ovo\";a:3:{s:5:\"label\";s:3:\"Ovo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Oxanium\";a:3:{s:5:\"label\";s:7:\"Oxanium\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Oxygen\";a:3:{s:5:\"label\";s:6:\"Oxygen\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Oxygen Mono\";a:3:{s:5:\"label\";s:11:\"Oxygen Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"PT Mono\";a:3:{s:5:\"label\";s:7:\"PT Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"PT Sans\";a:3:{s:5:\"label\";s:7:\"PT Sans\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"PT Sans Caption\";a:3:{s:5:\"label\";s:15:\"PT Sans Caption\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"PT Sans Narrow\";a:3:{s:5:\"label\";s:14:\"PT Sans Narrow\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"PT Serif\";a:3:{s:5:\"label\";s:8:\"PT Serif\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"PT Serif Caption\";a:3:{s:5:\"label\";s:16:\"PT Serif Caption\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Pacifico\";a:3:{s:5:\"label\";s:8:\"Pacifico\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Padauk\";a:3:{s:5:\"label\";s:6:\"Padauk\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Palanquin\";a:3:{s:5:\"label\";s:9:\"Palanquin\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Palanquin Dark\";a:3:{s:5:\"label\";s:14:\"Palanquin Dark\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Palette Mosaic\";a:3:{s:5:\"label\";s:14:\"Palette Mosaic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Pangolin\";a:3:{s:5:\"label\";s:8:\"Pangolin\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Paprika\";a:3:{s:5:\"label\";s:7:\"Paprika\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Parisienne\";a:3:{s:5:\"label\";s:10:\"Parisienne\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Passero One\";a:3:{s:5:\"label\";s:11:\"Passero One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Passion One\";a:3:{s:5:\"label\";s:11:\"Passion One\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"900\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Passions Conflict\";a:3:{s:5:\"label\";s:17:\"Passions Conflict\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:18:\"Pathway Gothic One\";a:3:{s:5:\"label\";s:18:\"Pathway Gothic One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Patrick Hand\";a:3:{s:5:\"label\";s:12:\"Patrick Hand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Patrick Hand SC\";a:3:{s:5:\"label\";s:15:\"Patrick Hand SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Pattaya\";a:3:{s:5:\"label\";s:7:\"Pattaya\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Patua One\";a:3:{s:5:\"label\";s:9:\"Patua One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Pavanam\";a:3:{s:5:\"label\";s:7:\"Pavanam\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Paytone One\";a:3:{s:5:\"label\";s:11:\"Paytone One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Peddana\";a:3:{s:5:\"label\";s:7:\"Peddana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Peralta\";a:3:{s:5:\"label\";s:7:\"Peralta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Permanent Marker\";a:3:{s:5:\"label\";s:16:\"Permanent Marker\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Petemoss\";a:3:{s:5:\"label\";s:8:\"Petemoss\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:19:\"Petit Formal Script\";a:3:{s:5:\"label\";s:19:\"Petit Formal Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Petrona\";a:3:{s:5:\"label\";s:7:\"Petrona\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Philosopher\";a:3:{s:5:\"label\";s:11:\"Philosopher\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Piazzolla\";a:3:{s:5:\"label\";s:9:\"Piazzolla\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Piedra\";a:3:{s:5:\"label\";s:6:\"Piedra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Pinyon Script\";a:3:{s:5:\"label\";s:13:\"Pinyon Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Pirata One\";a:3:{s:5:\"label\";s:10:\"Pirata One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Plaster\";a:3:{s:5:\"label\";s:7:\"Plaster\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Play\";a:3:{s:5:\"label\";s:4:\"Play\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Playball\";a:3:{s:5:\"label\";s:8:\"Playball\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Playfair Display\";a:3:{s:5:\"label\";s:16:\"Playfair Display\";s:8:\"variants\";a:12:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"Playfair Display SC\";a:3:{s:5:\"label\";s:19:\"Playfair Display SC\";s:8:\"variants\";a:6:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:3:\"900\";i:3;s:9:\"900italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Podkova\";a:3:{s:5:\"label\";s:7:\"Podkova\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Poiret One\";a:3:{s:5:\"label\";s:10:\"Poiret One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Poller One\";a:3:{s:5:\"label\";s:10:\"Poller One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Poly\";a:3:{s:5:\"label\";s:4:\"Poly\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Pompiere\";a:3:{s:5:\"label\";s:8:\"Pompiere\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Pontano Sans\";a:3:{s:5:\"label\";s:12:\"Pontano Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Poor Story\";a:3:{s:5:\"label\";s:10:\"Poor Story\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Poppins\";a:3:{s:5:\"label\";s:7:\"Poppins\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Port Lligat Sans\";a:3:{s:5:\"label\";s:16:\"Port Lligat Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Port Lligat Slab\";a:3:{s:5:\"label\";s:16:\"Port Lligat Slab\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Potta One\";a:3:{s:5:\"label\";s:9:\"Potta One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Pragati Narrow\";a:3:{s:5:\"label\";s:14:\"Pragati Narrow\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Praise\";a:3:{s:5:\"label\";s:6:\"Praise\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Prata\";a:3:{s:5:\"label\";s:5:\"Prata\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Preahvihear\";a:3:{s:5:\"label\";s:11:\"Preahvihear\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Press Start 2P\";a:3:{s:5:\"label\";s:14:\"Press Start 2P\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Pridi\";a:3:{s:5:\"label\";s:5:\"Pridi\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Princess Sofia\";a:3:{s:5:\"label\";s:14:\"Princess Sofia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Prociono\";a:3:{s:5:\"label\";s:8:\"Prociono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Prompt\";a:3:{s:5:\"label\";s:6:\"Prompt\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Prosto One\";a:3:{s:5:\"label\";s:10:\"Prosto One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Proza Libre\";a:3:{s:5:\"label\";s:11:\"Proza Libre\";s:8:\"variants\";a:10:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Public Sans\";a:3:{s:5:\"label\";s:11:\"Public Sans\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Puppies Play\";a:3:{s:5:\"label\";s:12:\"Puppies Play\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Puritan\";a:3:{s:5:\"label\";s:7:\"Puritan\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Purple Purse\";a:3:{s:5:\"label\";s:12:\"Purple Purse\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Qahiri\";a:3:{s:5:\"label\";s:6:\"Qahiri\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Quando\";a:3:{s:5:\"label\";s:6:\"Quando\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Quantico\";a:3:{s:5:\"label\";s:8:\"Quantico\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Quattrocento\";a:3:{s:5:\"label\";s:12:\"Quattrocento\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Quattrocento Sans\";a:3:{s:5:\"label\";s:17:\"Quattrocento Sans\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Questrial\";a:3:{s:5:\"label\";s:9:\"Questrial\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Quicksand\";a:3:{s:5:\"label\";s:9:\"Quicksand\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Quintessential\";a:3:{s:5:\"label\";s:14:\"Quintessential\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Qwigley\";a:3:{s:5:\"label\";s:7:\"Qwigley\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Qwitcher Grypen\";a:3:{s:5:\"label\";s:15:\"Qwitcher Grypen\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Racing Sans One\";a:3:{s:5:\"label\";s:15:\"Racing Sans One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Radley\";a:3:{s:5:\"label\";s:6:\"Radley\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Rajdhani\";a:3:{s:5:\"label\";s:8:\"Rajdhani\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Rakkas\";a:3:{s:5:\"label\";s:6:\"Rakkas\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Raleway\";a:3:{s:5:\"label\";s:7:\"Raleway\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Raleway Dots\";a:3:{s:5:\"label\";s:12:\"Raleway Dots\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Ramabhadra\";a:3:{s:5:\"label\";s:10:\"Ramabhadra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Ramaraja\";a:3:{s:5:\"label\";s:8:\"Ramaraja\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Rambla\";a:3:{s:5:\"label\";s:6:\"Rambla\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Rammetto One\";a:3:{s:5:\"label\";s:12:\"Rammetto One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Rampart One\";a:3:{s:5:\"label\";s:11:\"Rampart One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Ranchers\";a:3:{s:5:\"label\";s:8:\"Ranchers\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Rancho\";a:3:{s:5:\"label\";s:6:\"Rancho\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Ranga\";a:3:{s:5:\"label\";s:5:\"Ranga\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Rasa\";a:3:{s:5:\"label\";s:4:\"Rasa\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Rationale\";a:3:{s:5:\"label\";s:9:\"Rationale\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Ravi Prakash\";a:3:{s:5:\"label\";s:12:\"Ravi Prakash\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Readex Pro\";a:3:{s:5:\"label\";s:10:\"Readex Pro\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Recursive\";a:3:{s:5:\"label\";s:9:\"Recursive\";s:8:\"variants\";a:7:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Red Hat Display\";a:3:{s:5:\"label\";s:15:\"Red Hat Display\";s:8:\"variants\";a:14:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Red Hat Mono\";a:3:{s:5:\"label\";s:12:\"Red Hat Mono\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:12:\"Red Hat Text\";a:3:{s:5:\"label\";s:12:\"Red Hat Text\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Red Rose\";a:3:{s:5:\"label\";s:8:\"Red Rose\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Redacted\";a:3:{s:5:\"label\";s:8:\"Redacted\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Redacted Script\";a:3:{s:5:\"label\";s:15:\"Redacted Script\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Redressed\";a:3:{s:5:\"label\";s:9:\"Redressed\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Reem Kufi\";a:3:{s:5:\"label\";s:9:\"Reem Kufi\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Reenie Beanie\";a:3:{s:5:\"label\";s:13:\"Reenie Beanie\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Reggae One\";a:3:{s:5:\"label\";s:10:\"Reggae One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Revalia\";a:3:{s:5:\"label\";s:7:\"Revalia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Rhodium Libre\";a:3:{s:5:\"label\";s:13:\"Rhodium Libre\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Ribeye\";a:3:{s:5:\"label\";s:6:\"Ribeye\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Ribeye Marrow\";a:3:{s:5:\"label\";s:13:\"Ribeye Marrow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Righteous\";a:3:{s:5:\"label\";s:9:\"Righteous\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Risque\";a:3:{s:5:\"label\";s:6:\"Risque\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Road Rage\";a:3:{s:5:\"label\";s:9:\"Road Rage\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Roboto\";a:3:{s:5:\"label\";s:6:\"Roboto\";s:8:\"variants\";a:12:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Roboto Condensed\";a:3:{s:5:\"label\";s:16:\"Roboto Condensed\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Roboto Mono\";a:3:{s:5:\"label\";s:11:\"Roboto Mono\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:12:\"Roboto Serif\";a:3:{s:5:\"label\";s:12:\"Roboto Serif\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Roboto Slab\";a:3:{s:5:\"label\";s:11:\"Roboto Slab\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Rochester\";a:3:{s:5:\"label\";s:9:\"Rochester\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Rock 3D\";a:3:{s:5:\"label\";s:7:\"Rock 3D\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Rock Salt\";a:3:{s:5:\"label\";s:9:\"Rock Salt\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"RocknRoll One\";a:3:{s:5:\"label\";s:13:\"RocknRoll One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Rokkitt\";a:3:{s:5:\"label\";s:7:\"Rokkitt\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Romanesco\";a:3:{s:5:\"label\";s:9:\"Romanesco\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Ropa Sans\";a:3:{s:5:\"label\";s:9:\"Ropa Sans\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Rosario\";a:3:{s:5:\"label\";s:7:\"Rosario\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Rosarivo\";a:3:{s:5:\"label\";s:8:\"Rosarivo\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Rouge Script\";a:3:{s:5:\"label\";s:12:\"Rouge Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Rowdies\";a:3:{s:5:\"label\";s:7:\"Rowdies\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Rozha One\";a:3:{s:5:\"label\";s:9:\"Rozha One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Rubik\";a:3:{s:5:\"label\";s:5:\"Rubik\";s:8:\"variants\";a:14:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Rubik Beastly\";a:3:{s:5:\"label\";s:13:\"Rubik Beastly\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Rubik Mono One\";a:3:{s:5:\"label\";s:14:\"Rubik Mono One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Ruda\";a:3:{s:5:\"label\";s:4:\"Ruda\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Rufina\";a:3:{s:5:\"label\";s:6:\"Rufina\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Ruge Boogie\";a:3:{s:5:\"label\";s:11:\"Ruge Boogie\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Ruluko\";a:3:{s:5:\"label\";s:6:\"Ruluko\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Rum Raisin\";a:3:{s:5:\"label\";s:10:\"Rum Raisin\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Ruslan Display\";a:3:{s:5:\"label\";s:14:\"Ruslan Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Russo One\";a:3:{s:5:\"label\";s:9:\"Russo One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Ruthie\";a:3:{s:5:\"label\";s:6:\"Ruthie\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:3:\"Rye\";a:3:{s:5:\"label\";s:3:\"Rye\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"STIX Two Text\";a:3:{s:5:\"label\";s:13:\"STIX Two Text\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Sacramento\";a:3:{s:5:\"label\";s:10:\"Sacramento\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Sahitya\";a:3:{s:5:\"label\";s:7:\"Sahitya\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Sail\";a:3:{s:5:\"label\";s:4:\"Sail\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Saira\";a:3:{s:5:\"label\";s:5:\"Saira\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Saira Condensed\";a:3:{s:5:\"label\";s:15:\"Saira Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Saira Extra Condensed\";a:3:{s:5:\"label\";s:21:\"Saira Extra Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Saira Semi Condensed\";a:3:{s:5:\"label\";s:20:\"Saira Semi Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Saira Stencil One\";a:3:{s:5:\"label\";s:17:\"Saira Stencil One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Salsa\";a:3:{s:5:\"label\";s:5:\"Salsa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Sanchez\";a:3:{s:5:\"label\";s:7:\"Sanchez\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Sancreek\";a:3:{s:5:\"label\";s:8:\"Sancreek\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Sansita\";a:3:{s:5:\"label\";s:7:\"Sansita\";s:8:\"variants\";a:8:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:3:\"800\";i:3;s:9:\"800italic\";i:4;s:3:\"900\";i:5;s:9:\"900italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Sansita Swashed\";a:3:{s:5:\"label\";s:15:\"Sansita Swashed\";s:8:\"variants\";a:7:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Sarabun\";a:3:{s:5:\"label\";s:7:\"Sarabun\";s:8:\"variants\";a:16:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Sarala\";a:3:{s:5:\"label\";s:6:\"Sarala\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Sarina\";a:3:{s:5:\"label\";s:6:\"Sarina\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Sarpanch\";a:3:{s:5:\"label\";s:8:\"Sarpanch\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Sassy Frass\";a:3:{s:5:\"label\";s:11:\"Sassy Frass\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Satisfy\";a:3:{s:5:\"label\";s:7:\"Satisfy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Sawarabi Gothic\";a:3:{s:5:\"label\";s:15:\"Sawarabi Gothic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Sawarabi Mincho\";a:3:{s:5:\"label\";s:15:\"Sawarabi Mincho\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Scada\";a:3:{s:5:\"label\";s:5:\"Scada\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Scheherazade New\";a:3:{s:5:\"label\";s:16:\"Scheherazade New\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Schoolbell\";a:3:{s:5:\"label\";s:10:\"Schoolbell\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Scope One\";a:3:{s:5:\"label\";s:9:\"Scope One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Seaweed Script\";a:3:{s:5:\"label\";s:14:\"Seaweed Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Secular One\";a:3:{s:5:\"label\";s:11:\"Secular One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Sedgwick Ave\";a:3:{s:5:\"label\";s:12:\"Sedgwick Ave\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:20:\"Sedgwick Ave Display\";a:3:{s:5:\"label\";s:20:\"Sedgwick Ave Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:3:\"Sen\";a:3:{s:5:\"label\";s:3:\"Sen\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"800\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Sevillana\";a:3:{s:5:\"label\";s:9:\"Sevillana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Seymour One\";a:3:{s:5:\"label\";s:11:\"Seymour One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Shadows Into Light\";a:3:{s:5:\"label\";s:18:\"Shadows Into Light\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:22:\"Shadows Into Light Two\";a:3:{s:5:\"label\";s:22:\"Shadows Into Light Two\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Shalimar\";a:3:{s:5:\"label\";s:8:\"Shalimar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Shanti\";a:3:{s:5:\"label\";s:6:\"Shanti\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Share\";a:3:{s:5:\"label\";s:5:\"Share\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Share Tech\";a:3:{s:5:\"label\";s:10:\"Share Tech\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Share Tech Mono\";a:3:{s:5:\"label\";s:15:\"Share Tech Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:16:\"Shippori Antique\";a:3:{s:5:\"label\";s:16:\"Shippori Antique\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Shippori Antique B1\";a:3:{s:5:\"label\";s:19:\"Shippori Antique B1\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Shippori Mincho\";a:3:{s:5:\"label\";s:15:\"Shippori Mincho\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Shippori Mincho B1\";a:3:{s:5:\"label\";s:18:\"Shippori Mincho B1\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Shizuru\";a:3:{s:5:\"label\";s:7:\"Shizuru\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Shojumaru\";a:3:{s:5:\"label\";s:9:\"Shojumaru\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Short Stack\";a:3:{s:5:\"label\";s:11:\"Short Stack\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Shrikhand\";a:3:{s:5:\"label\";s:9:\"Shrikhand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Siemreap\";a:3:{s:5:\"label\";s:8:\"Siemreap\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Sigmar One\";a:3:{s:5:\"label\";s:10:\"Sigmar One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Signika\";a:3:{s:5:\"label\";s:7:\"Signika\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Signika Negative\";a:3:{s:5:\"label\";s:16:\"Signika Negative\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Simonetta\";a:3:{s:5:\"label\";s:9:\"Simonetta\";s:8:\"variants\";a:4:{i:0;s:3:\"900\";i:1;s:9:\"900italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Single Day\";a:3:{s:5:\"label\";s:10:\"Single Day\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Sintony\";a:3:{s:5:\"label\";s:7:\"Sintony\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Sirin Stencil\";a:3:{s:5:\"label\";s:13:\"Sirin Stencil\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Six Caps\";a:3:{s:5:\"label\";s:8:\"Six Caps\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Skranji\";a:3:{s:5:\"label\";s:7:\"Skranji\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Slabo 13px\";a:3:{s:5:\"label\";s:10:\"Slabo 13px\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Slabo 27px\";a:3:{s:5:\"label\";s:10:\"Slabo 27px\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Slackey\";a:3:{s:5:\"label\";s:7:\"Slackey\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Smokum\";a:3:{s:5:\"label\";s:6:\"Smokum\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Smooch\";a:3:{s:5:\"label\";s:6:\"Smooch\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Smythe\";a:3:{s:5:\"label\";s:6:\"Smythe\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Sniglet\";a:3:{s:5:\"label\";s:7:\"Sniglet\";s:8:\"variants\";a:2:{i:0;s:3:\"800\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Snippet\";a:3:{s:5:\"label\";s:7:\"Snippet\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Snowburst One\";a:3:{s:5:\"label\";s:13:\"Snowburst One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Sofadi One\";a:3:{s:5:\"label\";s:10:\"Sofadi One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Sofia\";a:3:{s:5:\"label\";s:5:\"Sofia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Solway\";a:3:{s:5:\"label\";s:6:\"Solway\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Song Myung\";a:3:{s:5:\"label\";s:10:\"Song Myung\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Sonsie One\";a:3:{s:5:\"label\";s:10:\"Sonsie One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Sora\";a:3:{s:5:\"label\";s:4:\"Sora\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Sorts Mill Goudy\";a:3:{s:5:\"label\";s:16:\"Sorts Mill Goudy\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Source Code Pro\";a:3:{s:5:\"label\";s:15:\"Source Code Pro\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:13:\"Source Sans 3\";a:3:{s:5:\"label\";s:13:\"Source Sans 3\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Source Sans Pro\";a:3:{s:5:\"label\";s:15:\"Source Sans Pro\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Source Serif 4\";a:3:{s:5:\"label\";s:14:\"Source Serif 4\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Source Serif Pro\";a:3:{s:5:\"label\";s:16:\"Source Serif Pro\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Space Grotesk\";a:3:{s:5:\"label\";s:13:\"Space Grotesk\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Space Mono\";a:3:{s:5:\"label\";s:10:\"Space Mono\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"Spartan\";a:3:{s:5:\"label\";s:7:\"Spartan\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Special Elite\";a:3:{s:5:\"label\";s:13:\"Special Elite\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Spectral\";a:3:{s:5:\"label\";s:8:\"Spectral\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Spectral SC\";a:3:{s:5:\"label\";s:11:\"Spectral SC\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Spicy Rice\";a:3:{s:5:\"label\";s:10:\"Spicy Rice\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Spinnaker\";a:3:{s:5:\"label\";s:9:\"Spinnaker\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Spirax\";a:3:{s:5:\"label\";s:6:\"Spirax\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Spline Sans\";a:3:{s:5:\"label\";s:11:\"Spline Sans\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Squada One\";a:3:{s:5:\"label\";s:10:\"Squada One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:20:\"Sree Krushnadevaraya\";a:3:{s:5:\"label\";s:20:\"Sree Krushnadevaraya\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Sriracha\";a:3:{s:5:\"label\";s:8:\"Sriracha\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Srisakdi\";a:3:{s:5:\"label\";s:8:\"Srisakdi\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Staatliches\";a:3:{s:5:\"label\";s:11:\"Staatliches\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Stalemate\";a:3:{s:5:\"label\";s:9:\"Stalemate\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Stalinist One\";a:3:{s:5:\"label\";s:13:\"Stalinist One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Stardos Stencil\";a:3:{s:5:\"label\";s:15:\"Stardos Stencil\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Stick\";a:3:{s:5:\"label\";s:5:\"Stick\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Stick No Bills\";a:3:{s:5:\"label\";s:14:\"Stick No Bills\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Stint Ultra Condensed\";a:3:{s:5:\"label\";s:21:\"Stint Ultra Condensed\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:20:\"Stint Ultra Expanded\";a:3:{s:5:\"label\";s:20:\"Stint Ultra Expanded\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Stoke\";a:3:{s:5:\"label\";s:5:\"Stoke\";s:8:\"variants\";a:2:{i:0;s:3:\"300\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Strait\";a:3:{s:5:\"label\";s:6:\"Strait\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Style Script\";a:3:{s:5:\"label\";s:12:\"Style Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Stylish\";a:3:{s:5:\"label\";s:7:\"Stylish\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Sue Ellen Francisco\";a:3:{s:5:\"label\";s:19:\"Sue Ellen Francisco\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Suez One\";a:3:{s:5:\"label\";s:8:\"Suez One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Sulphur Point\";a:3:{s:5:\"label\";s:13:\"Sulphur Point\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Sumana\";a:3:{s:5:\"label\";s:6:\"Sumana\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Sunflower\";a:3:{s:5:\"label\";s:9:\"Sunflower\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"700\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Sunshiney\";a:3:{s:5:\"label\";s:9:\"Sunshiney\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:16:\"Supermercado One\";a:3:{s:5:\"label\";s:16:\"Supermercado One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Sura\";a:3:{s:5:\"label\";s:4:\"Sura\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Suranna\";a:3:{s:5:\"label\";s:7:\"Suranna\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Suravaram\";a:3:{s:5:\"label\";s:9:\"Suravaram\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Suwannaphum\";a:3:{s:5:\"label\";s:11:\"Suwannaphum\";s:8:\"variants\";a:5:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"900\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Swanky and Moo Moo\";a:3:{s:5:\"label\";s:18:\"Swanky and Moo Moo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Syncopate\";a:3:{s:5:\"label\";s:9:\"Syncopate\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Syne\";a:3:{s:5:\"label\";s:4:\"Syne\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Syne Mono\";a:3:{s:5:\"label\";s:9:\"Syne Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:12:\"Syne Tactile\";a:3:{s:5:\"label\";s:12:\"Syne Tactile\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Tajawal\";a:3:{s:5:\"label\";s:7:\"Tajawal\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Tangerine\";a:3:{s:5:\"label\";s:9:\"Tangerine\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Taprom\";a:3:{s:5:\"label\";s:6:\"Taprom\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Tauri\";a:3:{s:5:\"label\";s:5:\"Tauri\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Taviraj\";a:3:{s:5:\"label\";s:7:\"Taviraj\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Teko\";a:3:{s:5:\"label\";s:4:\"Teko\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Telex\";a:3:{s:5:\"label\";s:5:\"Telex\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Tenali Ramakrishna\";a:3:{s:5:\"label\";s:18:\"Tenali Ramakrishna\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Tenor Sans\";a:3:{s:5:\"label\";s:10:\"Tenor Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Text Me One\";a:3:{s:5:\"label\";s:11:\"Text Me One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Texturina\";a:3:{s:5:\"label\";s:9:\"Texturina\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Thasadith\";a:3:{s:5:\"label\";s:9:\"Thasadith\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"The Girl Next Door\";a:3:{s:5:\"label\";s:18:\"The Girl Next Door\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"The Nautigal\";a:3:{s:5:\"label\";s:12:\"The Nautigal\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Tienne\";a:3:{s:5:\"label\";s:6:\"Tienne\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"900\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Tillana\";a:3:{s:5:\"label\";s:7:\"Tillana\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Timmana\";a:3:{s:5:\"label\";s:7:\"Timmana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Tinos\";a:3:{s:5:\"label\";s:5:\"Tinos\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Titan One\";a:3:{s:5:\"label\";s:9:\"Titan One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Titillium Web\";a:3:{s:5:\"label\";s:13:\"Titillium Web\";s:8:\"variants\";a:11:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"900\";i:9;s:6:\"italic\";i:10;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Tomorrow\";a:3:{s:5:\"label\";s:8:\"Tomorrow\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Tourney\";a:3:{s:5:\"label\";s:7:\"Tourney\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Trade Winds\";a:3:{s:5:\"label\";s:11:\"Trade Winds\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Train One\";a:3:{s:5:\"label\";s:9:\"Train One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Trirong\";a:3:{s:5:\"label\";s:7:\"Trirong\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Trispace\";a:3:{s:5:\"label\";s:8:\"Trispace\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Trocchi\";a:3:{s:5:\"label\";s:7:\"Trocchi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Trochut\";a:3:{s:5:\"label\";s:7:\"Trochut\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Truculenta\";a:3:{s:5:\"label\";s:10:\"Truculenta\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Trykker\";a:3:{s:5:\"label\";s:7:\"Trykker\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Tulpen One\";a:3:{s:5:\"label\";s:10:\"Tulpen One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Turret Road\";a:3:{s:5:\"label\";s:11:\"Turret Road\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Twinkle Star\";a:3:{s:5:\"label\";s:12:\"Twinkle Star\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Ubuntu\";a:3:{s:5:\"label\";s:6:\"Ubuntu\";s:8:\"variants\";a:8:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Ubuntu Condensed\";a:3:{s:5:\"label\";s:16:\"Ubuntu Condensed\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Ubuntu Mono\";a:3:{s:5:\"label\";s:11:\"Ubuntu Mono\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:5:\"Uchen\";a:3:{s:5:\"label\";s:5:\"Uchen\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Ultra\";a:3:{s:5:\"label\";s:5:\"Ultra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Uncial Antiqua\";a:3:{s:5:\"label\";s:14:\"Uncial Antiqua\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Underdog\";a:3:{s:5:\"label\";s:8:\"Underdog\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Unica One\";a:3:{s:5:\"label\";s:9:\"Unica One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"UnifrakturCook\";a:3:{s:5:\"label\";s:14:\"UnifrakturCook\";s:8:\"variants\";a:1:{i:0;s:3:\"700\";}s:8:\"category\";s:7:\"display\";}s:18:\"UnifrakturMaguntia\";a:3:{s:5:\"label\";s:18:\"UnifrakturMaguntia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Unkempt\";a:3:{s:5:\"label\";s:7:\"Unkempt\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Unlock\";a:3:{s:5:\"label\";s:6:\"Unlock\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Unna\";a:3:{s:5:\"label\";s:4:\"Unna\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Urbanist\";a:3:{s:5:\"label\";s:8:\"Urbanist\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"VT323\";a:3:{s:5:\"label\";s:5:\"VT323\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:11:\"Vampiro One\";a:3:{s:5:\"label\";s:11:\"Vampiro One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Varela\";a:3:{s:5:\"label\";s:6:\"Varela\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Varela Round\";a:3:{s:5:\"label\";s:12:\"Varela Round\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Varta\";a:3:{s:5:\"label\";s:5:\"Varta\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Vast Shadow\";a:3:{s:5:\"label\";s:11:\"Vast Shadow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Vesper Libre\";a:3:{s:5:\"label\";s:12:\"Vesper Libre\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:3:\"900\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Viaoda Libre\";a:3:{s:5:\"label\";s:12:\"Viaoda Libre\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Vibes\";a:3:{s:5:\"label\";s:5:\"Vibes\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Vibur\";a:3:{s:5:\"label\";s:5:\"Vibur\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Vidaloka\";a:3:{s:5:\"label\";s:8:\"Vidaloka\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Viga\";a:3:{s:5:\"label\";s:4:\"Viga\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Voces\";a:3:{s:5:\"label\";s:5:\"Voces\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Volkhov\";a:3:{s:5:\"label\";s:7:\"Volkhov\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Vollkorn\";a:3:{s:5:\"label\";s:8:\"Vollkorn\";s:8:\"variants\";a:12:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Vollkorn SC\";a:3:{s:5:\"label\";s:11:\"Vollkorn SC\";s:8:\"variants\";a:4:{i:0;s:3:\"600\";i:1;s:3:\"700\";i:2;s:3:\"900\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Voltaire\";a:3:{s:5:\"label\";s:8:\"Voltaire\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Vujahday Script\";a:3:{s:5:\"label\";s:15:\"Vujahday Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:23:\"Waiting for the Sunrise\";a:3:{s:5:\"label\";s:23:\"Waiting for the Sunrise\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Wallpoet\";a:3:{s:5:\"label\";s:8:\"Wallpoet\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Walter Turncoat\";a:3:{s:5:\"label\";s:15:\"Walter Turncoat\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Warnes\";a:3:{s:5:\"label\";s:6:\"Warnes\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Waterfall\";a:3:{s:5:\"label\";s:9:\"Waterfall\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Wellfleet\";a:3:{s:5:\"label\";s:9:\"Wellfleet\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Wendy One\";a:3:{s:5:\"label\";s:9:\"Wendy One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"WindSong\";a:3:{s:5:\"label\";s:8:\"WindSong\";s:8:\"variants\";a:2:{i:0;s:3:\"500\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Wire One\";a:3:{s:5:\"label\";s:8:\"Wire One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Work Sans\";a:3:{s:5:\"label\";s:9:\"Work Sans\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Xanh Mono\";a:3:{s:5:\"label\";s:9:\"Xanh Mono\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"Yaldevi\";a:3:{s:5:\"label\";s:7:\"Yaldevi\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Yanone Kaffeesatz\";a:3:{s:5:\"label\";s:17:\"Yanone Kaffeesatz\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Yantramanav\";a:3:{s:5:\"label\";s:11:\"Yantramanav\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Yatra One\";a:3:{s:5:\"label\";s:9:\"Yatra One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Yellowtail\";a:3:{s:5:\"label\";s:10:\"Yellowtail\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Yeon Sung\";a:3:{s:5:\"label\";s:9:\"Yeon Sung\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Yeseva One\";a:3:{s:5:\"label\";s:10:\"Yeseva One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Yesteryear\";a:3:{s:5:\"label\";s:10:\"Yesteryear\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Yomogi\";a:3:{s:5:\"label\";s:6:\"Yomogi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Yrsa\";a:3:{s:5:\"label\";s:4:\"Yrsa\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Yuji Boku\";a:3:{s:5:\"label\";s:9:\"Yuji Boku\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:21:\"Yuji Hentaigana Akari\";a:3:{s:5:\"label\";s:21:\"Yuji Hentaigana Akari\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:23:\"Yuji Hentaigana Akebono\";a:3:{s:5:\"label\";s:23:\"Yuji Hentaigana Akebono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Yuji Mai\";a:3:{s:5:\"label\";s:8:\"Yuji Mai\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Yuji Syuku\";a:3:{s:5:\"label\";s:10:\"Yuji Syuku\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Yusei Magic\";a:3:{s:5:\"label\";s:11:\"Yusei Magic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"ZCOOL KuaiLe\";a:3:{s:5:\"label\";s:12:\"ZCOOL KuaiLe\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:21:\"ZCOOL QingKe HuangYou\";a:3:{s:5:\"label\";s:21:\"ZCOOL QingKe HuangYou\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"ZCOOL XiaoWei\";a:3:{s:5:\"label\";s:13:\"ZCOOL XiaoWei\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Zen Antique\";a:3:{s:5:\"label\";s:11:\"Zen Antique\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Zen Antique Soft\";a:3:{s:5:\"label\";s:16:\"Zen Antique Soft\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Zen Dots\";a:3:{s:5:\"label\";s:8:\"Zen Dots\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:23:\"Zen Kaku Gothic Antique\";a:3:{s:5:\"label\";s:23:\"Zen Kaku Gothic Antique\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"700\";i:3;s:3:\"900\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Zen Kaku Gothic New\";a:3:{s:5:\"label\";s:19:\"Zen Kaku Gothic New\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"700\";i:3;s:3:\"900\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Zen Kurenaido\";a:3:{s:5:\"label\";s:13:\"Zen Kurenaido\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Zen Loop\";a:3:{s:5:\"label\";s:8:\"Zen Loop\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Zen Maru Gothic\";a:3:{s:5:\"label\";s:15:\"Zen Maru Gothic\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"700\";i:3;s:3:\"900\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Zen Old Mincho\";a:3:{s:5:\"label\";s:14:\"Zen Old Mincho\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"900\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Zen Tokyo Zoo\";a:3:{s:5:\"label\";s:13:\"Zen Tokyo Zoo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Zeyada\";a:3:{s:5:\"label\";s:6:\"Zeyada\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Zhi Mang Xing\";a:3:{s:5:\"label\";s:13:\"Zhi Mang Xing\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Zilla Slab\";a:3:{s:5:\"label\";s:10:\"Zilla Slab\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"Zilla Slab Highlight\";a:3:{s:5:\"label\";s:20:\"Zilla Slab Highlight\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}}','no'),(1423,'weforms_settings','a:4:{s:13:\"email_gateway\";s:9:\"wordpress\";s:6:\"credit\";b:0;s:12:\"email_footer\";b:1;s:9:\"recaptcha\";a:3:{s:3:\"key\";s:0:\"\";s:6:\"secret\";s:0:\"\";s:4:\"type\";s:2:\"v2\";}}','yes'),(1424,'weforms_installed','1648062381','yes'),(1429,'weforms_version','1.6.15','yes'),(1459,'boldgrid_has_built_site','yes','yes'),(1460,'boldgrid_show_tip_start_editing','yes','yes'),(1422,'template_locations_children','a:0:{}','yes'),(359301,'_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.2.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.2.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.2.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.2.2-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.2.2\";s:7:\"version\";s:5:\"6.2.2\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1687373967;s:15:\"version_checked\";s:5:\"6.2.2\";s:12:\"translations\";a:0:{}}','no'),(396361,'_site_transient_timeout_wp_remote_block_patterns_ac9d24ab0d31d221cfbca25aa5cdf0ca','1687377372','no'),(396362,'_site_transient_wp_remote_block_patterns_ac9d24ab0d31d221cfbca25aa5cdf0ca','a:14:{i:0;O:8:\"stdClass\":7:{s:2:\"id\";i:207567;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:11:\"Link in Bio\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:6458:\"\n<div class=\"wp-block-group has-white-background-color has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:var(--wp--preset--spacing--80);padding-right:0;padding-bottom:var(--wp--preset--spacing--80);padding-left:0\"><h1 style=\"font-style:normal;font-weight:700;\" class=\"has-text-align-center wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n<p class=\"has-text-align-center wp-block-site-tagline\">Beautifully designed patterns ready to go with a simple copy/paste</p>\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-1 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Watch my latest videos</a></div>\n\n\n\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Buy merch</a></div>\n\n\n\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Support me on Patreon</a></div>\n\n\n\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Get tickets for my show</a></div>\n</div>\n\n\n\n<ul class=\"wp-block-social-links has-normal-icon-size has-icon-color has-icon-background-color is-content-justification-center is-layout-flex wp-container-2 wp-block-social-links-is-layout-flex\" style=\"padding-top:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60)\"><li style=\"color: #000000; background-color: #ffffff; \" class=\"wp-social-link wp-social-link-instagram wp-block-social-link\"><a href=\"https://wordpress.org/patterns/\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Instagram</span></a></li>\n\n<li style=\"color: #000000; background-color: #ffffff; \" class=\"wp-social-link wp-social-link-bandcamp wp-block-social-link\"><a href=\"https://wordpress.org/patterns/\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M15.27 17.289 3 17.289 8.73 6.711 21 6.711 15.27 17.289\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Bandcamp</span></a></li>\n\n<li style=\"color: #000000; background-color: #ffffff; \" class=\"wp-social-link wp-social-link-twitter wp-block-social-link\"><a href=\"https://wordpress.org/patterns/\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitter</span></a></li>\n\n<li style=\"color: #000000; background-color: #ffffff; \" class=\"wp-social-link wp-social-link-twitch wp-block-social-link\"><a href=\"https://wordpress.org/patterns/\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M16.499,8.089h-1.636v4.91h1.636V8.089z M12,8.089h-1.637v4.91H12V8.089z M4.228,3.178L3,6.451v13.092h4.499V22h2.456 l2.454-2.456h3.681L21,14.636V3.178H4.228z M19.364,13.816l-2.864,2.865H12l-2.453,2.453V16.68H5.863V4.814h13.501V13.816z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitch</span></a></li></ul>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:116:\"core/button,core/buttons,core/group,core/site-tagline,core/site-title,core/social-link,core/social-links,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:14:\"call-to-action\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:2665:\"<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|80\",\"right\":\"0\",\"bottom\":\"var:preset|spacing|80\",\"left\":\"0\"}}},\"backgroundColor\":\"white\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group has-white-background-color has-background\" style=\"padding-top:var(--wp--preset--spacing--80);padding-right:0;padding-bottom:var(--wp--preset--spacing--80);padding-left:0\"><!-- wp:site-title {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} /-->\n\n<!-- wp:site-tagline {\"textAlign\":\"center\"} /-->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":100} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Watch my latest videos</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"width\":100} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Buy merch</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"width\":100} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Support me on Patreon</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"width\":100,\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Get tickets for my show</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:social-links {\"iconColor\":\"black\",\"iconColorValue\":\"#000000\",\"iconBackgroundColor\":\"white\",\"iconBackgroundColorValue\":\"#ffffff\",\"size\":\"has-normal-icon-size\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"0\",\"left\":\"0\"},\"padding\":{\"top\":\"var:preset|spacing|60\",\"bottom\":\"var:preset|spacing|60\"}}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<ul class=\"wp-block-social-links has-normal-icon-size has-icon-color has-icon-background-color\" style=\"padding-top:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60)\"><!-- wp:social-link {\"url\":\"https://wordpress.org/patterns/\",\"service\":\"instagram\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://wordpress.org/patterns/\",\"service\":\"bandcamp\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://wordpress.org/patterns/\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://wordpress.org/patterns/\",\"service\":\"twitch\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:group -->\";}i:1;O:8:\"stdClass\":7:{s:2:\"id\";i:732;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:21:\"Simple call to action\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:961:\"\n<div class=\"wp-block-group alignfull has-text-color has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"background-color:#ffffff;color:#000000\">\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-align-center has-small-font-size\" style=\"line-height:.9\"><strong>GET IN TOUCH</strong></p>\n\n\n\n<h2 class=\"has-text-align-center wp-block-heading\" id=\"schedule-a-visit\" style=\"font-size:59px;line-height:1.15\"><strong>Schedule a Visit</strong></h2>\n\n\n\n<div class=\"wp-block-buttons is-horizontal is-content-justification-center is-layout-flex wp-container-4 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-50\"><a class=\"wp-block-button__link has-text-color has-background\" style=\"border-radius:50px;background-color:#000000;color:#ffffff\">Contact us</a></div>\n</div>\n\n\n\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:89:\"A container with a white background. Inside is a centered paragraph, heading, and button.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:75:\"core/button,core/buttons,core/group,core/heading,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"buttons\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1506:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"text\":\"#000000\",\"background\":\"#ffffff\"}}} -->\n<div class=\"wp-block-group alignfull has-text-color has-background\" style=\"background-color:#ffffff;color:#000000\"><!-- wp:spacer {\"height\":64} -->\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"lineHeight\":\".9\"}},\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-center has-small-font-size\" style=\"line-height:.9\"><strong>GET IN TOUCH</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontSize\":59,\"lineHeight\":\"1.15\"}}} -->\n<h2 class=\"has-text-align-center\" id=\"schedule-a-visit\" style=\"font-size:59px;line-height:1.15\"><strong>Schedule a Visit</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":50,\"style\":{\"color\":{\"background\":\"#000000\",\"text\":\"#ffffff\"},\"border\":{\"radius\":\"50px\"}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-50\"><a class=\"wp-block-button__link has-text-color has-background\" style=\"border-radius:50px;background-color:#000000;color:#ffffff\">Contact us</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":64} -->\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";}i:2;O:8:\"stdClass\":7:{s:2:\"id\";i:678;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:26:\"Three column pricing table\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3717:\"\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-12 wp-block-columns-is-layout-flex\" style=\"margin-bottom:0\">\n<div class=\"wp-block-column has-text-color has-background has-link-color wp-elements-2ae1b943d87d6b5cbc827b8e7de5c343 is-layout-flow wp-block-column-is-layout-flow\" style=\"color:#000000;background-color:#ffe97d;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" id=\"single\" style=\"font-size:40px\"><strong>Single</strong></h2>\n\n\n\n<p class=\"has-normal-font-size\" style=\"line-height:1.5\"><strong>Enrich our growing community.</strong> </p>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-css-opacity has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n\n\n\n<ul class=\"has-normal-font-size\">\n<li>General admission and member discounts for one adult</li>\n\n\n\n<li>One free ticket per special exhibition</li>\n\n\n\n<li>Two single-use guest passes per year</li>\n</ul>\n\n\n\n<div class=\"wp-block-buttons alignfull is-horizontal is-content-justification-center is-layout-flex wp-container-6 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$110 / year</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column has-text-color has-background has-link-color wp-elements-c860b6260b3b3b7bae640a65db9c9aec is-layout-flow wp-block-column-is-layout-flow\" style=\"color:#000000;background-color:#d1d1e1;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" id=\"family\" style=\"font-size:40px\"><strong>Family</strong></h2>\n\n\n\n<p class=\"has-normal-font-size\" style=\"line-height:1.5\"><strong>Support special exhibitions.</strong></p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<ul class=\"has-normal-font-size\">\n<li>General admission and member discounts for two adults</li>\n\n\n\n<li>Four free tickets per special exhibition</li>\n\n\n\n<li>Four single-use guest passes per year</li>\n</ul>\n\n\n\n<div class=\"wp-block-buttons alignfull is-horizontal is-content-justification-center is-layout-flex wp-container-8 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$200 / year</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column has-text-color has-background has-link-color wp-elements-4a86cd4fa1de9230a73a90c7ad305893 is-layout-flow wp-block-column-is-layout-flow\" style=\"color:#000000;background-color:#c0ebf1;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" id=\"patron\" style=\"font-size:40px\"><strong>Patron</strong></h2>\n\n\n\n<p class=\"has-normal-font-size\"><strong>Take support to the next level.</strong></p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<ul class=\"has-normal-font-size\">\n<li>General admission and member discounts for two adults</li>\n\n\n\n<li>Five free tickets per special exhibition</li>\n\n\n\n<li>Six single-use guest passes per year</li>\n</ul>\n\n\n\n<div class=\"wp-block-buttons alignfull is-horizontal is-content-justification-center is-layout-flex wp-container-10 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$400 / year</a></div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:272:\"Three equal-width columns set up as a pricing table. The left column has a yellow background, the middle column has a light purple background, and the right column has a light blue background. Each column contains a heading, subheading, separator, list, and then a button.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:117:\"core/button,core/buttons,core/column,core/columns,core/heading,core/list,core/list-item,core/paragraph,core/separator\";}s:14:\"category_slugs\";a:2:{i:0;s:14:\"call-to-action\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:6125:\"<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0\"}}}} -->\n<div class=\"wp-block-columns alignwide\" style=\"margin-bottom:0\"><!-- wp:column {\"style\":{\"color\":{\"background\":\"#ffe97d\",\"text\":\"#000000\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#000000\"}}},\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-column has-text-color has-background has-link-color\" style=\"color:#000000;background-color:#ffe97d;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"40px\"}},\"anchor\":\"single\"} -->\n<h2 class=\"wp-block-heading\" id=\"single\" style=\"font-size:40px\"><strong>Single</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.5\"}},\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\" style=\"line-height:1.5\"><strong>Enrich our growing community.</strong> </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"opacity\":\"css\",\"style\":{\"color\":{\"background\":\"#000000\"}},\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator has-text-color has-css-opacity has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n<!-- /wp:separator -->\n\n<!-- wp:list {\"fontSize\":\"normal\"} -->\n<ul class=\"has-normal-font-size\"><!-- wp:list-item -->\n<li>General admission and member discounts for one adult</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>One free ticket per special exhibition</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Two single-use guest passes per year</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:buttons {\"align\":\"full\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons alignfull\"><!-- wp:button {\"textColor\":\"white\",\"width\":100,\"style\":{\"color\":{\"background\":\"#000000\"},\"border\":{\"radius\":0}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$110 / year</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"color\":{\"background\":\"#d1d1e1\",\"text\":\"#000000\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#000000\"}}},\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-column has-text-color has-background has-link-color\" style=\"color:#000000;background-color:#d1d1e1;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"40px\"}},\"anchor\":\"family\"} -->\n<h2 class=\"wp-block-heading\" id=\"family\" style=\"font-size:40px\"><strong>Family</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.5\"}},\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\" style=\"line-height:1.5\"><strong>Support special exhibitions.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"opacity\":\"css\",\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n<!-- /wp:separator -->\n\n<!-- wp:list {\"fontSize\":\"normal\"} -->\n<ul class=\"has-normal-font-size\"><!-- wp:list-item -->\n<li>General admission and member discounts for two adults</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Four free tickets per special exhibition</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Four single-use guest passes per year</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:buttons {\"align\":\"full\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons alignfull\"><!-- wp:button {\"textColor\":\"white\",\"width\":100,\"style\":{\"color\":{\"background\":\"#000000\"},\"border\":{\"radius\":0}},\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$200 / year</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"color\":{\"background\":\"#c0ebf1\",\"text\":\"#000000\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#000000\"}}},\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-column has-text-color has-background has-link-color\" style=\"color:#000000;background-color:#c0ebf1;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"40px\"}},\"anchor\":\"patron\"} -->\n<h2 class=\"wp-block-heading\" id=\"patron\" style=\"font-size:40px\"><strong>Patron</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\"><strong>Take support to the next level.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"opacity\":\"css\",\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n<!-- /wp:separator -->\n\n<!-- wp:list {\"fontSize\":\"normal\"} -->\n<ul class=\"has-normal-font-size\"><!-- wp:list-item -->\n<li>General admission and member discounts for two adults</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Five free tickets per special exhibition</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Six single-use guest passes per year</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:buttons {\"align\":\"full\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons alignfull\"><!-- wp:button {\"textColor\":\"white\",\"width\":100,\"style\":{\"color\":{\"background\":\"#000000\"},\"border\":{\"radius\":0}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$400 / year</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:3;O:8:\"stdClass\":7:{s:2:\"id\";i:669;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:31:\"Image and quote on a background\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2281:\"\n<div class=\"wp-block-media-text alignwide has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#f1f5c7\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/pear-1-1024x1024.png\" alt=\"\" class=\"wp-image-5263 size-full\" srcset=\"https://s.w.org/patterns/files/2021/06/pear-1-1024x1024.png 1024w, https://s.w.org/patterns/files/2021/06/pear-1-300x300.png 300w, https://s.w.org/patterns/files/2021/06/pear-1-150x150.png 150w, https://s.w.org/patterns/files/2021/06/pear-1-768x768.png 768w, https://s.w.org/patterns/files/2021/06/pear-1.png 1300w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></figure><div class=\"wp-block-media-text__content\">\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<p style=\"font-size:36px;line-height:1.2\"><strong>Even the bitterest fruit has sugar in it.</strong></p>\n\n\n\n<p class=\"has-extra-small-font-size\">– Terry a O&#8217;Neal</p>\n</div>\n</div></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#fffdea\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/pear-half-1024x1024.png\" alt=\"\" class=\"wp-image-673 size-full\" srcset=\"https://s.w.org/patterns/files/2021/06/pear-half-1024x1024.png 1024w, https://s.w.org/patterns/files/2021/06/pear-half-300x300.png 300w, https://s.w.org/patterns/files/2021/06/pear-half-150x150.png 150w, https://s.w.org/patterns/files/2021/06/pear-half-768x768.png 768w, https://s.w.org/patterns/files/2021/06/pear-half.png 1300w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></figure><div class=\"wp-block-media-text__content\">\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<p style=\"font-size:36px;line-height:1.2\"><strong>The trees that are slow to grow bear the best fruit.</strong></p>\n\n\n\n<p class=\"has-extra-small-font-size\">– Molière</p>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:221:\"Two media and text blocks. The top one has a pale green background. The text is on the left and contains a quote, and the image is on the right. The next block underneath has the image on the left, and quote on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:41:\"core/group,core/media-text,core/paragraph\";}s:14:\"category_slugs\";a:3:{i:0;s:8:\"featured\";i:1;s:6:\"images\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:2404:\"<!-- wp:media-text {\"mediaPosition\":\"right\",\"mediaId\":5263,\"mediaLink\":\"https://wordpress.org/patterns/pattern/image-and-quote-on-a-background/pear-3/\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\",\"style\":{\"color\":{\"background\":\"#f1f5c7\"}}} -->\n<div class=\"wp-block-media-text alignwide has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#f1f5c7\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/patterns/files/2021/06/pear-1-1024x1024.png\" alt=\"\" class=\"wp-image-5263 size-full\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.2\",\"fontSize\":\"36px\"}}} -->\n<p style=\"font-size:36px;line-height:1.2\"><strong>Even the bitterest fruit has sugar in it.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"extra-small\"} -->\n<p class=\"has-extra-small-font-size\">– Terry a O\'Neal</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:media-text {\"mediaId\":673,\"mediaLink\":\"https://wordpress.org/patterns/pear-half/\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\",\"style\":{\"color\":{\"background\":\"#fffdea\"}}} -->\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#fffdea\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/patterns/files/2021/06/pear-half-1024x1024.png\" alt=\"\" class=\"wp-image-673 size-full\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.2\",\"fontSize\":\"36px\"}}} -->\n<p style=\"font-size:36px;line-height:1.2\"><strong>The trees that are slow to grow bear the best fruit.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"extra-small\"} -->\n<p class=\"has-extra-small-font-size\">– Molière</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:media-text -->\";}i:4;O:8:\"stdClass\":7:{s:2:\"id\";i:591;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:5:\"Event\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1687:\"\n<div class=\"wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-top has-text-color has-background has-link-color wp-elements-5fce4e677a9b9d7d0cae0196c9d74d97\" style=\"color:#fffdc7;background-color:#121c1c;grid-template-columns:auto 60%\"><div class=\"wp-block-media-text__content\">\n<div class=\"wp-block-group has-link-color wp-elements-71b4a847bbd96313422a1303e9ba41f3 is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" style=\"font-size:48px;font-weight:700;line-height:1.15\">Opening <br>Party</h2>\n\n\n\n<p class=\"has-text-color has-link-color wp-elements-0860918d5b16b9e1778b1966b333b980\" style=\"color:#fffdc7\"><strong><a href=\"#\">RSVP →</a></strong></p>\n</div>\n</div><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1024x1024.jpg\" alt=\"\" class=\"wp-image-590 size-full\" srcset=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1024x1024.jpg 1024w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-300x300.jpg 300w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-150x150.jpg 150w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-768x768.jpg 768w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1536x1536.jpg 1536w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1.jpg 1572w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></figure></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:54:\"core/group,core/heading,core/media-text,core/paragraph\";}s:14:\"category_slugs\";a:3:{i:0;s:6:\"banner\";i:1;s:8:\"featured\";i:2;s:6:\"images\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1617:\"<!-- wp:media-text {\"align\":\"full\",\"mediaPosition\":\"right\",\"mediaId\":590,\"mediaLink\":\"https://wordpress.org/patterns/image-from-rawpixel-id-430289-jpeg-1/\",\"mediaType\":\"image\",\"mediaWidth\":60,\"verticalAlignment\":\"top\",\"style\":{\"color\":{\"background\":\"#121c1c\",\"text\":\"#fffdc7\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#fffdc7\"}}}}} -->\n<div class=\"wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-top has-text-color has-background has-link-color\" style=\"color:#fffdc7;background-color:#121c1c;grid-template-columns:auto 60%\"><div class=\"wp-block-media-text__content\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"#fffdc7\"}}}}} -->\n<div class=\"wp-block-group has-link-color\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontWeight\":\"700\",\"fontSize\":\"48px\",\"lineHeight\":\"1.15\"}}} -->\n<h2 class=\"wp-block-heading\" style=\"font-size:48px;font-weight:700;line-height:1.15\">Opening <br>Party</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"#fffdc7\"}}},\"color\":{\"text\":\"#fffdc7\"}}} -->\n<p class=\"has-text-color has-link-color\" style=\"color:#fffdc7\"><strong><a href=\"#\">RSVP →</a></strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1024x1024.jpg\" alt=\"\" class=\"wp-image-590 size-full\" /></figure></div>\n<!-- /wp:media-text -->\";}i:5;O:8:\"stdClass\":7:{s:2:\"id\";i:573;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Image on solid color with description\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1830:\"\n<div class=\"wp-block-columns alignfull is-layout-flex wp-container-21 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:50%\">\n<div class=\"wp-block-cover has-background-dim\" style=\"background-color:#f6f6f6;min-height:600px\"><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-medium\"><img decoding=\"async\" loading=\"lazy\" width=\"263\" height=\"300\" src=\"https://s.w.org/patterns/files/2021/06/wire-sculpture-263x300.jpg\" alt=\"\" class=\"wp-image-571\" srcset=\"https://s.w.org/patterns/files/2021/06/wire-sculpture-263x300.jpg 263w, https://s.w.org/patterns/files/2021/06/wire-sculpture-898x1024.jpg 898w, https://s.w.org/patterns/files/2021/06/wire-sculpture-768x875.jpg 768w, https://s.w.org/patterns/files/2021/06/wire-sculpture-1347x1536.jpg 1347w, https://s.w.org/patterns/files/2021/06/wire-sculpture.jpg 1658w\" sizes=\"(max-width: 263px) 100vw, 263px\" /></figure></div>\n</div></div>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\" style=\"padding-top:1em;padding-right:1em;padding-bottom:1em;padding-left:1em\">\n<div class=\"wp-block-columns is-layout-flex wp-container-19 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:320px\">\n<p class=\"has-small-font-size\" style=\"line-height:1.6\"><strong>Airplane</strong></p>\n\n\n\n<p class=\"has-small-font-size\" style=\"line-height:1.6\">Copper wire, wood base. I created this piece in late 2008. For this work, I aimed to convey both the industrial heaviness of an airplane, but also the cloudlike floating quality you feel when you’re in one.</p>\n</div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:38:\"Image on solid color with description.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:61:\"core/column,core/columns,core/cover,core/image,core/paragraph\";}s:14:\"category_slugs\";a:3:{i:0;s:8:\"featured\";i:1;s:6:\"images\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1826:\"<!-- wp:columns {\"align\":\"full\"} -->\n<div class=\"wp-block-columns alignfull\"><!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:cover {\"customOverlayColor\":\"#f6f6f6\",\"minHeight\":600} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-color:#f6f6f6;min-height:600px\"><div class=\"wp-block-cover__inner-container\"><!-- wp:image {\"align\":\"center\",\"id\":571,\"sizeSlug\":\"medium\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-medium\"><img src=\"https://s.w.org/patterns/files/2021/06/wire-sculpture-263x300.jpg\" alt=\"\" class=\"wp-image-571\" /></figure></div>\n<!-- /wp:image --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"1em\",\"right\":\"1em\",\"bottom\":\"1em\",\"left\":\"1em\"}}}} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"padding-top:1em;padding-right:1em;padding-bottom:1em;padding-left:1em\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"320px\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:320px\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.6\"}},\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\" style=\"line-height:1.6\"><strong>Airplane</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.6\"}},\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\" style=\"line-height:1.6\">Copper wire, wood base. I created this piece in late 2008. For this work, I aimed to convey both the industrial heaviness of an airplane, but also the cloudlike floating quality you feel when you’re in one.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:6;O:8:\"stdClass\":7:{s:2:\"id\";i:526;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:31:\"Offset images with descriptions\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2907:\"\n<div class=\"wp-block-columns alignwide are-vertically-aligned-top is-layout-flex wp-container-31 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-vertically-aligned-top is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-group wp-container-content-24 is-vertical is-content-justification-left is-nowrap is-layout-flex wp-container-25 wp-block-group-is-layout-flex\" style=\"margin-top:0;margin-bottom:0\">\n<figure class=\"wp-block-image size-large wp-container-content-22\"><img decoding=\"async\" loading=\"lazy\" width=\"793\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/Iris-793x1024.jpg\" alt=\"Beautiful photomechanical prints of White Irises (1887-1897) by Ogawa Kazumasa. Original from The Rijksmuseum. \" class=\"wp-image-525\" srcset=\"https://s.w.org/patterns/files/2021/06/Iris-793x1024.jpg 793w, https://s.w.org/patterns/files/2021/06/Iris-232x300.jpg 232w, https://s.w.org/patterns/files/2021/06/Iris-768x992.jpg 768w, https://s.w.org/patterns/files/2021/06/Iris-1189x1536.jpg 1189w, https://s.w.org/patterns/files/2021/06/Iris-1586x2048.jpg 1586w, https://s.w.org/patterns/files/2021/06/Iris.jpg 1920w\" sizes=\"(max-width: 793px) 100vw, 793px\" /></figure>\n\n\n\n<div class=\"wp-block-group is-vertical is-nowrap is-layout-flex wp-container-23 wp-block-group-is-layout-flex\">\n<p class=\"has-medium-font-size\"><strong>White Irises</strong></p>\n\n\n\n<p class=\"has-small-font-size\">Ogawa Kazumasa</p>\n</div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-top is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-group wp-container-content-28 is-vertical is-layout-flex wp-container-29 wp-block-group-is-layout-flex\" style=\"margin-top:0;margin-bottom:0\">\n<div class=\"wp-block-group is-vertical is-nowrap is-layout-flex wp-container-27 wp-block-group-is-layout-flex\">\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Cherry Blossom</strong></p>\n\n\n\n<p class=\"has-small-font-size\">Ogawa Kazumasa</p>\n</div>\n\n\n\n<figure class=\"wp-block-image size-large\" style=\"font-size:14px\"><img decoding=\"async\" loading=\"lazy\" width=\"707\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/Cherry-Blossom-707x1024.jpg\" alt=\"Beautiful photomechanical prints of Cherry Blossom (1887-1897) by Ogawa Kazumasa. Original from The Rijksmuseum. \" class=\"wp-image-524\" srcset=\"https://s.w.org/patterns/files/2021/06/Cherry-Blossom-707x1024.jpg 707w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-207x300.jpg 207w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-768x1112.jpg 768w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-1061x1536.jpg 1061w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-1414x2048.jpg 1414w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-scaled.jpg 1768w\" sizes=\"(max-width: 707px) 100vw, 707px\" /></figure>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:58:\"Two offset columns with images and titles within each one.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:73:\"core/column,core/columns,core/group,core/image,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:3:{i:0;s:8:\"featured\";i:1;s:7:\"gallery\";i:2;s:6:\"images\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:2930:\"<!-- wp:columns {\"verticalAlignment\":\"top\",\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\"}}}} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-top\"><!-- wp:column {\"verticalAlignment\":\"top\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"480px\"},\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:0;margin-bottom:0\"><!-- wp:image {\"id\":525,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"50%\"}}} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/patterns/files/2021/06/Iris-793x1024.jpg\" alt=\"Beautiful photomechanical prints of White Irises (1887-1897) by Ogawa Kazumasa. Original from The Rijksmuseum. \" class=\"wp-image-525\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"fontSize\":\"medium\"} -->\n<p class=\"has-medium-font-size\"><strong>White Irises</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\">Ogawa Kazumasa</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"top\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"480px\"},\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:0;margin-bottom:0\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:spacer {\"height\":\"80px\"} -->\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"fontSize\":\"medium\"} -->\n<p class=\"has-medium-font-size\"><strong>Cherry Blossom</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\">Ogawa Kazumasa</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"id\":524,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"style\":{\"typography\":{\"fontSize\":\"14px\"}}} -->\n<figure class=\"wp-block-image size-large\" style=\"font-size:14px\"><img src=\"https://s.w.org/patterns/files/2021/06/Cherry-Blossom-707x1024.jpg\" alt=\"Beautiful photomechanical prints of Cherry Blossom (1887-1897) by Ogawa Kazumasa. Original from The Rijksmuseum. \" class=\"wp-image-524\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:7;O:8:\"stdClass\":7:{s:2:\"id\";i:521;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:45:\"Image with description below and to the right\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1665:\"\n<div class=\"wp-block-columns is-layout-flex wp-container-36 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:10%\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-1024x1024.jpg\" alt=\"Vintage Cupid Illustration\" class=\"wp-image-522\" srcset=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-1024x1024.jpg 1024w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-300x300.jpg 300w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-150x150.jpg 150w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-768x768.jpg 768w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1.jpg 1510w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:10%\"></div>\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-39 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p style=\"font-size:14px\"><strong>Cupid in Flight</strong><br>48” x 48” Giclee print on archival paper.</p>\n</div>\n</div>\n\n\n\n<p></p>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:46:\"Image with description below and to the right.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:50:\"core/column,core/columns,core/image,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:6:\"images\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1241:\"<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"10%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:10%\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":522,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-1024x1024.jpg\" alt=\"Vintage Cupid Illustration\" class=\"wp-image-522\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"10%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:10%\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"14px\"}}} -->\n<p style=\"font-size:14px\"><strong>Cupid in Flight</strong><br>48” x 48” Giclee print on archival paper.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\";}i:8;O:8:\"stdClass\":7:{s:2:\"id\";i:502;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:13:\"Event details\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1684:\"\n<figure class=\"wp-block-image alignwide size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"2560\" height=\"1227\" src=\"https://s.w.org/patterns/files/2021/06/Group-17-scaled.jpg\" alt=\"Image of a woman being carried through the air by swans.\" class=\"wp-image-501\" srcset=\"https://s.w.org/patterns/files/2021/06/Group-17-scaled.jpg 2560w, https://s.w.org/patterns/files/2021/06/Group-17-300x144.jpg 300w, https://s.w.org/patterns/files/2021/06/Group-17-1024x491.jpg 1024w, https://s.w.org/patterns/files/2021/06/Group-17-768x368.jpg 768w, https://s.w.org/patterns/files/2021/06/Group-17-1536x736.jpg 1536w, https://s.w.org/patterns/files/2021/06/Group-17-2048x981.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" /></figure>\n\n\n\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center is-layout-flex wp-container-44 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<p style=\"line-height:2\"><strong>Location:</strong><br>82 Main St. Brooklyn, NY</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<p style=\"line-height:2\"><strong>Date:</strong><br>October 24, 2021</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#efefef;background-color:#262626\">Purchase Tickets</a></div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:14:\"Event details.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:75:\"core/button,core/buttons,core/column,core/columns,core/image,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:14:\"call-to-action\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1642:\"<!-- wp:image {\"align\":\"wide\",\"id\":501,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image alignwide size-full\"><img src=\"https://s.w.org/patterns/files/2021/06/Group-17-scaled.jpg\" alt=\"Image of a woman being carried through the air by swans.\" class=\"wp-image-501\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"2\"}}} -->\n<p style=\"line-height:2\"><strong>Location:</strong><br>82 Main St. Brooklyn, NY</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"2\"}}} -->\n<p style=\"line-height:2\"><strong>Date:</strong><br>October 24, 2021</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":100,\"style\":{\"color\":{\"background\":\"#262626\",\"text\":\"#efefef\"}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#efefef;background-color:#262626\">Purchase Tickets</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:9;O:8:\"stdClass\":7:{s:2:\"id\";i:200;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:21:\"Three columns of text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1077:\"\n<div class=\"wp-block-columns alignfull has-text-color has-background is-layout-flex wp-container-48 wp-block-columns-is-layout-flex\" style=\"background-color:#ffffff;color:#000000\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"http://wordpress.org\">Virtual Tour ↗</a></strong></h3>\n\n\n\n<p>Get a virtual tour of the museum. Ideal for schools and events.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Current Shows ↗</a></strong></h3>\n\n\n\n<p>Stay updated and see our current exhibitions here.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Useful Info ↗</a></strong></h3>\n\n\n\n<p>Get to know our opening times, ticket prices and discounts.</p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:22:\"Three columns of text.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:52:\"core/column,core/columns,core/heading,core/paragraph\";}s:14:\"category_slugs\";a:3:{i:0;s:7:\"columns\";i:1;s:8:\"featured\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1496:\"<!-- wp:columns {\"align\":\"full\",\"style\":{\"color\":{\"text\":\"#000000\",\"background\":\"#ffffff\"}}} -->\n<div class=\"wp-block-columns alignfull has-text-color has-background\" style=\"background-color:#ffffff;color:#000000\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"http://wordpress.org\">Virtual Tour ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Get a virtual tour of the museum. Ideal for schools and events.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Current Shows ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Stay updated and see our current exhibitions here.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Useful Info ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Get to know our opening times, ticket prices and discounts.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:10;O:8:\"stdClass\":7:{s:2:\"id\";i:199;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:34:\"Three columns with images and text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3152:\"\n<div class=\"wp-block-group alignfull has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"background-color:#f8f4e4\">\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-50 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h6 class=\"has-text-color wp-block-heading\" id=\"ecosystem\" style=\"color:#000000\">ECOSYSTEM</h6>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:5vw;line-height:1.1\"><strong>Positive growth.</strong></p>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-54 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.38%\">\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\"><em>Nature</em>, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf.&nbsp;<em>Art</em>&nbsp;is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture. But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33%\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-01.jpg\" alt=\"The sun setting through a dense forest.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.62%\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-02.jpg\" alt=\"Wind turbines standing on a grassy plain, against a blue sky.\" /></figure>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-57 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:67%\">\n<div class=\"wp-block-image\"><figure class=\"alignright size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-03.jpg\" alt=\"The sun shining over a ridge leading down into the shore. In the distance, a car drives down a road.\" /></figure></div>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33%\">\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man&#8217;s condition is a solution in hieroglyphic to those inquiries he would put.</p>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:77:\"Three columns with images and text, with vertical spacing for an offset look.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:86:\"core/column,core/columns,core/group,core/heading,core/image,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"columns\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:3990:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"background\":\"#f8f4e4\"}}} -->\n<div class=\"wp-block-group alignfull has-background\" style=\"background-color:#f8f4e4\"><!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":6,\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h6 class=\"has-text-color\" id=\"ecosystem\" style=\"color:#000000\">ECOSYSTEM</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.1\",\"fontSize\":\"5vw\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:5vw;line-height:1.1\"><strong>Positive growth.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"5px\"} -->\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"33.38%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.38%\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\"><em>Nature</em>, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf.&nbsp;<em>Art</em>&nbsp;is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture. But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33%\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-01.jpg\" alt=\"The sun setting through a dense forest.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33.62%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.62%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-02.jpg\" alt=\"Wind turbines standing on a grassy plain, against a blue sky.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"67%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:67%\"><!-- wp:image {\"align\":\"right\",\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignright size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-03.jpg\" alt=\"The sun shining over a ridge leading down into the shore. In the distance, a car drives down a road.\" /></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"33%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:33%\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man\'s condition is a solution in hieroglyphic to those inquiries he would put.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\";}i:11;O:8:\"stdClass\":7:{s:2:\"id\";i:192;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Media and text with image on the left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:554:\"\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-04.jpg\" alt=\"Close-up, abstract view of architecture.\" /></figure><div class=\"wp-block-media-text__content\">\n<h3 class=\"wp-block-heading has-text-align-center has-text-color\" style=\"color:#000000\"><strong>Open Spaces</strong></h3>\n\n\n\n<p class=\"has-text-align-center has-extra-small-font-size\"><a href=\"#\">See case study ↗</a></p>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:66:\"Media and text block with image to the left and text to the right.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:43:\"core/heading,core/media-text,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:844:\"<!-- wp:media-text {\"align\":\"full\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/images/core/5.8/architecture-04.jpg\" alt=\"Close-up, abstract view of architecture.\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h3 class=\"wp-block-heading has-text-align-center has-text-color\" style=\"color:#000000\"><strong>Open Spaces</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-align-center has-extra-small-font-size\"><a href=\"#\">See case study ↗</a></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\";}i:12;O:8:\"stdClass\":7:{s:2:\"id\";i:185;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:35:\"Large header with left-aligned text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1320:\"\n<div class=\"wp-block-cover alignfull\" style=\"min-height:800px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://s.w.org/images/core/5.8/forest.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<h2 class=\"wp-block-heading alignwide has-text-color\" style=\"color:#ffe074;font-size:64px\">Forest.</h2>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-61 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:55%\">\n<div style=\"height:330px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-color\" style=\"color:#ffe074;font-size:12px;line-height:1.3\"><em>Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.</em></p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:29:\"Cover image with quote on top\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:75:\"core/column,core/columns,core/cover,core/heading,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1698:\"<!-- wp:cover {\"url\":\"https://s.w.org/images/core/5.8/forest.jpg\",\"dimRatio\":60,\"minHeight\":800,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\" style=\"min-height:800px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\"></span><img class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://s.w.org/images/core/5.8/forest.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"align\":\"wide\",\"style\":{\"color\":{\"text\":\"#ffe074\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<h2 class=\"wp-block-heading alignwide has-text-color\" style=\"color:#ffe074;font-size:64px\">Forest.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"55%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:55%\"><!-- wp:spacer {\"height\":\"330px\"} -->\n<div style=\"height:330px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#ffe074\"},\"typography\":{\"lineHeight\":\"1.3\",\"fontSize\":\"12px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#ffe074;font-size:12px;line-height:1.3\"><em>Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div></div>\n<!-- /wp:cover -->\";}i:13;O:8:\"stdClass\":7:{s:2:\"id\";i:184;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:7:\"Heading\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:526:\"\n<h2 class=\"alignwide wp-block-heading\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">We&#8217;re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.</h2>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:17:\"large text, title\";s:16:\"wpop_description\";s:12:\"Heading text\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:1:{i:0;s:12:\"core/heading\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:12:\"core/heading\";}s:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:621:\"<!-- wp:heading {\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"48px\",\"lineHeight\":\"1.1\"}}} -->\n<h2 class=\"alignwide\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">We\'re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.</h2>\n<!-- /wp:heading -->\";}}','no');
INSERT INTO `wp_options` VALUES (396343,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1687416732','no'),(396344,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1687416732','no'),(396345,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1687373532','no'),(14891,'_transient_health-check-site-status-result','{\"good\":15,\"recommended\":4,\"critical\":2}','yes'),(3218,'boldgrid_inspirations_previous_version','2.7.1','no'),(73458,'can_compress_scripts','0','no'),(63151,'user_count','2','no'),(396346,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1687416732','no'),(396347,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1687416732','no'),(396348,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1687373532','no'),(396349,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1687416732','no'),(396350,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2023/06/episode-58-a-new-wave-for-wordpress-events/\'>WP Briefing: Episode 58: A New Wave for WordPress Events</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2023/06/twenty-years-of-wordpress-at-wceu/\'>Twenty Years of WordPress at WCEU</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://akismet.com/blog/version-5-2-of-the-akismet-wordpress-plugin-is-now-available/\'>Akismet: Version 5.2 of the Akismet WordPress plugin is now available</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/podcast/80-angela-jin-on-how-and-why-wordcamps-might-change-in-the-future\'>WPTavern: #80 – Angela Jin on How and Why WordCamps Might Change in the Future</a></li><li><a class=\'rsswidget\' href=\'https://akismet.com/blog/saying-no-to-spam-on-smitten-kitchens-popular-food-site/\'>Akismet: Saying No To Spam on Smitten Kitchen’s Popular Food Site</a></li></ul></div>','no'),(396359,'_site_transient_timeout_wp_remote_block_patterns_2606d8fd6f076a2bc61be42cd17fab98','1687377372','no'),(396360,'_site_transient_wp_remote_block_patterns_2606d8fd6f076a2bc61be42cd17fab98','a:46:{i:0;O:8:\"stdClass\":7:{s:2:\"id\";i:310547;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:40:\"Cover Poster on Left, Paragraph on Right\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3610:\"\n<div class=\"wp-block-cover alignfull has-custom-content-position is-position-top-center\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#36220c\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-space-between is-layout-flex wp-container-8 wp-block-group-is-layout-flex\">\n<div class=\"wp-duotone-rgb137750-rgb210210210-4 wp-block-cover is-light has-custom-content-position is-position-top-right wp-container-content-2\" style=\"padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:75vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-334\" alt=\"\" src=\"https://pd.w.org/2023/04/654642d52f20d6367.57324872.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-vertical is-content-justification-right is-nowrap is-layout-flex wp-container-1 wp-block-group-is-layout-flex\">\n<p class=\"has-text-color\" style=\"color:#e5683a;font-size:140px;font-style:normal;font-weight:800;letter-spacing:-6px;line-height:0.8;text-transform:uppercase\">Wardell</p>\n\n\n\n<p class=\"has-text-color\" style=\"color:#e5683a;font-size:130px;font-style:normal;font-weight:800;letter-spacing:-6px;line-height:0.8;text-transform:uppercase\">gray</p>\n\n\n\n<p class=\"has-text-align-center has-text-color\" style=\"color:#d09c9c;font-size:90px;font-style:normal;font-weight:800;letter-spacing:0px;line-height:1;text-transform:uppercase\">Plays</p>\n\n\n\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e59937;font-size:90px;font-style:normal;font-weight:800;letter-spacing:0px;line-height:0.8;text-transform:uppercase\">Bebop &amp;</p>\n\n\n\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e59937;font-size:90px;font-style:normal;font-weight:800;letter-spacing:0px;line-height:1;text-transform:uppercase\">SWING</p>\n</div>\n</div></div>\n\n\n\n<div class=\"wp-block-group wp-container-content-6 is-vertical is-nowrap is-layout-flex wp-container-7 wp-block-group-is-layout-flex\">\n<p class=\"has-text-color\" style=\"color:#e59937;font-size:18px;font-style:normal;font-weight:400;letter-spacing:0px;line-height:1.7\">Wardell Gray was born in Oklahoma City, the youngest of four children. His early childhood years were spent in Oklahoma, before moving with his family to Detroit in 1929. </p>\n\n\n\n<p class=\"has-text-color\" style=\"color:#e59937;font-size:18px;font-style:normal;font-weight:400;letter-spacing:0px;line-height:1.7\">In early 1935, Gray began attending Northeastern High School, and then transferred to Cass Technical High School, which is noted for having Donald Byrd, Lucky Thompson and Al McKibbon as alumni. </p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-left is-nowrap is-layout-flex wp-container-5 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size is-style-outline\" style=\"font-size:16px;font-style:normal;font-weight:700;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-text-color wp-element-button\" style=\"border-radius:0px;color:#e59937;padding-top:16px;padding-right:32px;padding-bottom:16px;padding-left:32px\">Listen Now</a></div>\n</div>\n\n\n\n<div style=\"height:7.5vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:73:\"core/button,core/buttons,core/cover,core/group,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:6343:\"<!-- wp:cover {\"customOverlayColor\":\"#36220c\",\"contentPosition\":\"top center\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"5vw\",\"right\":\"5vw\",\"bottom\":\"5vw\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull has-custom-content-position is-position-top-center\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#36220c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"3vw\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"verticalAlignment\":\"stretch\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group\"><!-- wp:cover {\"url\":\"https://pd.w.org/2023/04/654642d52f20d6367.57324872.jpg\",\"id\":334,\"dimRatio\":50,\"minHeight\":75,\"minHeightUnit\":\"vh\",\"contentPosition\":\"top right\",\"isDark\":false,\"style\":{\"layout\":{\"selfStretch\":\"fill\"},\"spacing\":{\"padding\":{\"top\":\"4vw\",\"right\":\"4vw\",\"bottom\":\"4vw\",\"left\":\"4vw\"}},\"color\":{\"duotone\":[\"rgb(137, 75, 0)\",\"rgb(210, 210, 210)\"]}}} -->\n<div class=\"wp-block-cover is-light has-custom-content-position is-position-top-right\" style=\"padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:75vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-334\" alt=\"\" src=\"https://pd.w.org/2023/04/654642d52f20d6367.57324872.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"140px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"800\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-6px\"},\"color\":{\"text\":\"#e5683a\"}}} -->\n<p class=\"has-text-color\" style=\"color:#e5683a;font-size:140px;font-style:normal;font-weight:800;letter-spacing:-6px;line-height:0.8;text-transform:uppercase\">Wardell</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"130px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"800\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-6px\"},\"color\":{\"text\":\"#e5683a\"}}} -->\n<p class=\"has-text-color\" style=\"color:#e5683a;font-size:130px;font-style:normal;font-weight:800;letter-spacing:-6px;line-height:0.8;text-transform:uppercase\">gray</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"style\":{\"typography\":{\"fontSize\":\"90px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"800\",\"letterSpacing\":\"0px\",\"lineHeight\":\"1\"},\"color\":{\"text\":\"#d09c9c\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#d09c9c;font-size:90px;font-style:normal;font-weight:800;letter-spacing:0px;line-height:1;text-transform:uppercase\">Plays</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"style\":{\"typography\":{\"fontSize\":\"90px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"800\",\"letterSpacing\":\"0px\",\"lineHeight\":\"0.8\"},\"color\":{\"text\":\"#e59937\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e59937;font-size:90px;font-style:normal;font-weight:800;letter-spacing:0px;line-height:0.8;text-transform:uppercase\">Bebop &amp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"style\":{\"typography\":{\"fontSize\":\"90px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"800\",\"letterSpacing\":\"0px\",\"lineHeight\":\"1\"},\"color\":{\"text\":\"#e59937\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e59937;font-size:90px;font-style:normal;font-weight:800;letter-spacing:0px;line-height:1;text-transform:uppercase\">SWING</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"420px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\",\"verticalAlignment\":\"bottom\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"18px\",\"letterSpacing\":\"0px\",\"lineHeight\":\"1.7\",\"fontStyle\":\"normal\",\"fontWeight\":\"400\"},\"color\":{\"text\":\"#e59937\"}}} -->\n<p class=\"has-text-color\" style=\"color:#e59937;font-size:18px;font-style:normal;font-weight:400;letter-spacing:0px;line-height:1.7\">Wardell Gray was born in Oklahoma City, the youngest of four children. His early childhood years were spent in Oklahoma, before moving with his family to Detroit in 1929. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"18px\",\"letterSpacing\":\"0px\",\"lineHeight\":\"1.7\",\"fontStyle\":\"normal\",\"fontWeight\":\"400\"},\"color\":{\"text\":\"#e59937\"}}} -->\n<p class=\"has-text-color\" style=\"color:#e59937;font-size:18px;font-style:normal;font-weight:400;letter-spacing:0px;line-height:1.7\">In early 1935, Gray began attending Northeastern High School, and then transferred to Cass Technical High School, which is noted for having Donald Byrd, Lucky Thompson and Al McKibbon as alumni. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"color\":{\"text\":\"#e59937\"},\"border\":{\"radius\":\"0px\"},\"spacing\":{\"padding\":{\"top\":\"16px\",\"right\":\"32px\",\"bottom\":\"16px\",\"left\":\"32px\"}},\"typography\":{\"fontSize\":\"16px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"letterSpacing\":\"0px\"}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-outline\" style=\"font-size:16px;font-style:normal;font-weight:700;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-text-color wp-element-button\" style=\"border-radius:0px;color:#e59937;padding-top:16px;padding-right:32px;padding-bottom:16px;padding-left:32px\">Listen Now</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"7.5vw\"} -->\n<div style=\"height:7.5vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:1;O:8:\"stdClass\":7:{s:2:\"id\";i:309935;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:45:\"Centered image with two-tone background color\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1278:\"\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim has-background-gradient\" style=\"background:linear-gradient(90deg,rgb(35,74,20) 50%,rgb(225,137,116) 50%)\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group wp-container-content-11 is-layout-constrained wp-container-12 wp-block-group-is-layout-constrained\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-duotone-000000-ffffff-10 wp-block-image size-large is-style-default\"><img decoding=\"async\" src=\"https://pd.w.org/2022/03/3866241b433db4ee2.96648572.jpeg\" alt=\"\" /></figure>\n\n\n\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading alignwide has-text-align-center has-white-color has-text-color\" style=\"padding-left:32px;font-size:50px;font-style:normal;font-weight:400;letter-spacing:32px;line-height:1;text-transform:uppercase\">Etcetera</h2>\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:18:\"Gradient, Two-Tone\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:57:\"core/cover,core/group,core/heading,core/image,core/spacer\";}s:14:\"category_slugs\";a:3:{i:0;s:6:\"banner\";i:1;s:6:\"images\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2134:\"<!-- wp:cover {\"minHeight\":66,\"minHeightUnit\":\"vh\",\"customGradient\":\"linear-gradient(90deg,rgb(35,74,20) 50%,rgb(225,137,116) 50%)\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"5vw\",\"right\":\"5vw\",\"bottom\":\"5vw\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim has-background-gradient\" style=\"background:linear-gradient(90deg,rgb(35,74,20) 50%,rgb(225,137,116) 50%)\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"constrained\",\"contentSize\":\"600px\",\"wideSize\":\"1200px\"}} -->\n<div class=\"wp-block-group\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"style\":{\"color\":{\"duotone\":[\"#000000\",\"#ffffff\"]}},\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-style-default\"><img src=\"https://pd.w.org/2022/03/3866241b433db4ee2.96648572.jpeg\" alt=\"\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"48px\"} -->\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"50px\",\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"32px\",\"lineHeight\":\"1\"},\"spacing\":{\"padding\":{\"left\":\"32px\"}}},\"textColor\":\"white\"} -->\n<h2 class=\"wp-block-heading alignwide has-text-align-center has-white-color has-text-color\" style=\"padding-left:32px;font-size:50px;font-style:normal;font-weight:400;letter-spacing:32px;line-height:1;text-transform:uppercase\">Etcetera</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:2;O:8:\"stdClass\":7:{s:2:\"id\";i:309925;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:43:\"Fullwidth Dark Banner with Heading Top Left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1031:\"\n<div class=\"wp-block-cover alignfull has-custom-content-position is-position-top-left\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw;min-height:50vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-90 has-background-dim\" style=\"background-color:#141414\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-333\" alt=\"\" src=\"https://pd.w.org/2022/07/87262c92d42acd1c3.73206444.jpg\" style=\"object-position:50% 0%\" data-object-fit=\"cover\" data-object-position=\"50% 0%\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group wp-container-content-14 is-vertical is-nowrap is-layout-flex wp-container-15 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-left has-text-color has-source-serif-pro-font-family\" style=\"color:#d8a557;font-size:160px;font-style:italic;font-weight:900;letter-spacing:-4px;line-height:0.8;text-transform:none\">bud!</p>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:16:\"Jazz, Fulllwidth\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:36:\"core/cover,core/group,core/paragraph\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1697:\"<!-- wp:cover {\"url\":\"https://pd.w.org/2022/07/87262c92d42acd1c3.73206444.jpg\",\"id\":333,\"dimRatio\":90,\"customOverlayColor\":\"#141414\",\"focalPoint\":{\"x\":0.5,\"y\":0},\"minHeight\":50,\"minHeightUnit\":\"vh\",\"contentPosition\":\"top left\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"5vw\",\"right\":\"5vw\",\"bottom\":\"5vw\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull has-custom-content-position is-position-top-left\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw;min-height:50vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-90 has-background-dim\" style=\"background-color:#141414\"></span><img class=\"wp-block-cover__image-background wp-image-333\" alt=\"\" src=\"https://pd.w.org/2022/07/87262c92d42acd1c3.73206444.jpg\" style=\"object-position:50% 0%\" data-object-fit=\"cover\" data-object-position=\"50% 0%\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"160px\",\"fontStyle\":\"italic\",\"fontWeight\":\"900\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\",\"textTransform\":\"none\"},\"color\":{\"text\":\"#d8a557\"}},\"fontFamily\":\"source-serif-pro\"} -->\n<p class=\"has-text-align-left has-text-color has-source-serif-pro-font-family\" style=\"color:#d8a557;font-size:160px;font-style:italic;font-weight:900;letter-spacing:-4px;line-height:0.8;text-transform:none\">bud!</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:3;O:8:\"stdClass\":7:{s:2:\"id\";i:309230;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:44:\"Fullwidth cover with repeating gradient text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1724:\"\n<div class=\"wp-duotone-36345d-abaaaa-19 wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\" style=\"background-color:#c2b7a4\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-334\" alt=\"\" src=\"https://pd.w.org/2022/01/95161f850d22f0c06.37817431.jpg\" style=\"object-position:50% 5%\" data-object-fit=\"cover\" data-object-position=\"50% 5%\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group is-vertical is-content-justification-center is-nowrap is-layout-flex wp-container-17 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-right has-text-color\" style=\"color:#c8c4d3;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n\n\n\n<p class=\"has-text-align-right has-text-color\" style=\"color:#ac94b2;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n\n\n\n<p class=\"has-text-align-right has-text-color\" style=\"color:#71689c;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n\n\n\n<p class=\"has-text-align-right has-text-color\" style=\"color:#444178;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n</div>\n\n\n\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:48:\"Fullwidth, Background Image, Gradient, Uppercase\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:48:\"core/cover,core/group,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3135:\"<!-- wp:cover {\"url\":\"https://pd.w.org/2022/01/95161f850d22f0c06.37817431.jpg\",\"id\":334,\"dimRatio\":60,\"customOverlayColor\":\"#c2b7a4\",\"focalPoint\":{\"x\":0.5,\"y\":0.05},\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"5vw\",\"right\":\"5vw\",\"bottom\":\"5vw\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}},\"color\":{\"duotone\":[\"#36345d\",\"#abaaaa\"]}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\" style=\"background-color:#c2b7a4\"></span><img class=\"wp-block-cover__image-background wp-image-334\" alt=\"\" src=\"https://pd.w.org/2022/01/95161f850d22f0c06.37817431.jpg\" style=\"object-position:50% 5%\" data-object-fit=\"cover\" data-object-position=\"50% 5%\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"48px\"} -->\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"},\"color\":{\"text\":\"#c8c4d3\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#c8c4d3;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"},\"color\":{\"text\":\"#ac94b2\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#ac94b2;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"},\"color\":{\"text\":\"#71689c\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#71689c;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"},\"color\":{\"text\":\"#444178\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#444178;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"48px\"} -->\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div></div>\n<!-- /wp:cover -->\";}i:4;O:8:\"stdClass\":7:{s:2:\"id\";i:309224;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:72:\"Fullwidth, vertically aligned headline on right with description on left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2130:\"\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#e68b14\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-layout-flex wp-container-26 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group wp-container-content-22 is-layout-flow wp-container-23 wp-block-group-is-layout-flow\">\n<p class=\"wp-container-content-20\" style=\"font-size:17px;font-style:normal;font-weight:300;letter-spacing:0px;line-height:1.4;text-decoration:none;text-transform:none\">Let &#8217;em Roll is an album by American organist Big John Patton recorded in 1965 and released on the Blue Note label.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-black-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;border-top-style:none;border-top-width:0px;border-right-style:none;border-right-width:0px;border-bottom-style:none;border-bottom-width:0px;border-left-style:none;border-left-width:0px;padding-top:14px;padding-right:36px;padding-bottom:14px;padding-left:36px\">Shop Now</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-group wp-container-content-24 is-layout-flow wp-container-25 wp-block-group-is-layout-flow\">\n<p class=\"has-text-align-right has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">Let<br>&#8216;EM<br>Roll</p>\n\n\n\n<p class=\"has-text-align-right has-white-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">Big<br>John<br>Patton</p>\n</div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:60:\"vertically, bold, jazz, shop, store, headline, hero, product\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:61:\"core/button,core/buttons,core/cover,core/group,core/paragraph\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3726:\"<!-- wp:cover {\"customOverlayColor\":\"#e68b14\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"5vw\",\"right\":\"5vw\",\"bottom\":\"5vw\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#e68b14\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"320px\"},\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"330px\"},\"typography\":{\"fontSize\":\"17px\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"1.4\",\"textTransform\":\"none\",\"textDecoration\":\"none\",\"letterSpacing\":\"0px\"}}} -->\n<p style=\"font-size:17px;font-style:normal;font-weight:300;letter-spacing:0px;line-height:1.4;text-decoration:none;text-transform:none\">Let \'em Roll is an album by American organist Big John Patton recorded in 1965 and released on the Blue Note label.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"backgroundColor\":\"black\",\"textColor\":\"white\",\"style\":{\"typography\":{\"fontSize\":\"17px\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"textDecoration\":\"none\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"},\"spacing\":{\"padding\":{\"top\":\"14px\",\"bottom\":\"14px\",\"left\":\"36px\",\"right\":\"36px\"}},\"border\":{\"radius\":\"0px\",\"top\":{\"radius\":\"0px\",\"width\":\"0px\",\"style\":\"none\"},\"right\":{\"radius\":\"0px\",\"width\":\"0px\",\"style\":\"none\"},\"bottom\":{\"radius\":\"0px\",\"width\":\"0px\",\"style\":\"none\"},\"left\":{\"radius\":\"0px\",\"width\":\"0px\",\"style\":\"none\"}}}} -->\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-black-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;border-top-style:none;border-top-width:0px;border-right-style:none;border-right-width:0px;border-bottom-style:none;border-bottom-width:0px;border-left-style:none;border-left-width:0px;padding-top:14px;padding-right:36px;padding-bottom:14px;padding-left:36px\">Shop Now</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"}},\"textColor\":\"black\"} -->\n<p class=\"has-text-align-right has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">Let<br>\'EM<br>Roll</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"}},\"textColor\":\"white\"} -->\n<p class=\"has-text-align-right has-white-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">Big<br>John<br>Patton</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:5;O:8:\"stdClass\":7:{s:2:\"id\";i:309236;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:60:\"Fullwidth headline with links and gradient offset background\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1893:\"\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:48px;padding-right:5vw;padding-bottom:48px;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim has-background-gradient\" style=\"background:linear-gradient(180deg,rgb(0,0,0) 39%,rgb(83,80,123) 39%)\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group is-content-justification-space-between is-layout-flex wp-container-33 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group wp-container-content-28 is-layout-flow wp-container-29 wp-block-group-is-layout-flow\">\n<p class=\"has-text-align-left has-white-color has-text-color has-link-color wp-elements-52dc92f2ee4b8dfde042239a7e68e30d\" style=\"font-size:172px;font-style:normal;font-weight:700;letter-spacing:-10px;line-height:0.7;text-transform:uppercase\"><strong>MONK</strong>.</p>\n</div>\n\n\n\n<div class=\"wp-block-group wp-container-content-31 is-layout-flow wp-container-32 wp-block-group-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-right is-nowrap is-layout-flex wp-container-30 wp-block-group-is-layout-flex\">\n<p class=\"has-white-color has-text-color has-link-color wp-elements-c8902903bdf5ea1baed310a565cbd10e\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\">A new collection</p>\n\n\n\n<p class=\"has-white-color has-text-color has-link-color wp-elements-669af571686ebf2235f18cd2403659b5\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\">Learn More → </p>\n</div>\n</div>\n</div>\n\n\n\n<div style=\"height:260px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:41:\"Offset, Gradient, Jazz, Headline, Feature\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:48:\"core/cover,core/group,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3195:\"<!-- wp:cover {\"customGradient\":\"linear-gradient(180deg,rgb(0,0,0) 39%,rgb(83,80,123) 39%)\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"48px\",\"right\":\"5vw\",\"bottom\":\"48px\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:48px;padding-right:5vw;padding-bottom:48px;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim has-background-gradient\" style=\"background:linear-gradient(180deg,rgb(0,0,0) 39%,rgb(83,80,123) 39%)\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"48px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"verticalAlignment\":\"top\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"172px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.7\",\"letterSpacing\":\"-10px\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}}},\"textColor\":\"white\"} -->\n<p class=\"has-text-align-left has-white-color has-text-color has-link-color\" style=\"font-size:172px;font-style:normal;font-weight:700;letter-spacing:-10px;line-height:0.7;text-transform:uppercase\"><strong>MONK</strong>.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"400px\"},\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"48px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"17px\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"textDecoration\":\"none\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}}},\"textColor\":\"white\"} -->\n<p class=\"has-white-color has-text-color has-link-color\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\">A new collection</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"17px\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"textDecoration\":\"none\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}}},\"textColor\":\"white\"} -->\n<p class=\"has-white-color has-text-color has-link-color\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\">Learn More → </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"260px\"} -->\n<div style=\"height:260px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div></div>\n<!-- /wp:cover -->\";}i:6;O:8:\"stdClass\":7:{s:2:\"id\";i:308937;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:42:\"Heading, Paragraph, Button with Two Images\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2550:\"\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:6vw;padding-right:6vw;padding-bottom:6vw;padding-left:6vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#eb4c77\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-center is-layout-flex wp-container-45 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group alignwide wp-container-content-36 is-content-justification-left is-layout-constrained wp-container-37 wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading alignwide has-text-align-left has-contrast-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:500;line-height:0.9;text-transform:none\">Time for an adventure</h2>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-align-left has-contrast-color has-text-color\">Explore our network of trails that lead through a variety of woodland habitats and observe the diverse flora that call this area home. </p>\n\n\n\n<div style=\"height:60px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-left is-nowrap is-layout-flex wp-container-35 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size is-style-fill\" style=\"font-size:16px;font-style:normal;font-weight:500;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-base-color has-contrast-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Sign up</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-group is-content-justification-right is-nowrap is-layout-flex wp-container-44 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group wp-container-content-40 is-layout-flow wp-block-group-is-layout-flow\">\n<div style=\"height:8vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-duotone-rgb000-rgb21788120-39 wp-block-image size-large wp-container-content-38\"><img decoding=\"async\" src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></figure>\n</div>\n\n\n\n<figure class=\"wp-duotone-rgb000-rgb21788120-43 wp-block-image size-large wp-container-content-42\"><img decoding=\"async\" src=\"https://pd.w.org/2022/01/21261f60ba46147b0.97888240.jpg\" alt=\"\" /></figure>\n</div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:97:\"core/button,core/buttons,core/cover,core/group,core/heading,core/image,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:4102:\"<!-- wp:cover {\"customOverlayColor\":\"#eb4c77\",\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"6vw\",\"right\":\"6vw\",\"bottom\":\"6vw\",\"left\":\"6vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:6vw;padding-right:6vw;padding-bottom:6vw;padding-left:6vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#eb4c77\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0vw\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"center\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\"}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\",\"contentSize\":\"600px\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:heading {\"textAlign\":\"left\",\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"100px\",\"textTransform\":\"none\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"lineHeight\":\"0.9\"}},\"textColor\":\"contrast\"} -->\n<h2 class=\"wp-block-heading alignwide has-text-align-left has-contrast-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:500;line-height:0.9;text-transform:none\">Time for an adventure</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"contrast\"} -->\n<p class=\"has-text-align-left has-contrast-color has-text-color\">Explore our network of trails that lead through a variety of woodland habitats and observe the diverse flora that call this area home. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"60px\"} -->\n<div style=\"height:60px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"backgroundColor\":\"contrast\",\"textColor\":\"base\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"24px\",\"right\":\"48px\",\"bottom\":\"24px\",\"left\":\"48px\"}},\"typography\":{\"fontSize\":\"16px\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"},\"border\":{\"radius\":\"0px\"}},\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-fill\" style=\"font-size:16px;font-style:normal;font-weight:500;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-base-color has-contrast-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Sign up</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null},\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"verticalAlignment\":\"top\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"50%\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:spacer {\"height\":\"8vw\"} -->\n<div style=\"height:8vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"50%\"},\"color\":{\"duotone\":[\"rgb(0, 0, 0)\",\"rgb(217, 88, 120)\"]}}} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"50%\"},\"color\":{\"duotone\":[\"rgb(0, 0, 0)\",\"rgb(217, 88, 120)\"]}}} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://pd.w.org/2022/01/21261f60ba46147b0.97888240.jpg\" alt=\"\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:7;O:8:\"stdClass\":7:{s:2:\"id\";i:308949;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:42:\"Bold sale banner with geometric background\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1663:\"\n<div class=\"wp-duotone-rgb4448102-ffb23d-50 wp-block-cover alignfull\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:50vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-90 has-background-dim\" style=\"background-color:#2c3066\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-334\" alt=\"\" src=\"https://pd.w.org/2022/01/2661f82cd1ba9172.16386413.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-layout-flow wp-container-48 wp-block-group-is-layout-flow\">\n<p class=\"has-text-align-center has-text-color\" style=\"color:#ffb23d;font-size:160px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">Enjoy</p>\n\n\n\n<p class=\"has-text-align-center has-text-color\" style=\"color:#ffb23d;font-size:160px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">20% Off</p>\n\n\n\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-47 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:20px;font-style:normal;font-weight:700;letter-spacing:1px;text-transform:uppercase\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#2c3066;background-color:#ffb23d;padding-top:32px;padding-right:48px;padding-bottom:32px;padding-left:48px\">Shop Now</a></div>\n</div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:43:\"store, shop, coupon, jazz, background image\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:73:\"core/button,core/buttons,core/cover,core/group,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2819:\"<!-- wp:cover {\"url\":\"https://pd.w.org/2022/01/2661f82cd1ba9172.16386413.jpg\",\"id\":334,\"dimRatio\":90,\"customOverlayColor\":\"#2c3066\",\"minHeight\":50,\"minHeightUnit\":\"vh\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4vw\",\"right\":\"4vw\",\"bottom\":\"4vw\",\"left\":\"4vw\"},\"margin\":{\"top\":\"0\"}},\"color\":{\"duotone\":[\"rgb(44, 48, 102)\",\"#ffb23d\"]}}} -->\n<div class=\"wp-block-cover alignfull\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:50vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-90 has-background-dim\" style=\"background-color:#2c3066\"></span><img class=\"wp-block-cover__image-background wp-image-334\" alt=\"\" src=\"https://pd.w.org/2022/01/2661f82cd1ba9172.16386413.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"160px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.9\",\"letterSpacing\":\"-2px\"},\"color\":{\"text\":\"#ffb23d\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#ffb23d;font-size:160px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">Enjoy</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"160px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.9\",\"letterSpacing\":\"-2px\"},\"color\":{\"text\":\"#ffb23d\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#ffb23d;font-size:160px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">20% Off</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"48px\"} -->\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"color\":{\"background\":\"#ffb23d\",\"text\":\"#2c3066\"},\"spacing\":{\"padding\":{\"top\":\"32px\",\"right\":\"48px\",\"bottom\":\"32px\",\"left\":\"48px\"}},\"typography\":{\"fontSize\":\"20px\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"1px\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}}} -->\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:20px;font-style:normal;font-weight:700;letter-spacing:1px;text-transform:uppercase\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#2c3066;background-color:#ffb23d;padding-top:32px;padding-right:48px;padding-bottom:32px;padding-left:48px\">Shop Now</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:8;O:8:\"stdClass\":7:{s:2:\"id\";i:308924;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:47:\"Offset bold paragraph text with varying opacity\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1592:\"\n<div class=\"wp-block-cover alignfull has-white-color has-text-color\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-left is-layout-constrained wp-container-51 wp-block-group-is-layout-constrained\">\n<p class=\"has-text-align-left has-text-color\" style=\"color:#ffffff61;font-size:120px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">Embark</p>\n\n\n\n<p class=\"has-text-align-right has-text-color\" style=\"color:#ffffff73;font-size:72px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\"><strong>ON A HIKING</strong></p>\n\n\n\n<p class=\"has-text-align-left has-text-color\" style=\"color:#ffffffad;font-size:72px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">adventure and explore the beauty of nature&#8217;s best…</p>\n\n\n\n<p class=\"has-text-align-right has-text-color\" style=\"color:#ffffffd1;font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">In the</p>\n\n\n\n<p class=\"has-text-align-left has-text-color\" style=\"color:#fffffff5;font-size:162px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">WOODS.</p>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:36:\"core/cover,core/group,core/paragraph\";}s:14:\"category_slugs\";a:1:{i:0;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3052:\"<!-- wp:cover {\"overlayColor\":\"black\",\"minHeight\":66,\"minHeightUnit\":\"vh\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4vw\",\"right\":\"4vw\",\"bottom\":\"4vw\",\"left\":\"4vw\"},\"margin\":{\"top\":\"0\"}}},\"textColor\":\"white\"} -->\n<div class=\"wp-block-cover alignfull has-white-color has-text-color\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"}},\"layout\":{\"type\":\"constrained\",\"wideSize\":\"700px\",\"contentSize\":\"700px\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"120px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1\",\"letterSpacing\":\"-2px\"},\"color\":{\"text\":\"#ffffff61\"}}} -->\n<p class=\"has-text-align-left has-text-color\" style=\"color:#ffffff61;font-size:120px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">Embark</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"72px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1\",\"letterSpacing\":\"0px\"},\"color\":{\"text\":\"#ffffff73\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#ffffff73;font-size:72px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\"><strong>ON A HIKING</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"72px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1\",\"letterSpacing\":\"0px\"},\"color\":{\"text\":\"#ffffffad\"}}} -->\n<p class=\"has-text-align-left has-text-color\" style=\"color:#ffffffad;font-size:72px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">adventure and explore the beauty of nature\'s best…</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1\",\"letterSpacing\":\"-2px\"},\"color\":{\"text\":\"#ffffffd1\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#ffffffd1;font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">In the</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"162px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1\",\"letterSpacing\":\"-2px\"},\"color\":{\"text\":\"#fffffff5\"}}} -->\n<p class=\"has-text-align-left has-text-color\" style=\"color:#fffffff5;font-size:162px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">WOODS.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:9;O:8:\"stdClass\":7:{s:2:\"id\";i:308916;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:40:\"Offset text with a brutalist design vibe\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1389:\"\n<div class=\"wp-block-cover alignfull is-light has-black-color has-text-color\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#ffb43c\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-layout-constrained wp-container-53 wp-block-group-is-layout-constrained\">\n<p class=\"has-text-align-left has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\"><mark style=\"color:#a65a00\" class=\"has-inline-color\">✴︎</mark> Walk</p>\n\n\n\n<p class=\"has-text-align-right has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">In the</p>\n\n\n\n<p class=\"has-text-align-left has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">Park</p>\n\n\n\n<p class=\"has-text-align-center has-text-color\" style=\"color:#a65a00;font-size:140px;font-style:italic;font-weight:200;letter-spacing:0px;line-height:0.9;text-transform:uppercase\">—01.03</p>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:36:\"core/cover,core/group,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2631:\"<!-- wp:cover {\"customOverlayColor\":\"#ffb43c\",\"minHeight\":66,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"48px\",\"right\":\"48px\",\"bottom\":\"48px\",\"left\":\"48px\"},\"margin\":{\"top\":\"0\"}}},\"textColor\":\"black\"} -->\n<div class=\"wp-block-cover alignfull is-light has-black-color has-text-color\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#ffb43c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"}},\"layout\":{\"type\":\"constrained\",\"wideSize\":\"1200px\",\"contentSize\":\"800px\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.9\",\"letterSpacing\":\"-2px\"}},\"textColor\":\"black\"} -->\n<p class=\"has-text-align-left has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\"><mark style=\"color:#a65a00\" class=\"has-inline-color\">✴︎</mark> Walk</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.9\",\"letterSpacing\":\"-2px\"}},\"textColor\":\"black\"} -->\n<p class=\"has-text-align-right has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">In the</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.9\",\"letterSpacing\":\"-2px\"}},\"textColor\":\"black\"} -->\n<p class=\"has-text-align-left has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">Park</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"140px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"italic\",\"fontWeight\":\"200\",\"letterSpacing\":\"0px\",\"lineHeight\":\"0.9\"},\"color\":{\"text\":\"#a65a00\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#a65a00;font-size:140px;font-style:italic;font-weight:200;letter-spacing:0px;line-height:0.9;text-transform:uppercase\">—01.03</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:10;O:8:\"stdClass\":7:{s:2:\"id\";i:308901;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:40:\"Fullscreen image with right content area\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2040:\"\n<div class=\"wp-block-cover alignfull\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#376a23\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-left is-layout-flex wp-container-59 wp-block-group-is-layout-flex\">\n<figure class=\"wp-block-image size-large wp-container-content-55\"><img decoding=\"async\" src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></figure>\n\n\n\n<div class=\"wp-block-group alignwide wp-container-content-57 is-content-justification-left is-layout-constrained wp-container-58 wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading alignwide has-text-align-left has-black-color has-text-color\" style=\"font-size:80px;font-style:italic;font-weight:700;line-height:1.0;text-transform:uppercase\">wAndering through the woods</h2>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-align-left has-black-color has-text-color\" style=\"font-size:18px;font-style:italic;font-weight:600\">Explore our network of trails that lead through a variety of woodland habitats and observe the diverse flora that call this area home. </p>\n\n\n\n<div style=\"height:60px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-left is-nowrap is-layout-flex wp-container-56 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size is-style-fill\" style=\"font-size:18px;font-style:italic;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-black-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Sign up</a></div>\n</div>\n</div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:97:\"core/button,core/buttons,core/cover,core/group,core/heading,core/image,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3261:\"<!-- wp:cover {\"customOverlayColor\":\"#376a23\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4vw\",\"right\":\"4vw\",\"bottom\":\"4vw\",\"left\":\"4vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#376a23\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4vw\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:image {\"sizeSlug\":\"large\",\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"50%\"}}} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\",\"contentSize\":\"600px\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:heading {\"textAlign\":\"left\",\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"80px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"italic\",\"fontWeight\":\"700\",\"lineHeight\":\"1.0\"}},\"textColor\":\"black\"} -->\n<h2 class=\"wp-block-heading alignwide has-text-align-left has-black-color has-text-color\" style=\"font-size:80px;font-style:italic;font-weight:700;line-height:1.0;text-transform:uppercase\">wAndering through the woods</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"18px\",\"fontStyle\":\"italic\",\"fontWeight\":\"600\"}},\"textColor\":\"black\"} -->\n<p class=\"has-text-align-left has-black-color has-text-color\" style=\"font-size:18px;font-style:italic;font-weight:600\">Explore our network of trails that lead through a variety of woodland habitats and observe the diverse flora that call this area home. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"60px\"} -->\n<div style=\"height:60px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"backgroundColor\":\"black\",\"textColor\":\"white\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"24px\",\"right\":\"48px\",\"bottom\":\"24px\",\"left\":\"48px\"}},\"typography\":{\"fontSize\":\"18px\",\"fontStyle\":\"italic\",\"fontWeight\":\"600\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"},\"border\":{\"radius\":\"0px\"}},\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-fill\" style=\"font-size:18px;font-style:italic;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-black-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Sign up</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:11;O:8:\"stdClass\":7:{s:2:\"id\";i:308871;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:46:\"Cover Image with Bold Heading and Button, Left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1525:\"\n<div class=\"wp-duotone-094850-f9644e-64 wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-335\" alt=\"\" src=\"https://pd.w.org/2021/12/12261b91fba359867.64939140.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-left is-layout-constrained wp-container-61 wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading has-text-align-left has-white-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">Take a hike and wAnder through the woods</h2>\n</div>\n\n\n\n<div style=\"height:72px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-left is-nowrap is-layout-flex wp-container-62 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size is-style-outline\" style=\"font-size:16px;font-style:normal;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-text-color wp-element-button\" style=\"padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Explore</a></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:71:\"core/button,core/buttons,core/cover,core/group,core/heading,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2443:\"<!-- wp:cover {\"url\":\"https://pd.w.org/2021/12/12261b91fba359867.64939140.jpg\",\"id\":335,\"dimRatio\":30,\"minHeight\":66,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"48px\",\"right\":\"48px\",\"bottom\":\"48px\",\"left\":\"48px\"},\"margin\":{\"top\":\"0\"}},\"color\":{\"duotone\":[\"#094850\",\"#f9644e\"]}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-335\" alt=\"\" src=\"https://pd.w.org/2021/12/12261b91fba359867.64939140.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"48px\"}},\"layout\":{\"type\":\"constrained\",\"contentSize\":\"75%\",\"justifyContent\":\"left\",\"wideSize\":\"75%\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"100px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"letterSpacing\":\"0px\",\"lineHeight\":\"1\"}},\"textColor\":\"white\"} -->\n<h2 class=\"wp-block-heading has-text-align-left has-white-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">Take a hike and wAnder through the woods</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"72px\"} -->\n<div style=\"height:72px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"white\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"24px\",\"right\":\"48px\",\"bottom\":\"24px\",\"left\":\"48px\"}},\"typography\":{\"fontSize\":\"16px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-outline\" style=\"font-size:16px;font-style:normal;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-text-color wp-element-button\" style=\"padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Explore</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div></div>\n<!-- /wp:cover -->\";}i:12;O:8:\"stdClass\":7:{s:2:\"id\";i:308868;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:40:\"Cover Image with Bold Heading and Button\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1533:\"\n<div class=\"wp-duotone-rgb4247103-rgb21419442-68 wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-335\" alt=\"\" src=\"https://pd.w.org/2022/01/26061d763eca13bb6.11341561.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-layout-constrained wp-container-65 wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading has-text-align-center has-white-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">Embark on a hiking adventure and explore the beauty of the woods.</h2>\n</div>\n\n\n\n<div style=\"height:72px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-nowrap is-layout-flex wp-container-66 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size is-style-outline\" style=\"font-size:16px;font-style:normal;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-text-color wp-element-button\" style=\"padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Explore</a></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:71:\"core/button,core/buttons,core/cover,core/group,core/heading,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2449:\"<!-- wp:cover {\"url\":\"https://pd.w.org/2022/01/26061d763eca13bb6.11341561.jpg\",\"id\":335,\"dimRatio\":30,\"minHeight\":66,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"48px\",\"right\":\"48px\",\"bottom\":\"48px\",\"left\":\"48px\"},\"margin\":{\"top\":\"0\"}},\"color\":{\"duotone\":[\"rgb(42, 47, 103)\",\"rgb(214, 194, 42)\"]}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-335\" alt=\"\" src=\"https://pd.w.org/2022/01/26061d763eca13bb6.11341561.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"48px\"}},\"layout\":{\"type\":\"constrained\",\"wideSize\":\"80%\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"100px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"letterSpacing\":\"0px\",\"lineHeight\":\"1\"}},\"textColor\":\"white\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-white-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">Embark on a hiking adventure and explore the beauty of the woods.</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"72px\"} -->\n<div style=\"height:72px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"white\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"24px\",\"right\":\"48px\",\"bottom\":\"24px\",\"left\":\"48px\"}},\"typography\":{\"fontSize\":\"16px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-outline\" style=\"font-size:16px;font-style:normal;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-text-color wp-element-button\" style=\"padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Explore</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div></div>\n<!-- /wp:cover -->\";}i:13;O:8:\"stdClass\":7:{s:2:\"id\";i:303828;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:30:\"Fullscreen cover image gallery\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:895:\"\n<div class=\"wp-block-cover alignfull\" style=\"padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-center is-nowrap is-layout-flex wp-container-69 wp-block-group-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><a href=\"https://thato.test/?page_id=28\"><img decoding=\"async\" src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></a></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://thato.test/?page_id=28\"><img decoding=\"async\" src=\"https://pd.w.org/2022/01/21261f60ba46147b0.97888240.jpg\" alt=\"\" /></a></figure>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:43:\"gallery, images, columns, background, cover\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:32:\"core/cover,core/group,core/image\";}s:14:\"category_slugs\";a:1:{i:0;s:7:\"gallery\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1259:\"<!-- wp:cover {\"overlayColor\":\"black\",\"minHeight\":66,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4vw\",\"right\":\"4vw\",\"bottom\":\"4vw\",\"left\":\"4vw\"}}}} -->\n<div class=\"wp-block-cover alignfull\" style=\"padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4vw\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"custom\"} -->\n<figure class=\"wp-block-image size-large\"><a href=\"https://thato.test/?page_id=28\"><img src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></a></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"custom\"} -->\n<figure class=\"wp-block-image size-large\"><a href=\"https://thato.test/?page_id=28\"><img src=\"https://pd.w.org/2022/01/21261f60ba46147b0.97888240.jpg\" alt=\"\" /></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:14;O:8:\"stdClass\":7:{s:2:\"id\";i:277265;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Fullwidth posts with uppercase titles\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:6993:\"\n<div class=\"wp-block-query alignfull is-layout-flow wp-block-query-is-layout-flow\">\n<div class=\"wp-block-group alignfull is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><ul style=\"text-transform:none;\" class=\"wp-block-post-template is-layout-flow wp-block-post-template-is-layout-flow\"><li class=\"wp-block-post post-2071 post type-post status-publish format-standard hentry category-space tag-planet\">\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:1px\">\n<div class=\"wp-block-group is-content-justification-space-between is-nowrap is-layout-flex wp-container-72 wp-block-group-is-layout-flex\" style=\"padding-top:16px;padding-right:16px;padding-bottom:16px;padding-left:16px\">\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-71 wp-block-group-is-layout-flex\">\n<p>✴︎</p>\n\n\n<div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; text-transform:uppercase;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date has-small-font-size wp-elements-4003f76eccbf507a9e3d7e84a42ea154\"><time datetime=\"2021-07-06T21:31:35+00:00\">Jul 6, 2021</time></div></div>\n\n\n<div style=\"text-transform:uppercase\" class=\"taxonomy-category has-link-color has-text-color has-contrast-color wp-block-post-terms wp-elements-d846021732facad792835971f80af878\"><span class=\"wp-block-post-terms__prefix\">✴︎ </span><a href=\"https://wordpress.org/patterns/category/space/\" rel=\"tag\">Space</a></div></div>\n</div>\n\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-75 wp-block-group-is-layout-flex\" style=\"padding-top:16px;padding-right:16px;padding-bottom:var(--wp--preset--spacing--70);padding-left:16px\"><h2 style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:5.2rem;font-style:normal;font-weight:500;line-height:1.1;text-transform:uppercase;\" class=\"has-link-color has-text-color has-contrast-color wp-block-post-title wp-elements-eba6f7f6e0a9160611aa886fe4e31449 is-layout-flow wp-block-post-title-is-layout-flow\"><a href=\"https://wordpress.org/patterns/jupiter/\" target=\"_self\" >Jupiter</a></h2></div>\n\n</li><li class=\"wp-block-post post-2069 post type-post status-publish format-standard hentry category-space tag-stars\">\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:1px\">\n<div class=\"wp-block-group is-content-justification-space-between is-nowrap is-layout-flex wp-container-77 wp-block-group-is-layout-flex\" style=\"padding-top:16px;padding-right:16px;padding-bottom:16px;padding-left:16px\">\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-76 wp-block-group-is-layout-flex\">\n<p>✴︎</p>\n\n\n<div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; text-transform:uppercase;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date has-small-font-size wp-elements-4003f76eccbf507a9e3d7e84a42ea154\"><time datetime=\"2021-07-06T21:30:31+00:00\">Jul 6, 2021</time></div></div>\n\n\n<div style=\"text-transform:uppercase\" class=\"taxonomy-category has-link-color has-text-color has-contrast-color wp-block-post-terms wp-elements-d846021732facad792835971f80af878\"><span class=\"wp-block-post-terms__prefix\">✴︎ </span><a href=\"https://wordpress.org/patterns/category/space/\" rel=\"tag\">Space</a></div></div>\n</div>\n\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-80 wp-block-group-is-layout-flex\" style=\"padding-top:16px;padding-right:16px;padding-bottom:var(--wp--preset--spacing--70);padding-left:16px\"><h2 style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:5.2rem;font-style:normal;font-weight:500;line-height:1.1;text-transform:uppercase;\" class=\"has-link-color has-text-color has-contrast-color wp-block-post-title wp-elements-eba6f7f6e0a9160611aa886fe4e31449 is-layout-flow wp-block-post-title-is-layout-flow\"><a href=\"https://wordpress.org/patterns/star-clusters-in-hurcules/\" target=\"_self\" >Star Clusters in Hurcules</a></h2></div>\n\n</li><li class=\"wp-block-post post-2067 post type-post status-publish format-standard hentry category-space tag-planet\">\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:1px\">\n<div class=\"wp-block-group is-content-justification-space-between is-nowrap is-layout-flex wp-container-82 wp-block-group-is-layout-flex\" style=\"padding-top:16px;padding-right:16px;padding-bottom:16px;padding-left:16px\">\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-81 wp-block-group-is-layout-flex\">\n<p>✴︎</p>\n\n\n<div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; text-transform:uppercase;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date has-small-font-size wp-elements-4003f76eccbf507a9e3d7e84a42ea154\"><time datetime=\"2021-07-05T21:29:00+00:00\">Jul 5, 2021</time></div></div>\n\n\n<div style=\"text-transform:uppercase\" class=\"taxonomy-category has-link-color has-text-color has-contrast-color wp-block-post-terms wp-elements-d846021732facad792835971f80af878\"><span class=\"wp-block-post-terms__prefix\">✴︎ </span><a href=\"https://wordpress.org/patterns/category/space/\" rel=\"tag\">Space</a></div></div>\n</div>\n\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-85 wp-block-group-is-layout-flex\" style=\"padding-top:16px;padding-right:16px;padding-bottom:var(--wp--preset--spacing--70);padding-left:16px\"><h2 style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:5.2rem;font-style:normal;font-weight:500;line-height:1.1;text-transform:uppercase;\" class=\"has-link-color has-text-color has-contrast-color wp-block-post-title wp-elements-eba6f7f6e0a9160611aa886fe4e31449 is-layout-flow wp-block-post-title-is-layout-flow\"><a href=\"https://wordpress.org/patterns/saturn/\" target=\"_self\" >Saturn</a></h2></div>\n\n</li></ul></div>\n\n\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--30);padding-right:16px;padding-bottom:var(--wp--preset--spacing--30);padding-left:16px\"><nav class=\"wp-block-query-pagination is-content-justification-left is-nowrap is-layout-flex wp-container-88 wp-block-query-pagination-is-layout-flex\" aria-label=\"Pagination\">\n\n\n<a href=\"/patterns/wp-json/wp/v2/wporg-pattern?page=1&#038;per_page=100&#038;order=desc&#038;orderby=date&#038;locale=en_US&#038;wp-version=6.2.2&#038;pattern-keywords=11&#038;_fields=id%2Ctitle%2Ccontent%2Cmeta%2Ccategory_slugs%2Ckeyword_slugs%2Cpattern_content&#038;query-31-page=2\" style=\"text-transform:uppercase;\" class=\"wp-block-query-pagination-next has-small-font-size\">Next</a>\n</nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:30:\"star, posts, loop, blog, index\";s:16:\"wpop_description\";s:62:\"A fullwidth posts pattern with large titles and start accents.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:10:\"core/query\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:182:\"core/group,core/paragraph,core/post-date,core/post-template,core/post-terms,core/post-title,core/query,core/query-pagination,core/query-pagination-next,core/query-pagination-previous\";}s:14:\"category_slugs\";a:1:{i:0;s:5:\"query\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3502:\"<!-- wp:query {\"queryId\":31,\"query\":{\"perPage\":3,\"pages\":0,\"offset\":0,\"postType\":\"post\",\"order\":\"desc\",\"orderBy\":\"date\",\"author\":\"\",\"search\":\"\",\"exclude\":[],\"sticky\":\"\",\"inherit\":false},\"align\":\"full\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-query alignfull\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:post-template {\"style\":{\"typography\":{\"textTransform\":\"none\"}}} -->\n<!-- wp:group {\"style\":{\"border\":{\"bottom\":{\"color\":\"var:preset|color|contrast\",\"width\":\"1px\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:1px\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"16px\",\"right\":\"16px\",\"bottom\":\"16px\",\"left\":\"16px\"}}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:16px;padding-right:16px;padding-bottom:16px;padding-left:16px\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph -->\n<p>✴︎</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:post-date {\"textAlign\":\"left\",\"format\":\"M j, Y\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"typography\":{\"textTransform\":\"uppercase\"}},\"textColor\":\"contrast\",\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:post-terms {\"term\":\"category\",\"prefix\":\"✴︎ \",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"typography\":{\"textTransform\":\"uppercase\"}},\"textColor\":\"contrast\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"16px\",\"bottom\":\"var:preset|spacing|70\",\"right\":\"16px\",\"left\":\"16px\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:16px;padding-right:16px;padding-bottom:var(--wp--preset--spacing--70);padding-left:16px\"><!-- wp:post-title {\"isLink\":true,\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}},\"layout\":{\"selfStretch\":\"fit\"},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"lineHeight\":\"1.1\",\"textTransform\":\"uppercase\",\"fontSize\":\"5.2rem\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"textColor\":\"contrast\"} /--></div>\n<!-- /wp:group -->\n<!-- /wp:post-template --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"right\":\"16px\",\"left\":\"16px\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--30);padding-right:16px;padding-bottom:var(--wp--preset--spacing--30);padding-left:16px\"><!-- wp:query-pagination {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"left\"}} -->\n<!-- wp:query-pagination-previous {\"label\":\"Previous\",\"style\":{\"typography\":{\"textTransform\":\"uppercase\"}},\"fontSize\":\"small\"} /-->\n\n<!-- wp:query-pagination-next {\"label\":\"Next\",\"style\":{\"typography\":{\"textTransform\":\"uppercase\"}},\"fontSize\":\"small\"} /-->\n<!-- /wp:query-pagination --></div>\n<!-- /wp:group --></div>\n<!-- /wp:query -->\";}i:15;O:8:\"stdClass\":7:{s:2:\"id\";i:277127;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:33:\"Fullwidth posts titles with dates\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:6511:\"\n<div class=\"wp-block-query alignfull is-layout-flow wp-block-query-is-layout-flow\">\n<div class=\"wp-block-group alignfull is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:0;padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40)\"><ul style=\"text-transform:none;\" class=\"alignfull wp-block-post-template is-layout-flow wp-block-post-template-is-layout-flow\"><li class=\"wp-block-post post-2071 post type-post status-publish format-standard hentry category-space tag-planet\">\n\n<div class=\"wp-block-group is-layout-flow wp-container-93 wp-block-group-is-layout-flow\" style=\"padding-bottom:var(--wp--preset--spacing--50)\">\n<div class=\"wp-block-group is-content-justification-space-between is-nowrap is-layout-flex wp-container-91 wp-block-group-is-layout-flex\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:4px;padding-top:var(--wp--preset--spacing--30);padding-right:0;padding-bottom:var(--wp--preset--spacing--30);padding-left:0\"><div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:2rem;font-style:normal;font-weight:600;letter-spacing:1px;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date wp-elements-5813a8450eb0347cfdf34f1870882db6\"><time datetime=\"2021-07-06T21:31:35+00:00\">07.6</time></div>\n\n<div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:2rem;font-style:normal;font-weight:600;letter-spacing:1px;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date wp-elements-672016f5c95dcb277e0d666c7795c645\"><time datetime=\"2021-07-06T21:31:35+00:00\">2021</time></div></div>\n\n\n<h2 style=\"padding-top:var(--wp--preset--spacing--30); font-size:4.6rem;font-style:normal;font-weight:600;line-height:1.1;\" class=\"has-link-color has-text-color has-contrast-color wp-block-post-title wp-elements-b5fa43084743aafd1d185f08a32e7678 is-layout-flow wp-block-post-title-is-layout-flow\"><a href=\"https://wordpress.org/patterns/jupiter/\" target=\"_self\" >Jupiter</a></h2></div>\n\n</li><li class=\"wp-block-post post-2069 post type-post status-publish format-standard hentry category-space tag-stars\">\n\n<div class=\"wp-block-group is-layout-flow wp-container-96 wp-block-group-is-layout-flow\" style=\"padding-bottom:var(--wp--preset--spacing--50)\">\n<div class=\"wp-block-group is-content-justification-space-between is-nowrap is-layout-flex wp-container-94 wp-block-group-is-layout-flex\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:4px;padding-top:var(--wp--preset--spacing--30);padding-right:0;padding-bottom:var(--wp--preset--spacing--30);padding-left:0\"><div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:2rem;font-style:normal;font-weight:600;letter-spacing:1px;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date wp-elements-5813a8450eb0347cfdf34f1870882db6\"><time datetime=\"2021-07-06T21:30:31+00:00\">07.6</time></div>\n\n<div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:2rem;font-style:normal;font-weight:600;letter-spacing:1px;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date wp-elements-672016f5c95dcb277e0d666c7795c645\"><time datetime=\"2021-07-06T21:30:31+00:00\">2021</time></div></div>\n\n\n<h2 style=\"padding-top:var(--wp--preset--spacing--30); font-size:4.6rem;font-style:normal;font-weight:600;line-height:1.1;\" class=\"has-link-color has-text-color has-contrast-color wp-block-post-title wp-elements-b5fa43084743aafd1d185f08a32e7678 is-layout-flow wp-block-post-title-is-layout-flow\"><a href=\"https://wordpress.org/patterns/star-clusters-in-hurcules/\" target=\"_self\" >Star Clusters in Hurcules</a></h2></div>\n\n</li><li class=\"wp-block-post post-2067 post type-post status-publish format-standard hentry category-space tag-planet\">\n\n<div class=\"wp-block-group is-layout-flow wp-container-99 wp-block-group-is-layout-flow\" style=\"padding-bottom:var(--wp--preset--spacing--50)\">\n<div class=\"wp-block-group is-content-justification-space-between is-nowrap is-layout-flex wp-container-97 wp-block-group-is-layout-flex\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:4px;padding-top:var(--wp--preset--spacing--30);padding-right:0;padding-bottom:var(--wp--preset--spacing--30);padding-left:0\"><div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:2rem;font-style:normal;font-weight:600;letter-spacing:1px;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date wp-elements-5813a8450eb0347cfdf34f1870882db6\"><time datetime=\"2021-07-05T21:29:00+00:00\">07.5</time></div>\n\n<div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:2rem;font-style:normal;font-weight:600;letter-spacing:1px;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date wp-elements-672016f5c95dcb277e0d666c7795c645\"><time datetime=\"2021-07-05T21:29:00+00:00\">2021</time></div></div>\n\n\n<h2 style=\"padding-top:var(--wp--preset--spacing--30); font-size:4.6rem;font-style:normal;font-weight:600;line-height:1.1;\" class=\"has-link-color has-text-color has-contrast-color wp-block-post-title wp-elements-b5fa43084743aafd1d185f08a32e7678 is-layout-flow wp-block-post-title-is-layout-flow\"><a href=\"https://wordpress.org/patterns/saturn/\" target=\"_self\" >Saturn</a></h2></div>\n\n</li></ul></div>\n\n\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40)\"><nav class=\"wp-block-query-pagination is-content-justification-space-between is-nowrap is-layout-flex wp-container-102 wp-block-query-pagination-is-layout-flex\" aria-label=\"Pagination\">\n\n\n<a href=\"/patterns/wp-json/wp/v2/wporg-pattern?page=1&#038;per_page=100&#038;order=desc&#038;orderby=date&#038;locale=en_US&#038;wp-version=6.2.2&#038;pattern-keywords=11&#038;_fields=id%2Ctitle%2Ccontent%2Cmeta%2Ccategory_slugs%2Ckeyword_slugs%2Cpattern_content&#038;query-1-page=2\" style=\"font-size:2rem;font-style:normal;font-weight:600;text-transform:uppercase;letter-spacing:1px;\" class=\"wp-block-query-pagination-next\">Next Page</a>\n</nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:31:\"Posts, Query, Loop, Blog, Index\";s:16:\"wpop_description\";s:62:\"A fullwidth posts pattern with large titles and numeral dates.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:10:\"core/query\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:151:\"core/group,core/post-date,core/post-template,core/post-title,core/query,core/query-pagination,core/query-pagination-next,core/query-pagination-previous\";}s:14:\"category_slugs\";a:1:{i:0;s:5:\"query\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3583:\"<!-- wp:query {\"queryId\":1,\"query\":{\"perPage\":3,\"pages\":0,\"offset\":0,\"postType\":\"post\",\"order\":\"desc\",\"orderBy\":\"date\",\"author\":\"\",\"search\":\"\",\"exclude\":[],\"sticky\":\"\",\"inherit\":false},\"align\":\"full\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-query alignfull\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"var:preset|spacing|40\",\"bottom\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:0;padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40)\"><!-- wp:post-template {\"align\":\"full\",\"style\":{\"typography\":{\"textTransform\":\"none\"}}} -->\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\",\"padding\":{\"bottom\":\"var:preset|spacing|50\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\" style=\"padding-bottom:var(--wp--preset--spacing--50)\"><!-- wp:group {\"style\":{\"border\":{\"bottom\":{\"color\":\"var:preset|color|contrast\",\"width\":\"4px\"}},\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"0\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:4px;padding-top:var(--wp--preset--spacing--30);padding-right:0;padding-bottom:var(--wp--preset--spacing--30);padding-left:0\"><!-- wp:post-date {\"textAlign\":\"left\",\"format\":\"m.j\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"typography\":{\"letterSpacing\":\"1px\",\"fontSize\":\"2rem\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"contrast\"} /-->\n\n<!-- wp:post-date {\"textAlign\":\"left\",\"format\":\"Y\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"typography\":{\"letterSpacing\":\"1px\",\"fontSize\":\"2rem\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"contrast\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:post-title {\"isLink\":true,\"style\":{\"layout\":{\"selfStretch\":\"fit\"},\"typography\":{\"lineHeight\":\"1.1\",\"fontSize\":\"4.6rem\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\"}}},\"textColor\":\"contrast\"} /--></div>\n<!-- /wp:group -->\n<!-- /wp:post-template --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|40\",\"bottom\":\"var:preset|spacing|40\",\"right\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40)\"><!-- wp:query-pagination {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"space-between\"}} -->\n<!-- wp:query-pagination-previous {\"style\":{\"typography\":{\"fontSize\":\"2rem\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"1px\"}}} /-->\n\n<!-- wp:query-pagination-next {\"style\":{\"typography\":{\"fontSize\":\"2rem\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"1px\"}}} /-->\n<!-- /wp:query-pagination --></div>\n<!-- /wp:group --></div>\n<!-- /wp:query -->\";}i:16;O:8:\"stdClass\":7:{s:2:\"id\";i:229116;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:32:\"Fullwidth header with hero image\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3842:\"\n<div class=\"wp-block-group alignfull is-layout-constrained wp-block-group-is-layout-constrained\">\n<div class=\"wp-block-group alignfull is-content-justification-space-between is-layout-flex wp-container-109 wp-block-group-is-layout-flex\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group is-layout-flex wp-container-106 wp-block-group-is-layout-flex\"><div class=\"is-default-size wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-105 wp-block-group-is-layout-flex\"><h1 class=\"has-link-color wp-block-site-title has-medium-font-size wp-elements-234e57400cf5587740bb7caa261d6fc4\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1></div>\n</div>\n\n\n<nav class=\"is-responsive items-justified-right is-fallback wp-block-navigation is-content-justification-right is-layout-flex wp-container-108 wp-block-navigation-is-layout-flex\" aria-label=\"\"><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-107\"><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-107\">\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\">\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-107-content\">\n							<ul class=\"wp-block-navigation__container\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n\n\n\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;min-height:40vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-0 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-61\" alt=\"\" src=\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&amp;h=1200&amp;fit=clip&amp;crop=default&amp;dpr=1&amp;q=75&amp;vib=3&amp;con=3&amp;usm=15&amp;cs=srgb&amp;bg=F4F4F3&amp;ixlib=js-2.2.1&amp;s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:65:\"Header on a white background followed by a full-width hero image.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:80:\"core/cover,core/group,core/navigation,core/site-logo,core/site-title,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"header\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2566:\"<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo /-->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:cover {\"url\":\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&h=1200&fit=clip&crop=default&dpr=1&q=75&vib=3&con=3&usm=15&cs=srgb&bg=F4F4F3&ixlib=js-2.2.1&s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\",\"id\":61,\"dimRatio\":0,\"overlayColor\":\"black\",\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"minHeight\":40,\"minHeightUnit\":\"vw\",\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;min-height:40vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-0 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-61\" alt=\"\" src=\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&amp;h=1200&amp;fit=clip&amp;crop=default&amp;dpr=1&amp;q=75&amp;vib=3&amp;con=3&amp;usm=15&amp;cs=srgb&amp;bg=F4F4F3&amp;ixlib=js-2.2.1&amp;s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:group -->\";}i:17;O:8:\"stdClass\":7:{s:2:\"id\";i:229092;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:41:\"Header inside full-width background image\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3879:\"\n<div class=\"wp-block-group alignfull is-layout-constrained wp-block-group-is-layout-constrained\">\n<div class=\"wp-block-cover alignfull is-light\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30);min-height:50px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-61\" alt=\"\" src=\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&amp;h=1200&amp;fit=clip&amp;crop=default&amp;dpr=1&amp;q=75&amp;vib=3&amp;con=3&amp;usm=15&amp;cs=srgb&amp;bg=F4F4F3&amp;ixlib=js-2.2.1&amp;s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group alignwide has-base-color has-text-color has-link-color wp-elements-a5c55c350363e1349d710a58148fd7b6 is-content-justification-space-between is-layout-flex wp-container-115 wp-block-group-is-layout-flex\" style=\"margin-top:0;margin-bottom:0\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><div class=\"is-default-size is-style-default wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n<h1 class=\"has-link-color has-text-color has-white-color wp-block-site-title has-medium-font-size wp-elements-e24c80986e13ab3d929b38d6b46e3019\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1></div>\n\n\n<nav class=\"has-text-color has-white-color is-responsive items-justified-right is-fallback wp-block-navigation is-content-justification-right is-layout-flex wp-container-114 wp-block-navigation-is-layout-flex\" aria-label=\"\"><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-113\"><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-113\">\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\">\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-113-content\">\n							<ul class=\"wp-block-navigation__container\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n\n\n\n<div style=\"height:33vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:100:\"Simple header with logo, site title, navigation and a full-width background image with dark overlay.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:80:\"core/cover,core/group,core/navigation,core/site-logo,core/site-title,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"header\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2554:\"<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:cover {\"url\":\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&h=1200&fit=clip&crop=default&dpr=1&q=75&vib=3&con=3&usm=15&cs=srgb&bg=F4F4F3&ixlib=js-2.2.1&s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\",\"id\":61,\"dimRatio\":50,\"overlayColor\":\"black\",\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"minHeight\":50,\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30);min-height:50px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-61\" alt=\"\" src=\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&amp;h=1200&amp;fit=clip&amp;crop=default&amp;dpr=1&amp;q=75&amp;vib=3&amp;con=3&amp;usm=15&amp;cs=srgb&amp;bg=F4F4F3&amp;ixlib=js-2.2.1&amp;s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|base\"}}},\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"textColor\":\"base\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide has-base-color has-text-color has-link-color\" style=\"margin-top:0;margin-bottom:0\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo {\"className\":\"is-style-default\"} /-->\n\n<!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|background\"}}}},\"textColor\":\"white\",\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"textColor\":\"white\",\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"33vw\"} -->\n<div style=\"height:33vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:group -->\";}i:18;O:8:\"stdClass\":7:{s:2:\"id\";i:229097;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:34:\"Simple header with dark background\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2982:\"\n<div class=\"wp-block-group alignfull has-background-color has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-4956719e1d36ae31d9fb9c185b0a148a is-layout-constrained wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-121 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><div class=\"is-default-size wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n<h1 class=\"has-link-color wp-block-site-title wp-elements-f1e98d6c897e424c7d4e8232ded39f0a\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1></div>\n\n\n<nav class=\"is-responsive items-justified-right is-fallback wp-block-navigation is-content-justification-right is-layout-flex wp-container-120 wp-block-navigation-is-layout-flex\" aria-label=\"\"><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-119\"><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-119\">\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\">\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-119-content\">\n							<ul class=\"wp-block-navigation__container\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:76:\"Simple header with logo, site title, navigation links and a dark background.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:57:\"core/group,core/navigation,core/site-logo,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1232:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}},\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}},\"backgroundColor\":\"black\",\"textColor\":\"white\",\"className\":\"has-background-color\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-background-color has-white-color has-black-background-color has-text-color has-background has-link-color\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo /-->\n\n<!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:19;O:8:\"stdClass\":7:{s:2:\"id\";i:229101;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:29:\"Text-only header with tagline\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2742:\"\n<div class=\"wp-block-group alignfull is-layout-constrained wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-126 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><h1 class=\"has-link-color wp-block-site-title wp-elements-d6202aa7d337f2ce08aedc8ed261a84e\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n<p class=\"wp-block-site-tagline\">Beautifully designed patterns ready to go with a simple copy/paste</p></div>\n\n\n<nav class=\"is-responsive items-justified-right is-fallback wp-block-navigation is-content-justification-right is-layout-flex wp-container-125 wp-block-navigation-is-layout-flex\" aria-label=\"\"><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-124\"><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-124\">\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\">\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-124-content\">\n							<ul class=\"wp-block-navigation__container\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:53:\"Header with site title, tagline and navigation links.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:60:\"core/group,core/navigation,core/site-tagline,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:966:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}}} /-->\n\n<!-- wp:site-tagline /--></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:20;O:8:\"stdClass\":7:{s:2:\"id\";i:229105;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:26:\"Simple header with tagline\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3271:\"\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color wp-elements-7479bd1e590756c4aa927894dbdbef4e is-layout-constrained wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-132 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-container-129 wp-block-group-is-layout-flex\"><div class=\"is-default-size wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-128 wp-block-group-is-layout-flex\"><h1 class=\"has-link-color wp-block-site-title wp-elements-d6202aa7d337f2ce08aedc8ed261a84e\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n<p class=\"wp-block-site-tagline has-small-font-size\">Beautifully designed patterns ready to go with a simple copy/paste</p></div>\n</div>\n\n\n<nav class=\"has-small-font-size is-responsive items-justified-right is-fallback wp-block-navigation has-small-font-size is-content-justification-right is-layout-flex wp-container-131 wp-block-navigation-is-layout-flex\" aria-label=\"\"><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-130\"><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-130\">\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\">\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-130-content\">\n							<ul class=\"wp-block-navigation__container\"><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:92:\"Header with site logo, title and tagline on the left and with navigation links on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:75:\"core/group,core/navigation,core/site-logo,core/site-tagline,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1389:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"textColor\":\"contrast\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo /-->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}}} /-->\n\n<!-- wp:site-tagline {\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"},\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:21;O:8:\"stdClass\":7:{s:2:\"id\";i:229111;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:36:\"Fullwidth site title and menu button\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2514:\"\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color wp-elements-e0434f7bbe3c9d87e2f1562e19b734da is-content-justification-space-between is-layout-flex wp-container-136 wp-block-group-is-layout-flex\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><h1 class=\"wp-block-site-title\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n<nav class=\"is-responsive items-justified-right is-fallback wp-block-navigation is-content-justification-right is-layout-flex wp-container-135 wp-block-navigation-is-layout-flex\" aria-label=\"\"><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open always-shown\" data-micromodal-trigger=\"modal-134\"><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container hidden-by-default \" style=\"\" id=\"modal-134\">\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\">\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-134-content\">\n							<ul class=\"wp-block-navigation__container\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:51:\"Header with site title and a hamburger menu button.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:42:\"core/group,core/navigation,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:794:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"textColor\":\"contrast\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:site-title /-->\n\n<!-- wp:navigation {\"overlayMenu\":\"always\",\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group -->\";}i:22;O:8:\"stdClass\":7:{s:2:\"id\";i:229080;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:25:\"Centered header with logo\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2808:\"\n<div class=\"wp-block-group alignfull is-layout-constrained wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-vertical is-content-justification-center is-layout-flex wp-container-139 wp-block-group-is-layout-flex\"><div class=\"is-default-size wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n<h1 class=\"has-link-color has-text-color has-contrast-color wp-block-site-title has-large-font-size wp-elements-9728cce79011b64628d7f6beff066787\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n<nav class=\"is-responsive items-justified-center is-fallback wp-block-navigation is-content-justification-center is-layout-flex wp-container-138 wp-block-navigation-is-layout-flex\" aria-label=\"\"><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-137\"><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-137\">\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\">\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-137-content\">\n							<ul class=\"wp-block-navigation__container\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:65:\"Center aligned header with logo, site title and navigation links.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:57:\"core/group,core/navigation,core/site-logo,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:926:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|40\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|30\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:site-logo /-->\n\n<!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"textColor\":\"contrast\",\"fontSize\":\"large\"} /-->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"center\"}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:23;O:8:\"stdClass\":7:{s:2:\"id\";i:229084;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Fullwidth header with large font size\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2602:\"\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color wp-elements-4b5a1e7a31f9f44eaeb3ab45e5ae60f1 is-content-justification-space-between is-layout-flex wp-container-143 wp-block-group-is-layout-flex\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><h1 class=\"wp-block-site-title has-large-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n<nav class=\"has-large-font-size is-responsive items-justified-right is-fallback wp-block-navigation has-large-font-size is-content-justification-right is-layout-flex wp-container-142 wp-block-navigation-is-layout-flex\" aria-label=\"\"><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-141\"><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-141\">\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\">\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-141-content\">\n							<ul class=\"wp-block-navigation__container\"><li class=\"has-large-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"has-large-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"has-large-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:80:\"Header with a large site title and navigation links in the same large font size.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:42:\"core/group,core/navigation,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:811:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"textColor\":\"contrast\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:site-title {\"fontSize\":\"large\"} /-->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"},\"fontSize\":\"large\"} /--></div>\n<!-- /wp:group -->\";}i:24;O:8:\"stdClass\":7:{s:2:\"id\";i:229088;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:13:\"Simple header\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2845:\"\n<div class=\"wp-block-group alignfull is-layout-constrained wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-147 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-container-144 wp-block-group-is-layout-flex\"><div class=\"is-default-size wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n<h1 class=\"has-link-color wp-block-site-title wp-elements-d6202aa7d337f2ce08aedc8ed261a84e\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1></div>\n\n\n<nav class=\"is-responsive items-justified-right is-fallback wp-block-navigation is-content-justification-right is-layout-flex wp-container-146 wp-block-navigation-is-layout-flex\" aria-label=\"\"><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-145\"><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-145\">\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\">\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-145-content\">\n							<ul class=\"wp-block-navigation__container\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:51:\"Simple header with logo, site title and navigation.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:57:\"core/group,core/navigation,core/site-logo,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1021:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo /-->\n\n<!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:25;O:8:\"stdClass\":7:{s:2:\"id\";i:229123;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:33:\"Centered footer with social links\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4178:\"\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color is-vertical is-content-justification-center is-layout-flex wp-container-151 wp-block-group-is-layout-flex\" style=\"min-height:30vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--50)\">\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-150 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-center\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n\n\n\n<ul class=\"wp-block-social-links has-small-icon-size is-style-logos-only is-nowrap is-layout-flex wp-container-149 wp-block-social-links-is-layout-flex\"><li class=\"wp-social-link wp-social-link-twitter wp-block-social-link\"><a href=\"https://#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitter</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-instagram wp-block-social-link\"><a href=\"https://#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Instagram</span></a></li></ul>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:82:\"Centered footer with the sentence \"Proudly powered by WordPress\" and social links.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:25:\"core/group,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1495:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|60\",\"left\":\"var:preset|spacing|50\",\"top\":\"var:preset|spacing|60\"},\"blockGap\":\"var:preset|spacing|40\",\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}},\"dimensions\":{\"minHeight\":\"30vh\"}},\"textColor\":\"contrast\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\",\"verticalAlignment\":\"center\"}} -->\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color\" style=\"min-height:30vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--50)\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:social-links {\"size\":\"has-small-icon-size\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"8px\",\"left\":\"8px\"}}},\"className\":\"is-style-logos-only\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<ul class=\"wp-block-social-links has-small-icon-size is-style-logos-only\"><!-- wp:social-link {\"url\":\"#\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"instagram\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:26;O:8:\"stdClass\":7:{s:2:\"id\";i:229127;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:47:\"Footer with search, site title, and credit line\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2955:\"\n<div class=\"wp-block-group alignfull has-background is-layout-constrained wp-block-group-is-layout-constrained\" style=\"background-color:#00000008;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--40)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-158 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group wp-container-content-153 is-content-justification-left is-layout-constrained wp-container-154 wp-block-group-is-layout-constrained\">\n<p class=\"has-text-align-left\" style=\"font-size:0.9rem;font-style:normal;font-weight:600;letter-spacing:1px;text-transform:uppercase\">Search</p>\n\n\n<form role=\"search\" method=\"get\" action=\"https://wordpress.org/patterns/\" class=\"wp-block-search__button-outside wp-block-search__icon-button wp-block-search\"><label for=\"wp-block-search__input-152\" class=\"wp-block-search__label screen-reader-text\">Search</label><div class=\"wp-block-search__inside-wrapper \"  style=\"width: 100%\"><input type=\"search\" id=\"wp-block-search__input-152\" class=\"wp-block-search__input\" name=\"s\" value=\"\" placeholder=\"\"  style=\"border-width: 1px\" required /><button type=\"submit\" class=\"wp-block-search__button has-icon wp-element-button\"  style=\"border-width: 1px\" aria-label=\"Search\"><svg class=\"search-icon\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\">\n					<path d=\"M13.5 6C10.5 6 8 8.5 8 11.5c0 1.1.3 2.1.9 3l-3.4 3 1 1.1 3.4-2.9c1 .9 2.2 1.4 3.6 1.4 3 0 5.5-2.5 5.5-5.5C19 8.5 16.5 6 13.5 6zm0 9.5c-2.2 0-4-1.8-4-4s1.8-4 4-4 4 1.8 4 4-1.8 4-4 4z\"></path>\n				</svg></button></div></form></div>\n\n\n\n<div class=\"wp-block-group is-content-justification-right is-nowrap is-layout-flex wp-container-157 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-156 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-left\" style=\"font-size:0.9rem;font-style:normal;font-weight:600;letter-spacing:1px;text-transform:uppercase\">Social</p>\n\n\n\n<div class=\"wp-block-group has-small-font-size is-vertical is-content-justification-left is-layout-flex wp-container-155 wp-block-group-is-layout-flex\">\n<p><a href=\"#\">Facebook</a></p>\n\n\n\n<p><a href=\"#\">Instagram</a></p>\n\n\n\n<p><a href=\"#\">Twitter</a></p>\n</div>\n</div>\n</div>\n</div>\n\n\n\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-160 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><h1 class=\"wp-block-site-title has-small-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1></div>\n\n\n\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:88:\"Footer with search field and site title on the left, and small credit line on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:65:\"core/group,core/paragraph,core/search,core/site-title,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:3254:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\",\"top\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\"}},\"color\":{\"background\":\"#00000008\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-background\" style=\"background-color:#00000008;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--40)\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|60\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"space-between\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"textTransform\":\"uppercase\",\"fontSize\":\"0.9rem\",\"letterSpacing\":\"1px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}}} -->\n<p class=\"has-text-align-left\" style=\"font-size:0.9rem;font-style:normal;font-weight:600;letter-spacing:1px;text-transform:uppercase\">Search</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:search {\"label\":\"Search\",\"showLabel\":false,\"width\":100,\"widthUnit\":\"%\",\"buttonText\":\"Search\",\"buttonUseIcon\":true,\"style\":{\"border\":{\"width\":\"1px\"}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":[]},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"textTransform\":\"uppercase\",\"fontSize\":\"0.9rem\",\"letterSpacing\":\"1px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}}} -->\n<p class=\"has-text-align-left\" style=\"font-size:0.9rem;font-style:normal;font-weight:600;letter-spacing:1px;text-transform:uppercase\">Social</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"left\"},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-group has-small-font-size\"><!-- wp:paragraph -->\n<p><a href=\"#\">Facebook</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Instagram</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Twitter</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"48px\"} -->\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:27;O:8:\"stdClass\":7:{s:2:\"id\";i:229131;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:38:\"Footer with site title and credit line\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:840:\"\n<div class=\"wp-block-group alignfull has-background-color is-layout-constrained wp-block-group-is-layout-constrained\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-163 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><h1 class=\"wp-block-site-title has-small-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1></div>\n\n\n\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:64:\"Footer with site title on the left and credit line on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:41:\"core/group,core/paragraph,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1095:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|40\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|30\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"has-background-color\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-background-color\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:28;O:8:\"stdClass\":7:{s:2:\"id\";i:229135;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:38:\"Footer with navigation and credit line\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2709:\"\n<div class=\"wp-block-group alignfull has-background-color is-layout-constrained wp-block-group-is-layout-constrained\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-168 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><nav class=\"has-small-font-size is-responsive items-justified-left is-fallback wp-block-navigation has-small-font-size is-content-justification-left is-layout-flex wp-container-166 wp-block-navigation-is-layout-flex\" aria-label=\"\"><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-165\"><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-165\">\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\">\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-165-content\">\n							<ul class=\"wp-block-navigation__container\"><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n\n\n\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:64:\"Footer with navigation on the left and credit line on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:41:\"core/group,core/navigation,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1174:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|40\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|30\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"has-background-color\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-background-color\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"left\"},\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:29;O:8:\"stdClass\":7:{s:2:\"id\";i:229139;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:56:\"Fullwidth footer with background color and three columns\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2848:\"\n<div class=\"wp-block-group alignfull has-background-color has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-8d0170a0199cafe7fbcba6c0b4dac464 is-vertical is-content-justification-stretch is-layout-flex wp-container-178 wp-block-group-is-layout-flex\" style=\"min-height:40vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--40)\">\n<div class=\"wp-block-columns alignwide has-small-font-size is-layout-flex wp-container-176 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-align-center\">Location</p>\n\n\n\n<p class=\"has-text-align-center\">2020 Lomita Blvd,&nbsp;<br>Torrance, CA 90101<br>United States</p>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-align-center\">Pages</p>\n\n\n<nav class=\"has-small-font-size items-justified-center is-vertical no-wrap is-fallback wp-block-navigation has-small-font-size is-content-justification-center is-nowrap is-layout-flex wp-container-172 wp-block-navigation-is-layout-flex\" aria-label=\"\"><ul class=\"wp-block-navigation__container\"><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul></nav>\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-align-center\">Follow us</p>\n\n\n\n<div class=\"wp-block-group is-vertical is-content-justification-center is-layout-flex wp-container-174 wp-block-group-is-layout-flex\">\n<p><a href=\"#\">Facebook</a></p>\n\n\n\n<p><a href=\"#\">Instagram</a></p>\n\n\n\n<p><a href=\"#\">Twitter</a></p>\n</div>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-group alignwide is-content-justification-center is-layout-flex wp-container-177 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-center has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:57:\"Text-only footer with background color and three columns.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:78:\"core/column,core/columns,core/group,core/navigation,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:3225:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}},\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|60\",\"right\":\"var:preset|spacing|40\",\"bottom\":\"var:preset|spacing|60\",\"left\":\"var:preset|spacing|40\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"},\"blockGap\":\"var:preset|spacing|30\"},\"dimensions\":{\"minHeight\":\"40vh\"}},\"backgroundColor\":\"black\",\"textColor\":\"white\",\"className\":\"has-background-color\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"stretch\",\"verticalAlignment\":\"center\"}} -->\n<div class=\"wp-block-group alignfull has-background-color has-white-color has-black-background-color has-text-color has-background has-link-color\" style=\"min-height:40vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--40)\"><!-- wp:columns {\"align\":\"wide\",\"fontSize\":\"small\"} -->\n<div class=\"wp-block-columns alignwide has-small-font-size\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Location</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">2020 Lomita Blvd,&nbsp;<br>Torrance, CA 90101<br>United States</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Pages</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:navigation {\"overlayMenu\":\"never\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\",\"flexWrap\":\"nowrap\"},\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"fontSize\":\"small\"} /-->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Follow us</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph -->\n<p><a href=\"#\">Facebook</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Instagram</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Twitter</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-center has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:30;O:8:\"stdClass\":7:{s:2:\"id\";i:229143;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:33:\"Centered footer with social links\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4117:\"\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color is-vertical is-content-justification-center is-layout-flex wp-container-180 wp-block-group-is-layout-flex\" style=\"min-height:40vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--50)\"><div style=\"margin-bottom:6px;\" class=\"is-default-size aligncenter wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n\n<p class=\"has-text-align-center has-medium-font-size\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n\n\n\n<ul class=\"wp-block-social-links has-normal-icon-size is-style-logos-only is-nowrap is-layout-flex wp-container-179 wp-block-social-links-is-layout-flex\"><li class=\"wp-social-link wp-social-link-facebook wp-block-social-link\"><a href=\"https://#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M12 2C6.5 2 2 6.5 2 12c0 5 3.7 9.1 8.4 9.9v-7H7.9V12h2.5V9.8c0-2.5 1.5-3.9 3.8-3.9 1.1 0 2.2.2 2.2.2v2.5h-1.3c-1.2 0-1.6.8-1.6 1.6V12h2.8l-.4 2.9h-2.3v7C18.3 21.1 22 17 22 12c0-5.5-4.5-10-10-10z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Facebook</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-twitter wp-block-social-link\"><a href=\"https://#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitter</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-wordpress wp-block-social-link\"><a href=\"https://#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M12.158,12.786L9.46,20.625c0.806,0.237,1.657,0.366,2.54,0.366c1.047,0,2.051-0.181,2.986-0.51 c-0.024-0.038-0.046-0.079-0.065-0.124L12.158,12.786z M3.009,12c0,3.559,2.068,6.634,5.067,8.092L3.788,8.341 C3.289,9.459,3.009,10.696,3.009,12z M18.069,11.546c0-1.112-0.399-1.881-0.741-2.48c-0.456-0.741-0.883-1.368-0.883-2.109 c0-0.826,0.627-1.596,1.51-1.596c0.04,0,0.078,0.005,0.116,0.007C16.472,3.904,14.34,3.009,12,3.009 c-3.141,0-5.904,1.612-7.512,4.052c0.211,0.007,0.41,0.011,0.579,0.011c0.94,0,2.396-0.114,2.396-0.114 C7.947,6.93,8.004,7.642,7.52,7.699c0,0-0.487,0.057-1.029,0.085l3.274,9.739l1.968-5.901l-1.401-3.838 C9.848,7.756,9.389,7.699,9.389,7.699C8.904,7.67,8.961,6.93,9.446,6.958c0,0,1.484,0.114,2.368,0.114 c0.94,0,2.397-0.114,2.397-0.114c0.485-0.028,0.542,0.684,0.057,0.741c0,0-0.488,0.057-1.029,0.085l3.249,9.665l0.897-2.996 C17.841,13.284,18.069,12.316,18.069,11.546z M19.889,7.686c0.039,0.286,0.06,0.593,0.06,0.924c0,0.912-0.171,1.938-0.684,3.22 l-2.746,7.94c2.673-1.558,4.47-4.454,4.47-7.771C20.991,10.436,20.591,8.967,19.889,7.686z M12,22C6.486,22,2,17.514,2,12 C2,6.486,6.486,2,12,2c5.514,0,10,4.486,10,10C22,17.514,17.514,22,12,22z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">WordPress</span></a></li></ul>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:71:\"Footer with centered site title, tagline, social links and credit line.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:75:\"core/group,core/paragraph,core/site-logo,core/social-link,core/social-links\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1532:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|60\",\"left\":\"var:preset|spacing|50\",\"top\":\"var:preset|spacing|60\"},\"blockGap\":\"var:preset|spacing|40\",\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}},\"dimensions\":{\"minHeight\":\"40vh\"}},\"textColor\":\"contrast\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\",\"verticalAlignment\":\"center\"}} -->\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color\" style=\"min-height:40vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--50)\"><!-- wp:site-logo {\"align\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"6px\"}}}} /-->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"medium\"} -->\n<p class=\"has-text-align-center has-medium-font-size\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:social-links {\"size\":\"has-normal-icon-size\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"12px\",\"left\":\"12px\"}}},\"className\":\"is-style-logos-only\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<ul class=\"wp-block-social-links has-normal-icon-size is-style-logos-only\"><!-- wp:social-link {\"url\":\"#\",\"service\":\"facebook\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"wordpress\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:group -->\";}i:31;O:8:\"stdClass\":7:{s:2:\"id\";i:229147;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:52:\"Fullwidth footer with navigation, credit, and social\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4595:\"\n<div class=\"wp-block-group alignfull has-background-color is-layout-flow wp-block-group-is-layout-flow\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignfull has-small-font-size is-content-justification-space-between is-nowrap is-layout-flex wp-container-186 wp-block-group-is-layout-flex\"><h1 class=\"wp-block-site-title has-small-font-size wp-container-content-181\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n\n<div class=\"wp-block-group wp-container-content-182 is-vertical is-content-justification-center is-layout-flex wp-container-183 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-center has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n</div>\n\n\n\n<ul class=\"wp-block-social-links has-small-icon-size is-style-logos-only wp-container-content-184 is-content-justification-right is-nowrap is-layout-flex wp-container-185 wp-block-social-links-is-layout-flex\"><li class=\"wp-social-link wp-social-link-twitter wp-block-social-link\"><a href=\"https://#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitter</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-instagram wp-block-social-link\"><a href=\"https://#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Instagram</span></a></li></ul>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:87:\"Footer with site title on the left, credit in the middle and social links on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:76:\"core/group,core/paragraph,core/site-title,core/social-link,core/social-links\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1869:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|30\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"has-background-color\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull has-background-color\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"nowrap\"},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-group alignfull has-small-font-size\"><!-- wp:site-title {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"25%\"}},\"fontSize\":\"small\"} /-->\n\n<!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-center has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:social-links {\"size\":\"has-small-icon-size\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"0\",\"left\":\"12px\"}},\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"25%\"}},\"className\":\"is-style-logos-only\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\"}} -->\n<ul class=\"wp-block-social-links has-small-icon-size is-style-logos-only\"><!-- wp:social-link {\"url\":\"#\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"instagram\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:32;O:8:\"stdClass\":7:{s:2:\"id\";i:229151;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:19:\"Left-aligned footer\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2722:\"\n<div class=\"wp-block-group alignfull is-content-justification-space-between is-layout-flex wp-container-196 wp-block-group-is-layout-flex\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group wp-container-content-188 is-vertical is-layout-flex wp-container-189 wp-block-group-is-layout-flex\"><h1 class=\"wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n\n<p class=\"has-text-align-left\">2020 Lomita Blvd,&nbsp;<br>Torrance, CA 90101<br>United States</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\">Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\n\n\n<div class=\"wp-block-group is-content-justification-right is-layout-flex wp-container-195 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-192 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-left\">Pages</p>\n\n\n<nav class=\"has-small-font-size items-justified-left is-vertical no-wrap is-fallback wp-block-navigation has-small-font-size is-content-justification-left is-nowrap is-layout-flex wp-container-191 wp-block-navigation-is-layout-flex\" aria-label=\"\"><ul class=\"wp-block-navigation__container\"><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul></nav>\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-194 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-left\">Social</p>\n\n\n\n<div class=\"wp-block-group is-vertical is-content-justification-left is-layout-flex wp-container-193 wp-block-group-is-layout-flex\">\n<p><a href=\"#\">Facebook</a></p>\n\n\n\n<p><a href=\"#\">Instagram</a></p>\n\n\n\n<p><a href=\"#\">Twitter</a></p>\n</div>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:44:\"Left-aligned footer with just a credit line.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:69:\"core/group,core/navigation,core/paragraph,core/site-title,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2939:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"},\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|30\"}}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"space-between\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"fontSize\":\"medium\"} /-->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">2020 Lomita Blvd,&nbsp;<br>Torrance, CA 90101<br>United States</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-left has-small-font-size\">Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|50\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"right\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Pages</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:navigation {\"overlayMenu\":\"never\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"left\",\"flexWrap\":\"nowrap\"},\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"fontSize\":\"small\"} /-->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Social</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph -->\n<p><a href=\"#\">Facebook</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Instagram</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Twitter</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:33;O:8:\"stdClass\":7:{s:2:\"id\";i:201;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:32:\"Three columns with offset images\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1330:\"\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-200 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:25%\">\n<figure class=\"wp-block-image size-large is-style-default\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-01.jpg\" alt=\"Close-up, abstract view of geometric architecture.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:25%\">\n<div style=\"height:500px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div style=\"height:150px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-02.jpg\" alt=\"Close-up, angled view of a window on a white building.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:45%\">\n<figure class=\"wp-block-image size-large is-style-default\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-03.jpg\" alt=\"Close-up of the corner of a white, geometric building with both sharp points and round corners.\" /></figure>\n\n\n\n<div style=\"height:285px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:33:\"Three columns with offset images.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:47:\"core/column,core/columns,core/image,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"gallery\";i:1;s:6:\"images\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1753:\"<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"25%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:25%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-style-default\"><img src=\"https://s.w.org/images/core/5.8/architecture-01.jpg\" alt=\"Close-up, abstract view of geometric architecture.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"25%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:25%\"><!-- wp:spacer {\"height\":500} -->\n<div style=\"height:500px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:spacer {\"height\":150} -->\n<div style=\"height:150px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/architecture-02.jpg\" alt=\"Close-up, angled view of a window on a white building.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"45%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:45%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-style-default\"><img src=\"https://s.w.org/images/core/5.8/architecture-03.jpg\" alt=\"Close-up of the corner of a white, geometric building with both sharp points and round corners.\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":285} -->\n<div style=\"height:285px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:34;O:8:\"stdClass\":7:{s:2:\"id\";i:200;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:21:\"Three columns of text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1078:\"\n<div class=\"wp-block-columns alignfull has-text-color has-background is-layout-flex wp-container-204 wp-block-columns-is-layout-flex\" style=\"background-color:#ffffff;color:#000000\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"http://wordpress.org\">Virtual Tour ↗</a></strong></h3>\n\n\n\n<p>Get a virtual tour of the museum. Ideal for schools and events.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Current Shows ↗</a></strong></h3>\n\n\n\n<p>Stay updated and see our current exhibitions here.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Useful Info ↗</a></strong></h3>\n\n\n\n<p>Get to know our opening times, ticket prices and discounts.</p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:22:\"Three columns of text.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:52:\"core/column,core/columns,core/heading,core/paragraph\";}s:14:\"category_slugs\";a:3:{i:0;s:7:\"columns\";i:1;s:8:\"featured\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1496:\"<!-- wp:columns {\"align\":\"full\",\"style\":{\"color\":{\"text\":\"#000000\",\"background\":\"#ffffff\"}}} -->\n<div class=\"wp-block-columns alignfull has-text-color has-background\" style=\"background-color:#ffffff;color:#000000\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"http://wordpress.org\">Virtual Tour ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Get a virtual tour of the museum. Ideal for schools and events.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Current Shows ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Stay updated and see our current exhibitions here.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Useful Info ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Get to know our opening times, ticket prices and discounts.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:35;O:8:\"stdClass\":7:{s:2:\"id\";i:199;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:34:\"Three columns with images and text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3155:\"\n<div class=\"wp-block-group alignfull has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"background-color:#f8f4e4\">\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-206 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h6 class=\"has-text-color wp-block-heading\" id=\"ecosystem\" style=\"color:#000000\">ECOSYSTEM</h6>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:5vw;line-height:1.1\"><strong>Positive growth.</strong></p>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-210 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.38%\">\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\"><em>Nature</em>, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf.&nbsp;<em>Art</em>&nbsp;is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture. But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33%\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-01.jpg\" alt=\"The sun setting through a dense forest.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.62%\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-02.jpg\" alt=\"Wind turbines standing on a grassy plain, against a blue sky.\" /></figure>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-213 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:67%\">\n<div class=\"wp-block-image\"><figure class=\"alignright size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-03.jpg\" alt=\"The sun shining over a ridge leading down into the shore. In the distance, a car drives down a road.\" /></figure></div>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33%\">\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man&#8217;s condition is a solution in hieroglyphic to those inquiries he would put.</p>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:77:\"Three columns with images and text, with vertical spacing for an offset look.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:86:\"core/column,core/columns,core/group,core/heading,core/image,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"columns\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:3990:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"background\":\"#f8f4e4\"}}} -->\n<div class=\"wp-block-group alignfull has-background\" style=\"background-color:#f8f4e4\"><!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":6,\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h6 class=\"has-text-color\" id=\"ecosystem\" style=\"color:#000000\">ECOSYSTEM</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.1\",\"fontSize\":\"5vw\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:5vw;line-height:1.1\"><strong>Positive growth.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"5px\"} -->\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"33.38%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.38%\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\"><em>Nature</em>, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf.&nbsp;<em>Art</em>&nbsp;is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture. But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33%\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-01.jpg\" alt=\"The sun setting through a dense forest.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33.62%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.62%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-02.jpg\" alt=\"Wind turbines standing on a grassy plain, against a blue sky.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"67%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:67%\"><!-- wp:image {\"align\":\"right\",\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignright size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-03.jpg\" alt=\"The sun shining over a ridge leading down into the shore. In the distance, a car drives down a road.\" /></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"33%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:33%\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man\'s condition is a solution in hieroglyphic to those inquiries he would put.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\";}i:36;O:8:\"stdClass\":7:{s:2:\"id\";i:197;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:39:\"Two columns of text with offset heading\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2240:\"\n<div class=\"wp-block-group alignfull has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"background-color:#f2f0e9\">\n<div style=\"height:70px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center is-layout-flex wp-container-217 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:50%\">\n<p class=\"has-text-color\" style=\"color:#000000;font-size:30px;line-height:1.1\"><strong>Oceanic Inspiration</strong></p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:50%\">\n<hr class=\"wp-block-separator has-text-color has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-221 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">Winding veils round their heads, the women walked on deck. They were now moving steadily down the river, passing the dark shapes of ships at anchor, and London was a swarm of lights with a pale yellow canopy drooping above it. There were the lights of the great theatres, the lights of the long streets, lights that indicated huge squares of domestic comfort, lights that hung high in air.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">No darkness would ever settle upon those lamps, as no darkness had settled upon them for hundreds of years. It seemed dreadful that the town should blaze for ever in the same spot; dreadful at least to people going away to adventure upon the sea, and beholding it as a circumscribed mound, eternally burnt, eternally scarred. From the deck of the ship the great city appeared a crouched and cowardly figure, a sedentary miser.</p>\n</div>\n</div>\n\n\n\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:43:\"Two columns of text with an offset heading.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:77:\"core/column,core/columns,core/group,core/paragraph,core/separator,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"columns\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2837:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"background\":\"#f2f0e9\"}}} -->\n<div class=\"wp-block-group alignfull has-background\" style=\"background-color:#f2f0e9\"><!-- wp:spacer {\"height\":70} -->\n<div style=\"height:70px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.1\",\"fontSize\":\"30px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:30px;line-height:1.1\"><strong>Oceanic Inspiration</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:separator {\"customColor\":\"#000000\",\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator has-text-color has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n<!-- /wp:separator --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">Winding veils round their heads, the women walked on deck. They were now moving steadily down the river, passing the dark shapes of ships at anchor, and London was a swarm of lights with a pale yellow canopy drooping above it. There were the lights of the great theatres, the lights of the long streets, lights that indicated huge squares of domestic comfort, lights that hung high in air.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">No darkness would ever settle upon those lamps, as no darkness had settled upon them for hundreds of years. It seemed dreadful that the town should blaze for ever in the same spot; dreadful at least to people going away to adventure upon the sea, and beholding it as a circumscribed mound, eternally burnt, eternally scarred. From the deck of the ship the great city appeared a crouched and cowardly figure, a sedentary miser.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":40} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";}i:37;O:8:\"stdClass\":7:{s:2:\"id\";i:196;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:41:\"Media and text in a full height container\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1445:\"\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#ffffff\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center is-image-fill\" style=\"grid-template-columns:56% auto\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://s.w.org/images/core/5.8/soil.jpg);background-position:50% 50%\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/soil.jpg\" alt=\"Close-up of dried, cracked earth.\" /></figure><div class=\"wp-block-media-text__content\">\n<h2 class=\"wp-block-heading has-text-color\" style=\"color:#000000;font-size:32px\"><strong>What&#8217;s the problem?</strong></h2>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">Trees are more important today than ever before. More than 10,000 products are reportedly made from trees. Through chemistry, the humble woodpile is yielding chemicals, plastics and fabrics that were beyond comprehension when an axe first felled a Texas tree.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Learn more</a></div>\n</div>\n</div></div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:77:\"Media and text block with image to the left and text and button to the right.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:79:\"core/button,core/buttons,core/cover,core/heading,core/media-text,core/paragraph\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2015:\"<!-- wp:cover {\"customOverlayColor\":\"#ffffff\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#ffffff\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:media-text {\"mediaLink\":\"https://s.w.org/images/core/5.8/soil.jpg\",\"mediaType\":\"image\",\"mediaWidth\":56,\"verticalAlignment\":\"center\",\"imageFill\":true} -->\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center is-image-fill\" style=\"grid-template-columns:56% auto\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://s.w.org/images/core/5.8/soil.jpg);background-position:50% 50%\"><img src=\"https://s.w.org/images/core/5.8/soil.jpg\" alt=\"Close-up of dried, cracked earth.\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"32px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<h2 class=\"wp-block-heading has-text-color\" style=\"color:#000000;font-size:32px\"><strong>What\'s the problem?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"17px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">Trees are more important today than ever before. More than 10,000 products are reportedly made from trees. Through chemistry, the humble woodpile is yielding chemicals, plastics and fabrics that were beyond comprehension when an axe first felled a Texas tree.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Learn more</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div></div>\n<!-- /wp:media-text --></div></div>\n<!-- /wp:cover -->\";}i:38;O:8:\"stdClass\":7:{s:2:\"id\";i:195;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:38:\"Media and text with image on the right\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:719:\"\n<div class=\"wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center is-style-default\" style=\"grid-template-columns:auto 56%\"><div class=\"wp-block-media-text__content\">\n<h2 class=\"wp-block-heading has-text-color\" style=\"color:#000000\"><strong>Shore with Blue Sea</strong></h2>\n\n\n\n<p class=\"has-text-color\" style=\"color:#636363;font-size:17px;line-height:1.1\">Eleanor Harris&nbsp;(American, 1901-1942)</p>\n</div><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/art-02.jpg\" alt=\"A green and brown rural landscape leading into a bright blue ocean and slightly cloudy sky, done in oil paints.\" /></figure></div>\n\n\n\n<p></p>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:66:\"Media and text block with image to the right and text to the left.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:43:\"core/heading,core/media-text,core/paragraph\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1155:\"<!-- wp:media-text {\"align\":\"full\",\"mediaPosition\":\"right\",\"mediaLink\":\"#\",\"mediaType\":\"image\",\"mediaWidth\":56,\"verticalAlignment\":\"center\",\"className\":\"is-style-default\"} -->\n<div class=\"wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center is-style-default\" style=\"grid-template-columns:auto 56%\"><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h2 class=\"wp-block-heading has-text-color\" style=\"color:#000000\"><strong>Shore with Blue Sea</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.1\",\"fontSize\":\"17px\"},\"color\":{\"text\":\"#636363\"}}} -->\n<p class=\"has-text-color\" style=\"color:#636363;font-size:17px;line-height:1.1\">Eleanor Harris&nbsp;(American, 1901-1942)</p>\n<!-- /wp:paragraph --></div><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/images/core/5.8/art-02.jpg\" alt=\"A green and brown rural landscape leading into a bright blue ocean and slightly cloudy sky, done in oil paints.\" /></figure></div>\n<!-- /wp:media-text -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\";}i:39;O:8:\"stdClass\":7:{s:2:\"id\";i:192;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Media and text with image on the left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:554:\"\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-04.jpg\" alt=\"Close-up, abstract view of architecture.\" /></figure><div class=\"wp-block-media-text__content\">\n<h3 class=\"wp-block-heading has-text-align-center has-text-color\" style=\"color:#000000\"><strong>Open Spaces</strong></h3>\n\n\n\n<p class=\"has-text-align-center has-extra-small-font-size\"><a href=\"#\">See case study ↗</a></p>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:66:\"Media and text block with image to the left and text to the right.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:43:\"core/heading,core/media-text,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:844:\"<!-- wp:media-text {\"align\":\"full\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/images/core/5.8/architecture-04.jpg\" alt=\"Close-up, abstract view of architecture.\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h3 class=\"wp-block-heading has-text-align-center has-text-color\" style=\"color:#000000\"><strong>Open Spaces</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-align-center has-extra-small-font-size\"><a href=\"#\">See case study ↗</a></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\";}i:40;O:8:\"stdClass\":7:{s:2:\"id\";i:186;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:35:\"Large header with text and a button\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1508:\"\n<div class=\"wp-block-cover alignfull has-parallax\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-40 has-background-dim\" style=\"background-color:#000000\"></span><div role=\"img\" class=\"wp-block-cover__image-background has-parallax\" style=\"background-position:50% 50%;background-image:url(https://s.w.org/images/core/5.8/art-01.jpg)\"></div><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<h2 class=\"wp-block-heading alignwide has-white-color has-text-color\" style=\"font-size:48px;line-height:1.2\"><strong><em>Overseas:</em></strong><br><strong><em>1500 — 1960</em></strong></h2>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-228 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:60%\">\n<p class=\"has-text-color\" style=\"color:#ffffff\">An exhibition about the different representations of the ocean throughout time, between the sixteenth and the twentieth century. Taking place in our Open Room in <em>Floor 2</em>.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#ffffff;background-color:#000000\">Visit</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:62:\"Large header with background image and text and button on top.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:88:\"core/button,core/buttons,core/column,core/columns,core/cover,core/heading,core/paragraph\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2053:\"<!-- wp:cover {\"url\":\"https://s.w.org/images/core/5.8/art-01.jpg\",\"hasParallax\":true,\"dimRatio\":40,\"customOverlayColor\":\"#000000\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull has-parallax\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-40 has-background-dim\" style=\"background-color:#000000\"></span><div role=\"img\" class=\"wp-block-cover__image-background has-parallax\" style=\"background-position:50% 50%;background-image:url(https://s.w.org/images/core/5.8/art-01.jpg)\"></div><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"48px\",\"lineHeight\":\"1.2\"}},\"className\":\"alignwide has-white-color has-text-color\"} -->\n<h2 class=\"wp-block-heading alignwide has-white-color has-text-color\" style=\"font-size:48px;line-height:1.2\"><strong><em>Overseas:</em></strong><br><strong><em>1500 — 1960</em></strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"60%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:60%\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#ffffff\"}}} -->\n<p class=\"has-text-color\" style=\"color:#ffffff\">An exhibition about the different representations of the ocean throughout time, between the sixteenth and the twentieth century. Taking place in our Open Room in <em>Floor 2</em>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"color\":{\"text\":\"#ffffff\",\"background\":\"#000000\"}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#ffffff;background-color:#000000\">Visit</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div></div>\n<!-- /wp:cover -->\";}i:41;O:8:\"stdClass\":7:{s:2:\"id\";i:185;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:35:\"Large header with left-aligned text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1321:\"\n<div class=\"wp-block-cover alignfull\" style=\"min-height:800px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://s.w.org/images/core/5.8/forest.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<h2 class=\"wp-block-heading alignwide has-text-color\" style=\"color:#ffe074;font-size:64px\">Forest.</h2>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-232 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:55%\">\n<div style=\"height:330px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-color\" style=\"color:#ffe074;font-size:12px;line-height:1.3\"><em>Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.</em></p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:29:\"Cover image with quote on top\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:75:\"core/column,core/columns,core/cover,core/heading,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1698:\"<!-- wp:cover {\"url\":\"https://s.w.org/images/core/5.8/forest.jpg\",\"dimRatio\":60,\"minHeight\":800,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\" style=\"min-height:800px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\"></span><img class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://s.w.org/images/core/5.8/forest.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"align\":\"wide\",\"style\":{\"color\":{\"text\":\"#ffe074\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<h2 class=\"wp-block-heading alignwide has-text-color\" style=\"color:#ffe074;font-size:64px\">Forest.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"55%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:55%\"><!-- wp:spacer {\"height\":\"330px\"} -->\n<div style=\"height:330px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#ffe074\"},\"typography\":{\"lineHeight\":\"1.3\",\"fontSize\":\"12px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#ffe074;font-size:12px;line-height:1.3\"><em>Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div></div>\n<!-- /wp:cover -->\";}i:42;O:8:\"stdClass\":7:{s:2:\"id\";i:184;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:7:\"Heading\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:526:\"\n<h2 class=\"alignwide wp-block-heading\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">We&#8217;re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.</h2>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:17:\"large text, title\";s:16:\"wpop_description\";s:12:\"Heading text\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:1:{i:0;s:12:\"core/heading\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:12:\"core/heading\";}s:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:621:\"<!-- wp:heading {\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"48px\",\"lineHeight\":\"1.1\"}}} -->\n<h2 class=\"alignwide\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">We\'re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.</h2>\n<!-- /wp:heading -->\";}i:43;O:8:\"stdClass\":7:{s:2:\"id\";i:27;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:5:\"Quote\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:688:\"\n<hr class=\"wp-block-separator has-css-opacity is-style-default\" />\n\n\n\n<figure class=\"wp-block-image aligncenter size-large is-resized is-style-rounded\"><img decoding=\"async\" loading=\"lazy\" src=\"https://s.w.org/images/core/5.8/portrait.jpg\" alt=\"A side profile of a woman in a russet-colored turtleneck and white bag. She looks up with her eyes closed.\" width=\"150\" height=\"150\" /></figure>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center is-style-large\">\n<p>&#8220;Contributing makes me feel like I&#8217;m being useful to the planet.&#8221;</p>\n<cite>— Anna Wong, <em>Volunteer</em></cite></blockquote>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-default\" />\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:10:\"core/quote\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:51:\"core/image,core/paragraph,core/quote,core/separator\";}s:14:\"category_slugs\";a:2:{i:0;s:12:\"testimonials\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1102:\"<!-- wp:separator {\"opacity\":\"css\",\"className\":\"is-style-default\"} -->\n<hr class=\"wp-block-separator has-css-opacity is-style-default\" />\n<!-- /wp:separator -->\n\n<!-- wp:image {\"align\":\"center\",\"width\":150,\"height\":150,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-rounded\"} -->\n<figure class=\"wp-block-image aligncenter size-large is-resized is-style-rounded\"><img src=\"https://s.w.org/images/core/5.8/portrait.jpg\" alt=\"A side profile of a woman in a russet-colored turtleneck and white bag. She looks up with her eyes closed.\" width=\"150\" height=\"150\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:quote {\"align\":\"center\",\"className\":\"is-style-large\"} -->\n<blockquote class=\"wp-block-quote has-text-align-center is-style-large\"><!-- wp:paragraph -->\n<p>\"Contributing makes me feel like I\'m being useful to the planet.\"</p>\n<!-- /wp:paragraph --><cite>— Anna Wong, <em>Volunteer</em></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:separator {\"opacity\":\"css\",\"className\":\"is-style-default\"} -->\n<hr class=\"wp-block-separator has-css-opacity is-style-default\" />\n<!-- /wp:separator -->\";}i:44;O:8:\"stdClass\":7:{s:2:\"id\";i:29;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:29:\"Two columns of text and title\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1518:\"\n<h2 class=\"wp-block-heading\" style=\"font-size:38px;line-height:1.4\"><strong>The voyage had begun, and had begun happily with a soft blue sky, and a calm sea.</strong></h2>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-236 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p style=\"font-size:18px\">They followed her on to the deck. All the smoke and the houses had disappeared, and the ship was out in a wide space of sea very fresh and clear though pale in the early light. They had left London sitting on its mud. A very thin line of shadow tapered on the horizon, scarcely thick enough to stand the burden of Paris, which nevertheless rested upon it. They were free of roads, free of mankind, and the same exhilaration at their freedom ran through them all.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p style=\"font-size:18px\">The ship was making her way steadily through small waves which slapped her and then fizzled like effervescing water, leaving a little border of bubbles and foam on either side. The colourless October sky above was thinly clouded as if by the trail of wood-fire smoke, and the air was wonderfully salt and brisk. Indeed it was too cold to stand still. Mrs. Ambrose drew her arm within her husband&#8217;s, and as they moved off it could be seen from the way in which her sloping cheek turned up to his that she had something private to communicate.</p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:47:\"Two columns of text preceded by a long heading.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:52:\"core/column,core/columns,core/heading,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"columns\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1711:\"<!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":38,\"lineHeight\":\"1.4\"}}} -->\n<h2 style=\"font-size:38px;line-height:1.4\"><strong>The voyage had begun, and had begun happily with a soft blue sky, and a calm sea.</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":18}}} -->\n<p style=\"font-size:18px\">They followed her on to the deck. All the smoke and the houses had disappeared, and the ship was out in a wide space of sea very fresh and clear though pale in the early light. They had left London sitting on its mud. A very thin line of shadow tapered on the horizon, scarcely thick enough to stand the burden of Paris, which nevertheless rested upon it. They were free of roads, free of mankind, and the same exhilaration at their freedom ran through them all.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":18}}} -->\n<p style=\"font-size:18px\">The ship was making her way steadily through small waves which slapped her and then fizzled like effervescing water, leaving a little border of bubbles and foam on either side. The colourless October sky above was thinly clouded as if by the trail of wood-fire smoke, and the air was wonderfully salt and brisk. Indeed it was too cold to stand still. Mrs. Ambrose drew her arm within her husband\'s, and as they moved off it could be seen from the way in which her sloping cheek turned up to his that she had something private to communicate.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:45;O:8:\"stdClass\":7:{s:2:\"id\";i:19;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:23:\"Two images side by side\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:572:\"\n<figure class=\"wp-block-gallery alignwide has-nested-images columns-default is-cropped wp-block-gallery-237 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/nature-above-01.jpg\" alt=\"An aerial view of waves crashing against a shore.\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/nature-above-02.jpg\" alt=\"An aerial view of a field. A road runs through the upper right corner.\" /></figure>\n</figure>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:41:\"An image gallery with two example images.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:23:\"core/gallery,core/image\";}s:14:\"category_slugs\";a:1:{i:0;s:7:\"gallery\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:704:\"<!-- wp:gallery {\"linkTo\":\"none\",\"align\":\"wide\"} -->\n<figure class=\"wp-block-gallery alignwide has-nested-images columns-default is-cropped\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/nature-above-01.jpg\" alt=\"An aerial view of waves crashing against a shore.\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/nature-above-02.jpg\" alt=\"An aerial view of a field. A road runs through the upper right corner.\" /></figure>\n<!-- /wp:image --></figure>\n<!-- /wp:gallery -->\";}}','no'),(396314,'_site_transient_timeout_theme_roots','1687375120','no'),(396315,'_site_transient_theme_roots','a:6:{s:4:\"crio\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(394044,'_site_transient_timeout_php_check_990bfacb848fa087bcfc06850f5e4447','1687731847','no'),(394045,'_site_transient_php_check_990bfacb848fa087bcfc06850f5e4447','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(396341,'_site_transient_timeout_community-events-3dfc744cf897681b953951ec18dc5194','1687416731','no'),(396342,'_site_transient_community-events-3dfc744cf897681b953951ec18dc5194','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"45.132.115.0\";}s:6:\"events\";a:2:{i:0;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:19:\"Ask Elayna Anything\";s:3:\"url\";s:63:\"https://www.meetup.com/denton-wordpress-meetup/events/294028098\";s:6:\"meetup\";s:23:\"Denton WordPress Meetup\";s:10:\"meetup_url\";s:47:\"https://www.meetup.com/Denton-WordPress-Meetup/\";s:4:\"date\";s:19:\"2023-06-23 19:00:00\";s:8:\"end_date\";s:19:\"2023-06-23 20:30:00\";s:20:\"start_unix_timestamp\";i:1687564800;s:18:\"end_unix_timestamp\";i:1687570200;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:33.219999999999998863131622783839702606201171875;s:9:\"longitude\";d:-97.1400000000000005684341886080801486968994140625;}}i:1;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:20:\"WordPress Roundtable\";s:3:\"url\";s:70:\"https://www.meetup.com/wordpress-midcities-user-group/events/293373525\";s:6:\"meetup\";s:30:\"WordPress Midcities User Group\";s:10:\"meetup_url\";s:54:\"https://www.meetup.com/WordPress-Midcities-User-Group/\";s:4:\"date\";s:19:\"2023-07-01 13:00:00\";s:8:\"end_date\";s:19:\"2023-07-01 15:00:00\";s:20:\"start_unix_timestamp\";i:1688234400;s:18:\"end_unix_timestamp\";i:1688241600;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:32.8599999999999994315658113919198513031005859375;s:9:\"longitude\";d:-97.1400000000000005684341886080801486968994140625;}}}}','no'),(395587,'_transient_timeout_boldgrid_backup_system_zip_test','1687382976','no'),(395588,'_transient_boldgrid_backup_system_zip_test','1','no'),(395589,'_transient_timeout_boldgrid_backup_is_functional','1687382976','no'),(395590,'_transient_boldgrid_backup_is_functional','1','no'),(396185,'_site_transient_timeout_boldgrid_backup_premium_version_data','1687388400','no'),(396180,'_site_transient_timeout_boldgrid_ppbp_version_data','1687388399','no'),(396181,'_site_transient_boldgrid_ppbp_version_data','O:8:\"stdClass\":4:{s:6:\"status\";i:200;s:7:\"message\";s:2:\"OK\";s:6:\"result\";O:8:\"stdClass\":1:{s:4:\"data\";O:8:\"stdClass\":13:{s:5:\"title\";s:29:\"Post and Page Builder Premium\";s:7:\"version\";s:5:\"1.1.1\";s:8:\"asset_id\";i:1283206;s:12:\"release_date\";s:19:\"2023-03-15 16:04:19\";s:19:\"requires_wp_version\";s:3:\"4.7\";s:17:\"tested_wp_version\";s:3:\"6.2\";s:8:\"sections\";s:8089:\"{\"description\":\"<h4>What is the Post and Page Builder by BoldGrid?<\\/h4>\\n\\n<p>The Post and Page Builder is an intuitive drag and drop editor plugin and the easiest way to create and edit pages for any theme. Whether you are new to WordPress or consider yourself a pro, BoldGrid solutions will make your WordPress life better. Stop dealing with site-breaking shortcodes and theme restricted editors. You are going to love just how fast and easily you can create beautiful websites now.<\\/p>\\n\\n<p>Try out the <a href=\\\"https:\\/\\/www.boldgrid.com\\/central\\/get-it-now?redirect_url=wp-admin%2Fpost-new.php%3Fpost_type%3Dpage&amp;plugins=post-and-page-builder\\\">BoldGrid Demo<\\/a> on Cloud WordPress to see for yourself!<\\/p>\\n\\n<p>[youtube https:\\/\\/youtu.be\\/QoIb7OhV9ys?rel=0]<\\/p>\\n\\n<h4>Features<\\/h4>\\n\\n<ul>\\n<li><strong>Drag and Drop Editing<\\/strong> - Create simple or complex layouts with our unique editing experience<\\/li>\\n<li><strong>BoldGrid Blocks<\\/strong> - Hundreds of professional layout designs to work from<\\/li>\\n<li><strong>100% Mobile-friendly<\\/strong> - Responsive layouts and controls to change the design per device<\\/li>\\n<li><strong>Google Fonts<\\/strong> - Change font family, font size, font color, letter spacing, line height and more<\\/li>\\n<li><strong>Theme Compatibility<\\/strong> - Our WordPress Page Builder is designed to work with any WordPress Theme<\\/li>\\n<li><strong>Custom Backgrounds<\\/strong> - Add background images, gradient backgrounds, patterns, overlays, and background colors<\\/li>\\n<li><strong>Fast and Free Support<\\/strong> - Growing Community and knowledge base<\\/li>\\n<li><strong>Animations<\\/strong> - Add effects as the user scrolls down the page with Animate.css or background parallax scroll effects<\\/li>\\n<li><strong>Advanced Controls<\\/strong> - Add margin, padding, box shadows, borders, alignment and more to almost any element<\\/li>\\n<li><strong>Bootstrap Grid<\\/strong> - Drag and drop controls for bootstrap rows and columns elements<\\/li>\\n<li><strong>Add Custom CSS Classes<\\/strong> - Complete control over any element<\\/li>\\n<li><strong>Clean, Simple Markup<\\/strong> - Easily create a professionally coded template without experience<\\/li>\\n<li><strong>Google Maps<\\/strong> - Embed and customize maps into your post or page<\\/li>\\n<li><strong>Web Components<\\/strong> - High quality reusable and customizable HTML elements<\\/li>\\n<li><strong>Font Awesome Icons<\\/strong> - Insert and customize any Font Awesome icons<\\/li>\\n<li><strong>CSS Grid<\\/strong> - Full width, column and row based layouts<\\/li>\\n<li><strong>Image Editing<\\/strong> - Apply image filters and automatically crop images<\\/li>\\n<li><strong>Button Designs<\\/strong> - Fully customizable button designs<\\/li>\\n<li><strong>Custom Post Types<\\/strong> - Save and reuse full page layouts or BoldGrid Block designs<\\/li>\\n<li><strong>WordPress Editor Integration<\\/strong> - Integrated into TinyMCE so you can keep the same workflow<\\/li>\\n<li><strong>No Need for Shortcodes!<\\/strong> - Faster page loads by saving your custom HTML5 elements<\\/li>\\n<\\/ul>\\n\\n<p>Additional Features when used with other BoldGrid plugins:<\\/p>\\n\\n<ul>\\n<li>Dozens of free layout templates<\\/li>\\n<li>Integrated with professional image banks<\\/li>\\n<li>Contact Forms<\\/li>\\n<li>On-page SEO recommendations for targeted search phrase<\\/li>\\n<\\/ul>\\n\\n<p>Visit our website to learn more about additional <a href=\\\"https:\\/\\/www.boldgrid.com\\/wordpress-plugins\\/\\\">BoldGrid plugins<\\/a> to further improve your WordPress experience!<\\/p>\\n\\n<h4>People Love BoldGrid<\\/h4>\\n\\n<p>\\\"It\'s really the perfect starting point for just about any web project, allowing users to get their site up and running in very short time. \\\" - Digital.com<\\/p>\\n\\n<p>\\\"BoldGrid is a great extension to WordPress that will make my job a lot easier and faster while creating custom layouts and pages.\\\" - Webhostingmedia.net<\\/p>\\n\\n<p>\\\"Well, I have seen many site builders but this is the only one that provides so many features.\\\" - Woblogger.com<\\/p>\\n\\n<h4>A Post and Page Builder That Works With Your Theme and Plugins<\\/h4>\\n\\n<p>The Post and Page Builder by BoldGrid is designed to work with almost any WordPress theme. Add it to your existing website today, or try a BoldGrid theme for your new website. Alternatively, consider upgrading and using the powerful BoldGrid framework theme (available in Premium subscription) as an excellent time saver for agencies and developers.<\\/p>\\n\\n<h4>A Post and Page Builder Stuffed With Pre-Designed Templates &amp; Blocks<\\/h4>\\n\\n<p>Create layouts and pages faster and easier than ever with Blocks by BoldGrid. Blocks are pre-built page sections consisting of various layouts of rows and columns prepopulated with content that can be edited visually or with HTML and CSS. Blocks utilize a wide variety of content that can be completely customized to fit your needs such as icons, buttons, free and premium images, font packs, and more.<\\/p>\\n\\n<h4>A Post and Page Builder That Is Faster Than The Rest<\\/h4>\\n\\n<p>The Post and Page Builder by BoldGrid is designed to create pages that load fast. BoldGrid ditches shortcodes in favor of clean markup that can be served quickly. That also means BoldGrid code is easy to assess and customize.<\\/p>\\n\\n<h4>Coming Soon \\/ Maintenance Page<\\/h4>\\n\\n<p>Great for making \\\"under construction\\\" or \\\"coming soon\\\" pages. You can create a simple page within minutes by using free professionally designed WordPress Blocks.<\\/p>\\n\\n<h4>Bootstrap WYSIWYG Post &amp; Page Builder for WordPress<\\/h4>\\n\\n<p>Our drag and drop system is built on the Bootstrap Grid. You can drag columns, rows, and containers around your pages to make quick updates to pages.  Advanced CSS controls allow you to make pixel perfect designs.<\\/p>\\n\\n<h4>Create Custom Color Palette<\\/h4>\\n\\n<p>Choose your brand\'s colors and we\'ll help your design stay unified. Our unique color palette system is built with SASS and allows you to change all the colors on your site. You don\'t have to choose from a few presets anymore!<\\/p>\\n\",\"installation\":\"<h4>Minimum Requirements<\\/h4>\\n\\n<ul>\\n<li>PHP version 5.4 or greater<\\/li>\\n<li>WordPress 4.4 or greater<\\/li>\\n<\\/ul>\\n\\n<h4>Manually<\\/h4>\\n\\n<ol>\\n<li>Upload the entire post-and-page-builder folder to the \\/wp-content\\/plugins\\/ directory.<\\/li>\\n<li>Activate the plugin through the Plugins menu in WordPress.<\\/li>\\n<\\/ol>\\n\\n<p>You will find a \'Post and Page Builder\' menu in your WordPress admin panel and find most features within the\\nWordPress Editor.<\\/p>\\n\",\"changelog\":\"<h4>1.1.1<\\/h4>\\n\\n<p>Release date: March 15, 2023<\\/p>\\n\\n<ul>\\n<li>HotFix: Fixed missing class method in 1.1.0 release.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.0<\\/h4>\\n\\n<p>Release date: March 14, 2023<\\/p>\\n\\n<ul>\\n<li>New Feature: Added a new \\\"Tabs\\\" component to allow for adding and customizing tabbed content <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/post-and-page-builder-premium\\/issues\\/27\\\">#27<\\/a><\\/li>\\n<\\/ul>\\n\\n<h4>1.0.6<\\/h4>\\n\\n<p>Release date: April 26, 2022<\\/p>\\n\\n<ul>\\n<li>Fix: Slider Navigation Buttons are transparent <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/post-and-page-builder-premium\\/issues\\/7\\\">#7<\\/a><\\/li>\\n<\\/ul>\\n\\n<h4>1.0.5<\\/h4>\\n\\n<p>Release date: December 8th, 2020<\\/p>\\n\\n<ul>\\n<li>Fix: Compatibility issues with WordPress 5.6<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.4<\\/h4>\\n\\n<p>Release date: November 11th, 2019<\\/p>\\n\\n<ul>\\n<li>Fix: Order posts by date instead of id.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.3<\\/h4>\\n\\n<p>Release date: October 30th, 2019<\\/p>\\n\\n<ul>\\n<li>Update: Optimizing build files.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.2<\\/h4>\\n\\n<p>Release date: December 5th, 2018<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixed updating plugin via ajax<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.1<\\/h4>\\n\\n<p>Release Date: December 4th, 2018<\\/p>\\n\\n<ul>\\n<li>Bug Fix: Fixing post excerpt wrapping element<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.0<\\/h4>\\n\\n<p>Release Date: October 16th, 2018<\\/p>\\n\\n<ul>\\n<li>New feature: Slider Components<\\/li>\\n<li>New feature: Post List Widget<\\/li>\\n<li>New feature: Single Post Widget<\\/li>\\n<\\/ul>\\n\"}\";s:7:\"siteurl\";s:24:\"http://www.boldgrid.com/\";s:13:\"compatibility\";s:14031:\"{\"6.1.1\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"6.1\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"6.0.3\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"6.0.2\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"6.0.1\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"6.0\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.9.5\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.9.4\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.9.3\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.9.2\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.9.1\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.9\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.8.6\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.8.5\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.8.4\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.8.3\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.8.2\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.8.1\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.8\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.7.8\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.7.7\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.7.6\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.7.5\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.7.4\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.7.3\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.7.2\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.7.1\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.7\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.6.9\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.6.10\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.6.1\":{\"1.0.5\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.6\":{\"1.0.5\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.5.3\":{\"1.0.5\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.5.2\":{\"1.0.5\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.5.1\":{\"1.0.5\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.5\":{\"1.0.5\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.4.4\":{\"1.0.5\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.4.3\":{\"1.0.5\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.4.2\":{\"1.0.5\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.4.1\":{\"1.0.5\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.4\":{\"1.0.5\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.3.6\":{\"1.0.5\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.3.5\":{\"1.0.5\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.3.4\":{\"1.0.5\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.3.3\":{\"1.0.5\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.3.2\":{\"1.0.5\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.3.1\":{\"1.0.5\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.3\":{\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.2.9\":{\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.2.8\":{\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.2.7\":{\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.2.6\":{\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.2.5\":{\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.2.4\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.2.3\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.2.2\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.2.1\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.2\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.1.8\":{\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.1.7\":{\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.1.6\":{\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.1.5\":{\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.1.3\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.1.2\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.1.1\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.1\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.0.7\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.0.6\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.0.5\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.0.4\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.0.3\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.0.2\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.0.1\":{\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"5.0\":{\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"4.9.9\":{\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"4.9.8\":{\"1.0.0-alpha.0\":[100,12],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"4.9.7\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"4.9.6\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"4.9.5\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"4.9.4\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"4.9.3\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"4.9.2\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"4.9.12\":{\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"4.9.11\":{\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"4.9.10\":{\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"4.9.1\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"4.9\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"4.8.7\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"4.8.6\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"4.8.5\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"4.8.4\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"4.8.3\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"4.8.2\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"4.8.1\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"4.8\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"4.7.9\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"4.7.8\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"4.7.7\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"4.7.6\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"4.7.5\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"4.7.4\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"4.7.3\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"4.7.2\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"4.7.11\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"4.7.10\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"4.7.1\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"4.7\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]},\"4.6.12\":{\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.0\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.0.5\":[100,95],\"1.0.6-rc1\":[100,95],\"1.0.6\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95]}}\";s:6:\"rating\";i:100;s:11:\"num_ratings\";i:100000;s:4:\"tags\";s:153:\"{\"boldgrid\":\"Boldgrid\",\"page builder\":\"Page builder\",\"drag and drop\":\"Drag and drop\",\"tinymce\":\"Tinymce\",\"editor\":\"Editor\",\"landing page\":\"Landing page\"}\";s:7:\"banners\";s:137:\"{\"low\":\"//ps.w.org/post-and-page-builder/assets/banner-772x250.png\",\"high\":\"//ps.w.org/post-and-page-builder/assets/banner-1544x500.png\"}\";}}s:7:\"updated\";i:1687359599;}','no'),(395845,'_site_transient_timeout_bg_license_data','1687414242','no'),(395846,'_site_transient_bg_license_data','O:8:\"stdClass\":5:{s:3:\"key\";s:64:\"tjqdVo4GZjKoOmu/P0fRRd1qEgTdgZp+ddge5pHf7a9sWCcbx8+KhshTRJzcI13I\";s:6:\"cipher\";s:11:\"AES-128-CBC\";s:2:\"iv\";s:42:\"%05%D6%161%D5+%EF%10%0F%3BS%7B%28%3C%8F%C8\";s:4:\"data\";s:556:\"oFduQqVE2fUumc239dvUsqLI+n64KcXTJZY19Gx5pTlQLOQLVQW8OxAzPTBqrnXlZfhTlYfjFi34um2o0uFyvy62MJu41DydXQ32pylBhnitq8i8okSzikQw92AY90MDH9pKxW1JtKjEQHTIxIAnXRBu7toneQJHb42bTb+mrMuxSpSZBFbQ2SIgMofD3S86vX7o/kpWWV0LIQvlYvv1qq0ozjC9zBXQaQjEXEyNlQwzEAB59Oqet0cJZRK+Y7XgNBQ9RdzyNV4PRN/7NexSaT/wtQgfFG0rzgOjM5c/mShUXvNF+siMkw47fpXij2KcZFmBCsWLYLmk4bRyszdFgIJfd1E3Wp4yLbVSwZl1KsRuHDNGE52rXvQMdYGMcDefHDowZYFrRIm45HohHuhj1u2Pd7udX9SsNkCgkAEFhrJnggQH2we1y/lZcWHAcATmRP2Ho0ncg1RtTFkr214WQUBzRJKxHSGNY/Dw5h80bId/iqhyXVhhL/3KUdAMaZimG+NkLJ14TS9jn049mrNWW1Pwi58UgFDjThlhF/6W3bQ=\";s:7:\"version\";i:2;}','no'),(390605,'_transient_timeout_kirki_remote_url_contents','1687542340','no'),(390606,'_transient_kirki_remote_url_contents','a:5:{s:32:\"8b3c59a01c9ef8626cda4ba81400b626\";s:3898:\"/* cyrillic-ext */\n@font-face {\n  font-family: \'Montserrat\';\n  font-style: normal;\n  font-weight: 400;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw0aXx-p7K4GLvztg.woff) format(\'woff\');\n  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;\n}\n/* cyrillic */\n@font-face {\n  font-family: \'Montserrat\';\n  font-style: normal;\n  font-weight: 400;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw9aXx-p7K4GLvztg.woff) format(\'woff\');\n  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;\n}\n/* vietnamese */\n@font-face {\n  font-family: \'Montserrat\';\n  font-style: normal;\n  font-weight: 400;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw2aXx-p7K4GLvztg.woff) format(\'woff\');\n  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;\n}\n/* latin-ext */\n@font-face {\n  font-family: \'Montserrat\';\n  font-style: normal;\n  font-weight: 400;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw3aXx-p7K4GLvztg.woff) format(\'woff\');\n  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;\n}\n/* latin */\n@font-face {\n  font-family: \'Montserrat\';\n  font-style: normal;\n  font-weight: 400;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw5aXx-p7K4GLs.woff) format(\'woff\');\n  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;\n}\n/* cyrillic-ext */\n@font-face {\n  font-family: \'Montserrat\';\n  font-style: normal;\n  font-weight: 500;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Hw0aXx-p7K4GLvztg.woff) format(\'woff\');\n  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;\n}\n/* cyrillic */\n@font-face {\n  font-family: \'Montserrat\';\n  font-style: normal;\n  font-weight: 500;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Hw9aXx-p7K4GLvztg.woff) format(\'woff\');\n  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;\n}\n/* vietnamese */\n@font-face {\n  font-family: \'Montserrat\';\n  font-style: normal;\n  font-weight: 500;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Hw2aXx-p7K4GLvztg.woff) format(\'woff\');\n  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;\n}\n/* latin-ext */\n@font-face {\n  font-family: \'Montserrat\';\n  font-style: normal;\n  font-weight: 500;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Hw3aXx-p7K4GLvztg.woff) format(\'woff\');\n  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;\n}\n/* latin */\n@font-face {\n  font-family: \'Montserrat\';\n  font-style: normal;\n  font-weight: 500;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Hw5aXx-p7K4GLs.woff) format(\'woff\');\n  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;\n}\n\";s:32:\"a5b6bab0dde59402b6b3dbe986daff30\";s:1171:\"/* devanagari */\n@font-face {\n  font-family: \'Yantramanav\';\n  font-style: normal;\n  font-weight: 500;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN58AfvNfKBUet5Hgd64.woff) format(\'woff\');\n  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FF;\n}\n/* latin-ext */\n@font-face {\n  font-family: \'Yantramanav\';\n  font-style: normal;\n  font-weight: 500;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN58AfvNQKBUet5Hgd64.woff) format(\'woff\');\n  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;\n}\n/* latin */\n@font-face {\n  font-family: \'Yantramanav\';\n  font-style: normal;\n  font-weight: 500;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN58AfvNeKBUet5Hg.woff) format(\'woff\');\n  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;\n}\n\";s:32:\"aa64a31885bfef7fc87583f64d98aaa5\";s:1899:\"/* cyrillic-ext */\n@font-face {\n  font-family: \'Raleway\';\n  font-style: normal;\n  font-weight: 400;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCFPrcVIT9d4cydYA.woff) format(\'woff\');\n  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;\n}\n/* cyrillic */\n@font-face {\n  font-family: \'Raleway\';\n  font-style: normal;\n  font-weight: 400;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCMPrcVIT9d4cydYA.woff) format(\'woff\');\n  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;\n}\n/* vietnamese */\n@font-face {\n  font-family: \'Raleway\';\n  font-style: normal;\n  font-weight: 400;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCHPrcVIT9d4cydYA.woff) format(\'woff\');\n  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;\n}\n/* latin-ext */\n@font-face {\n  font-family: \'Raleway\';\n  font-style: normal;\n  font-weight: 400;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCGPrcVIT9d4cydYA.woff) format(\'woff\');\n  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;\n}\n/* latin */\n@font-face {\n  font-family: \'Raleway\';\n  font-style: normal;\n  font-weight: 400;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCIPrcVIT9d4cw.woff) format(\'woff\');\n  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;\n}\n\";s:32:\"57464416737d0655e047cf1ad7307b28\";s:2278:\"/* cyrillic-ext */\n@font-face {\n  font-family: \'Roboto\';\n  font-style: normal;\n  font-weight: 400;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu72xMKTU1Kvnz.woff) format(\'woff\');\n  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;\n}\n/* cyrillic */\n@font-face {\n  font-family: \'Roboto\';\n  font-style: normal;\n  font-weight: 400;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu5mxMKTU1Kvnz.woff) format(\'woff\');\n  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;\n}\n/* greek-ext */\n@font-face {\n  font-family: \'Roboto\';\n  font-style: normal;\n  font-weight: 400;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu7mxMKTU1Kvnz.woff) format(\'woff\');\n  unicode-range: U+1F00-1FFF;\n}\n/* greek */\n@font-face {\n  font-family: \'Roboto\';\n  font-style: normal;\n  font-weight: 400;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4WxMKTU1Kvnz.woff) format(\'woff\');\n  unicode-range: U+0370-03FF;\n}\n/* vietnamese */\n@font-face {\n  font-family: \'Roboto\';\n  font-style: normal;\n  font-weight: 400;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu7WxMKTU1Kvnz.woff) format(\'woff\');\n  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;\n}\n/* latin-ext */\n@font-face {\n  font-family: \'Roboto\';\n  font-style: normal;\n  font-weight: 400;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu7GxMKTU1Kvnz.woff) format(\'woff\');\n  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;\n}\n/* latin */\n@font-face {\n  font-family: \'Roboto\';\n  font-style: normal;\n  font-weight: 400;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxMKTU1Kg.woff) format(\'woff\');\n  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;\n}\n\";s:32:\"edbde679851a9da32dff52b66a4fbf0c\";s:846:\"/* latin-ext */\n@font-face {\n  font-family: \'Almendra Display\';\n  font-style: normal;\n  font-weight: 400;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/almendradisplay/v26/0FlPVOGWl1Sb4O3tETtADHRRlZhzbSbUSAWoz34zgg.woff) format(\'woff\');\n  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;\n}\n/* latin */\n@font-face {\n  font-family: \'Almendra Display\';\n  font-style: normal;\n  font-weight: 400;\n  font-display: swap;\n  src: url(https://fonts.gstatic.com/s/almendradisplay/v26/0FlPVOGWl1Sb4O3tETtADHRRlZhzbSjUSAWoz34.woff) format(\'woff\');\n  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;\n}\n\";}','no'),(396324,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1687373966;s:7:\"checked\";a:6:{s:4:\"crio\";s:6:\"2.13.3\";s:14:\"twentynineteen\";s:3:\"2.0\";s:12:\"twentytwenty\";s:3:\"1.7\";s:15:\"twentytwentyone\";s:3:\"1.3\";s:17:\"twentytwentythree\";s:3:\"1.0\";s:15:\"twentytwentytwo\";s:3:\"1.1\";}s:8:\"response\";a:6:{s:4:\"crio\";a:6:{s:5:\"theme\";s:4:\"crio\";s:11:\"new_version\";s:6:\"2.20.3\";s:3:\"url\";s:34:\"https://wordpress.org/themes/crio/\";s:7:\"package\";s:53:\"https://downloads.wordpress.org/theme/crio.2.20.3.zip\";s:8:\"requires\";s:3:\"5.5\";s:12:\"requires_php\";s:3:\"5.6\";}s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"2.5\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.2.5.zip\";s:8:\"requires\";s:5:\"4.9.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"2.2\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.2.2.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.8\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.8.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.1\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.1.zip\";s:8:\"requires\";s:3:\"6.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.4.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(396325,'_site_transient_update_plugins','O:8:\"stdClass\":6:{s:12:\"last_checked\";i:1687373969;s:8:\"response\";a:8:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:3:\"5.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/akismet.5.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=2818463\";s:2:\"1x\";s:60:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=2818463\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/akismet/assets/banner-1544x500.png?rev=2900731\";s:2:\"1x\";s:62:\"https://ps.w.org/akismet/assets/banner-772x250.png?rev=2900731\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";s:6:\"tested\";s:5:\"6.2.2\";s:12:\"requires_php\";s:6:\"5.6.20\";}s:39:\"boldgrid-easy-seo/boldgrid-easy-seo.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:31:\"w.org/plugins/boldgrid-easy-seo\";s:4:\"slug\";s:17:\"boldgrid-easy-seo\";s:6:\"plugin\";s:39:\"boldgrid-easy-seo/boldgrid-easy-seo.php\";s:11:\"new_version\";s:6:\"1.6.13\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/boldgrid-easy-seo/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/boldgrid-easy-seo.1.6.13.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/boldgrid-easy-seo/assets/icon-256x256.png?rev=1773296\";s:2:\"1x\";s:70:\"https://ps.w.org/boldgrid-easy-seo/assets/icon-128x128.png?rev=1773296\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/boldgrid-easy-seo/assets/banner-1544x500.png?rev=1773381\";s:2:\"1x\";s:72:\"https://ps.w.org/boldgrid-easy-seo/assets/banner-772x250.png?rev=1773381\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.4\";s:6:\"tested\";s:5:\"6.2.2\";s:12:\"requires_php\";s:3:\"5.3\";}s:47:\"post-and-page-builder/post-and-page-builder.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:35:\"w.org/plugins/post-and-page-builder\";s:4:\"slug\";s:21:\"post-and-page-builder\";s:6:\"plugin\";s:47:\"post-and-page-builder/post-and-page-builder.php\";s:11:\"new_version\";s:6:\"1.24.1\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/post-and-page-builder/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/post-and-page-builder.1.24.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/post-and-page-builder/assets/icon-256x256.png?rev=1768477\";s:2:\"1x\";s:74:\"https://ps.w.org/post-and-page-builder/assets/icon-128x128.png?rev=1768477\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/post-and-page-builder/assets/banner-1544x500.png?rev=1768477\";s:2:\"1x\";s:76:\"https://ps.w.org/post-and-page-builder/assets/banner-772x250.png?rev=1768477\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.7\";s:6:\"tested\";s:5:\"6.2.2\";s:12:\"requires_php\";s:3:\"5.4\";}s:35:\"boldgrid-backup/boldgrid-backup.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:29:\"w.org/plugins/boldgrid-backup\";s:4:\"slug\";s:15:\"boldgrid-backup\";s:6:\"plugin\";s:35:\"boldgrid-backup/boldgrid-backup.php\";s:11:\"new_version\";s:6:\"1.15.6\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/boldgrid-backup/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/boldgrid-backup.1.15.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/boldgrid-backup/assets/icon-256x256.png?rev=1880952\";s:2:\"1x\";s:68:\"https://ps.w.org/boldgrid-backup/assets/icon-128x128.png?rev=1880952\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/boldgrid-backup/assets/banner-1544x500.png?rev=1880952\";s:2:\"1x\";s:70:\"https://ps.w.org/boldgrid-backup/assets/banner-772x250.png?rev=1880952\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.4\";s:6:\"tested\";s:5:\"6.2.2\";s:12:\"requires_php\";s:3:\"5.4\";}s:19:\"weforms/weforms.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/weforms\";s:4:\"slug\";s:7:\"weforms\";s:6:\"plugin\";s:19:\"weforms/weforms.php\";s:11:\"new_version\";s:6:\"1.6.17\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/weforms/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/weforms.1.6.17.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/weforms/assets/icon-256x256.png?rev=1978687\";s:2:\"1x\";s:60:\"https://ps.w.org/weforms/assets/icon-128x128.png?rev=1978687\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/weforms/assets/banner-1544x500.png?rev=2243402\";s:2:\"1x\";s:62:\"https://ps.w.org/weforms/assets/banner-772x250.png?rev=2243402\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.2.2\";s:12:\"requires_php\";s:3:\"7.2\";}s:47:\"boldgrid-inspirations/boldgrid-inspirations.php\";O:8:\"stdClass\":5:{s:4:\"slug\";s:21:\"boldgrid-inspirations\";s:6:\"plugin\";s:47:\"boldgrid-inspirations/boldgrid-inspirations.php\";s:11:\"new_version\";s:5:\"2.7.5\";s:3:\"url\";s:25:\"https://www.boldgrid.com/\";s:7:\"package\";s:150:\"https://wp-assets.boldgrid.com/api/asset/get?key=8ba05fe9f17b3bd4eb3e855a84feaaa4&id=1283966&installed_plugin_version=2.7.4&installed_wp_version=6.2.2\";}s:29:\"crio-premium/crio-premium.php\";O:8:\"stdClass\":5:{s:4:\"slug\";s:12:\"crio-premium\";s:6:\"plugin\";s:29:\"crio-premium/crio-premium.php\";s:11:\"new_version\";s:6:\"1.10.1\";s:3:\"url\";s:28:\"http://www.boldgrid.com/crio\";s:7:\"package\";s:112:\"https://api.boldgrid.com/api/open/get-asset?id=1286404&installed_plugin_version=1.7.2&installed_wp_version=6.2.2\";}s:63:\"post-and-page-builder-premium/post-and-page-builder-premium.php\";O:8:\"stdClass\":5:{s:4:\"slug\";s:29:\"post-and-page-builder-premium\";s:6:\"plugin\";s:63:\"post-and-page-builder-premium/post-and-page-builder-premium.php\";s:11:\"new_version\";s:5:\"1.1.1\";s:3:\"url\";s:24:\"http://www.boldgrid.com/\";s:7:\"package\";s:112:\"https://api.boldgrid.com/api/open/get-asset?id=1283206&installed_plugin_version=1.0.6&installed_wp_version=6.2.2\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:2:{s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";O:8:\"stdClass\":6:{s:4:\"slug\";s:23:\"boldgrid-backup-premium\";s:6:\"plugin\";s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";s:11:\"new_version\";s:5:\"1.5.9\";s:6:\"tested\";s:3:\"5.8\";s:3:\"url\";s:25:\"https://www.boldgrid.com/\";s:7:\"package\";s:112:\"https://api.boldgrid.com/api/open/get-asset?id=1192077&installed_plugin_version=1.5.9&installed_wp_version=6.2.2\";}}s:7:\"checked\";a:10:{s:19:\"akismet/akismet.php\";s:5:\"5.0.1\";s:39:\"boldgrid-easy-seo/boldgrid-easy-seo.php\";s:6:\"1.6.10\";s:47:\"boldgrid-inspirations/boldgrid-inspirations.php\";s:5:\"2.7.4\";s:29:\"crio-premium/crio-premium.php\";s:5:\"1.7.2\";s:9:\"hello.php\";s:5:\"1.7.2\";s:47:\"post-and-page-builder/post-and-page-builder.php\";s:6:\"1.21.3\";s:63:\"post-and-page-builder-premium/post-and-page-builder-premium.php\";s:5:\"1.0.6\";s:35:\"boldgrid-backup/boldgrid-backup.php\";s:6:\"1.15.4\";s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";s:5:\"1.5.9\";s:19:\"weforms/weforms.php\";s:6:\"1.6.15\";}s:6:\"tested\";s:3:\"6.2\";}','no'),(396334,'_site_transient_timeout_boldgrid_available','1687374097','no'),(396335,'_site_transient_boldgrid_available','1','no'),(396336,'_site_transient_timeout_boldgrid_plugins','1687402325','no'),(396337,'_site_transient_boldgrid_plugins','O:8:\"stdClass\":2:{s:21:\"boldgrid-inspirations\";O:8:\"stdClass\":24:{s:5:\"title\";s:21:\"BoldGrid Inspirations\";s:7:\"version\";s:5:\"2.7.5\";s:8:\"asset_id\";i:1283966;s:12:\"release_date\";s:19:\"2023-03-24 17:39:34\";s:19:\"requires_wp_version\";s:3:\"4.4\";s:17:\"tested_wp_version\";s:3:\"6.2\";s:8:\"sections\";a:4:{s:11:\"description\";s:377:\"<p>BoldGrid Inspirations is an inspiration-driven plugin to assist with creating a fresh new website, or to customize an existing website.</p>\n<p>The first phase is Inspiration; the guided tool creates your base website. If you already have a website, then you can skip this step.</p>\n<p>The second phase is Customization; tools to transform your website into your vision.</p>\n\";s:12:\"installation\";s:283:\"<ol>\n<li><p>Upload the entire boldgrid-inspirations folder to the /wp-content/plugins/ directory.</p></li>\n<li><p>Activate the plugin through the Plugins menu in WordPress.</p></li>\n<li><p>You will find the Inspirations menu in your WordPress Dashboard / admin panel.</p></li>\n</ol>\n\";s:9:\"changelog\";s:43724:\"<h4>2.7.5</h4>\n<p>Release date: March 23rd, 2023</p>\n<ul>\n<li>Bug Fix: WP 6.2 - get<em>page</em>by_tlte is deprecated <a href=\"https://github.com/BoldGrid/boldgrid-inspirations/issues/173\">#173</a></li>\n<li>Update: Update Boldgrid/BGforms dependancy.</li>\n</ul>\n<h4>2.7.4</h4>\n<p>Release date: September 20th, 2022</p>\n<ul>\n<li>Bug Fix: background images in crio<em>page</em>headers are not getting replaced <a href=\"https://github.com/BoldGrid/boldgrid-inspirations/issues/155\">#155</a></li>\n<li>Bug Fix: Object of class WP_Error could not be converted to int <a href=\"https://github.com/BoldGrid/boldgrid-inspirations/issues/153\">#153</a></li>\n</ul>\n<h4>2.7.3</h4>\n<p>Release date: September 7th, 2022</p>\n<ul>\n<li>Update: Prevent hidden categories from displaying in the sidebar during inspirations process.</li>\n</ul>\n<h4>2.7.2</h4>\n<p>Release date: August 8th, 2022</p>\n<ul>\n<li>Update: Increased image download timeout to 60 seconds.</li>\n</ul>\n<h4>2.7.1</h4>\n<p>Release date: July 8th, 2022</p>\n<ul>\n<li>Update: Updated dependencies (php 7.1).</li>\n</ul>\n<h4>2.7.0</h4>\n<p>Release date: July 7th, 2022</p>\n<ul>\n<li>New feature: Logo support.</li>\n<li>New feature: Nested menus.</li>\n<li>New feature: Taxonmy per post.</li>\n<li>New feature: Custom headers.</li>\n<li>Update: Updated dependencies.</li>\n<li>Update: Remove page headers on start over.</li>\n</ul>\n<h4>2.6.5</h4>\n<p>Release date: January 25th, 2022</p>\n<ul>\n<li>Update: Several php8 fixes.</li>\n<li>Update: Automated tests run against php 5.6, 7.4, and 8.0</li>\n</ul>\n<h4>2.6.4</h4>\n<p>Release date: October 18th, 2021</p>\n<ul>\n<li>Update: Add filters to allow dev installs of Crio and Crio Premium.</li>\n</ul>\n<h4>2.6.3</h4>\n<p>Release date: June 10th, 2021</p>\n<ul>\n<li>Update: Updated the way blogs are installed via Inspirations.</li>\n<li>Update: Updated the My Inspirations page with links to theme support.</li>\n<li>Update: Updated dependencies.</li>\n</ul>\n<h4>2.6.2</h4>\n<p>Release date: April 14th, 2021</p>\n<ul>\n<li>Update: Add support for footer-menu locations</li>\n</ul>\n<h4>2.6.1</h4>\n<p>Release date: February 16th, 2021</p>\n<ul>\n<li>Update: Disable custom menu by default.</li>\n<li>Bug fix: Add \"My Inspirations\" link in case js does not redirect.</li>\n</ul>\n<h4>2.6.0</h4>\n<p>Release date: January 25th, 2021</p>\n<ul>\n<li>New feature: Theme deployments can now include theme specific plugins.</li>\n</ul>\n<h4>2.5.2</h4>\n<p>Release date: December 8th, 2020</p>\n<ul>\n<li>Bug fix: Fixed Gutenberg detection, avoid errors when adding media.</li>\n<li>Bug fix: Avoid js errors when editor screens have no ability to add media.</li>\n</ul>\n<h4>2.5.1</h4>\n<p>Release date: October 23rd, 2020</p>\n<ul>\n<li>Bug fix: Fixed \"Only variables should be passed by reference\" in class-boldgrid-inspirations-purchase-for-publish.php.</li>\n</ul>\n<h4>2.5.0</h4>\n<p>Release date: October 17th, 2020</p>\n<ul>\n<li>New feature: Invoicing and Caching options added as Inspirations features.</li>\n</ul>\n<h4>2.4.4</h4>\n<p>Release date: September 22nd, 2020</p>\n<ul>\n<li>Update: Updated dependencies.</li>\n</ul>\n<h4>2.4.3</h4>\n<p>Release date: August 11th, 2020</p>\n<ul>\n<li>Bug fix: WordPress 5.5 compatibility changes.</li>\n<li>Update: Optimized usage of set<em>staging</em>installed.</li>\n<li>Update: Optimized \"get total coin cost\".</li>\n<li>Update: Updated links in login footer</li>\n<li>Update: Updated dependencies.</li>\n</ul>\n<h4>2.4.2</h4>\n<p>Release date: June 15th, 2020</p>\n<ul>\n<li>Update: Updated dependencies.</li>\n</ul>\n<h4>2.4.1</h4>\n<p>Release date: May 29th, 2020</p>\n<ul>\n<li>Update: Updated dependencies.</li>\n</ul>\n<h4>2.4.0</h4>\n<p>Release date: May 18th, 2020</p>\n<ul>\n<li>Update: Changes needed for Crio.</li>\n<li>Bug fix: Attribution page will not show excpert.</li>\n<li>Bug fix: Fixed display / position of BoldGrid Connect image search results.</li>\n</ul>\n<h4>2.3.1</h4>\n<p>Release date: March 12th, 2020</p>\n<ul>\n<li>Bug fix: Unable to click button on email confirmation page.</li>\n<li>Update: Removed \"Add new from GridBlocks\" feature.</li>\n</ul>\n<h4>2.3.0</h4>\n<p>Release date: December 17th, 2019</p>\n<ul>\n<li>Bug fix: Added noindex to the attribution page.</li>\n<li>Update: Changed the form plugin from WPForms to weForms.</li>\n<li>Update: Updated dependencies.</li>\n</ul>\n<h4>2.2.2</h4>\n<p>Release date: November 22st, 2019</p>\n<ul>\n<li>Update: BoldGrid Backup is now Total Upkeep - updating references.</li>\n<li>Update: Updated dependency boldgrid/library to 2.10.6.</li>\n</ul>\n<h4>2.2.1</h4>\n<p>Release date: October 15th, 2019</p>\n<ul>\n<li>Update: Updated dependency boldgrid/library to 2.10.4.</li>\n</ul>\n<h4>2.2.0</h4>\n<p>Release date: September 17th, 2019</p>\n<ul>\n<li>New feature: Recommend the BoldGrid Backup plugin for users needing to transfer a site.</li>\n<li>Update: Updating dependencies</li>\n</ul>\n<h4>2.1.1</h4>\n<p>Release date: September 5th, 2019</p>\n<ul>\n<li>Update: Updating dependencies</li>\n</ul>\n<h4>2.1.0</h4>\n<p>Release date: August 29th, 2019</p>\n<ul>\n<li>Update: Removed the \"Welcome to BoldGrid\" dashboard widget.</li>\n<li>Update: Add notice to dashboard widget.</li>\n<li>Update: Remove news widget from dashboard.</li>\n</ul>\n<h4>2.0.7</h4>\n<p>Release date: August 16, 2019</p>\n<ul>\n<li>Bug fix: Fixing compact warnings</li>\n</ul>\n<h4>2.0.6</h4>\n<p>Release date: August 1st, 2019</p>\n<ul>\n<li>Update: Updated dependencies</li>\n</ul>\n<h4>2.0.5</h4>\n<p>Release date: July 25th, 2019</p>\n<ul>\n<li>Update: Added a switch for toggling branding of the login page.</li>\n<li>Update: Cleaned up logic on purchase coins page.</li>\n<li>Update: Updated dependencies</li>\n</ul>\n<h4>2.0.4</h4>\n<p>Release date: July 2nd, 2019</p>\n<ul>\n<li>Update: Replaced the BoldGrid RSS feed widget on the dashboard with one in the updated library package.</li>\n<li>Update: Updated dependencies.</li>\n</ul>\n<h4>2.0.3</h4>\n<p>Release date: May 21st, 2019</p>\n<ul>\n<li>Bug fix: Fixing \"Call to undefined method getAttribute\" error.</li>\n<li>Bug fix: Replacing deprecated filter on login: login<em>headertitle / login</em>headertext.</li>\n</ul>\n<h4>2.0.2</h4>\n<p>Release date: Apr 23nd, 2019</p>\n<ul>\n<li>Bug fix: Fixing usage of php\'s empty function for php < 5.5</li>\n</ul>\n<h4>2.0.1</h4>\n<p>Release date: Apr 19th, 2019</p>\n<ul>\n<li>Bug fix: Fixing class property declaration for php < 5.6</li>\n</ul>\n<h4>2.0.0</h4>\n<p>Release date: Apr 16th, 2019</p>\n<ul>\n<li>Update: Made translation ready. Text domain is boldgrid-inspirations.</li>\n<li>Update: Inspirations process with full screen mode and design updates.</li>\n<li>New feature: Inspirations dashboard.</li>\n<li>New feature: German translations added - de_DE.</li>\n</ul>\n<h4>1.6.5</h4>\n<p>Release date: Jan 29th, 2019</p>\n<ul>\n<li>Bug fix: Pages fail to install on Pages > Add New.</li>\n</ul>\n<h4>1.6.4</h4>\n<p>Release date: Dec 5th, 2018</p>\n<ul>\n<li>Bug fix: Unable to save \"boldgrid<em>menu</em>option\" on settings page.</li>\n<li>Bug fix: Fixed updating plugin via ajax.</li>\n</ul>\n<h4>1.6.3</h4>\n<p>Release date: Dec 4th, 2018</p>\n<ul>\n<li>Bug fix: Coin Budget help was not toggling when clicked.</li>\n</ul>\n<h4>1.6.2</h4>\n<p>Release date: Nov 26th, 2018</p>\n<ul>\n<li>Bug fix: JIRA BGINSP-33 Fixed missing build for library dependencies; Updated production build process to use composer post-autoload-dump hook.</li>\n</ul>\n<h4>1.6.1</h4>\n<p>Release date: Nov 20th, 2018</p>\n<ul>\n<li>Update: JIRA BGCONN-20 Removed update settings; have been moved to the BoldGrid Library packages.</li>\n<li>Bug fix: JIRA BGTHEME-558 Fixed conflict between tgmpa plugin installer and the BoldGrid custom update classes.</li>\n<li>Bug fix: BoldGrid Connect Search / WP 5.0 fix.</li>\n<li>Bug fix: Attribution page not being rebuilt / WP 5.0 fix.</li>\n<li>Bug fix: BoldGrid Connect Search in the Customizer / WP 5.0 fix.</li>\n<li>Bug fix: Recommended image sizes not working as expected.</li>\n</ul>\n<h4>1.6.0</h4>\n<ul>\n<li>Update: Updated BoldGrid library to version 2.4.2.</li>\n<li>New feature: JIRA BGINSP-24 Log data when there may be a connection or Ajax error.</li>\n</ul>\n<h4>1.5.8</h4>\n<ul>\n<li>Bug fix: JIRA BGINSP-16 Warnings and notices within inspiration w/ Crio theme</li>\n<li>Bug fix: JIRA BGINSP-23 Fixed issue: Connect Search may load with connection notice.</li>\n</ul>\n<h4>1.5.7</h4>\n<ul>\n<li>Update: Updated to library version 2.3.5.</li>\n</ul>\n<h4>1.5.6</h4>\n<ul>\n<li>Bug fix: JIRA BGINSP-14 Fatal in PHP >=7.1.0 when creating internal preview builds.</li>\n<li>Bug fix: JIRA WPB-3767 Prevent invalid API calls for check-version.</li>\n<li>Update: JIRA BGBKUP-180 Auto update code moved to library and removed from Inspirations.</li>\n<li>Update: JIRA WPB-3730 Updated library dependency to ^2.0.0.</li>\n<li>Update: JIRA BGINSP-3 Forcing display of Connect Key prompt admin notice on the Inspirations page, even if dismissed, until key is entered.</li>\n<li>Update: JIRA WPB-3684 Updated composer.json, due to package changes.</li>\n<li>New feature: JIRA BGCNTRL-46 Added filters for manipulating Dashboard help in trial sites.</li>\n</ul>\n<h4>1.5.5</h4>\n<ul>\n<li>Bug fix: JIRA BGSTAGE-32 Fixed staging plugin install.</li>\n</ul>\n<h4>1.5.4</h4>\n<ul>\n<li>Update: JIRA BGINSP-4 Removed admin notice recommending plugin installations.</li>\n</ul>\n<h4>1.5.3</h4>\n<ul>\n<li>New feature: JIRA WPB-3643 Ensure that deployment does not install new wporg plugins if old ones are installed.</li>\n</ul>\n<h4>1.5.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3587 Menu assignment after deployment broken in WP 4.9.</li>\n<li>Bug fix: JIRA WPB-3570 Inspirations Select button misplaced in WP 4.9.</li>\n<li>Bug fix: JIRA WPB-3593 Changes require to help Staging support new Customizer scheduler.</li>\n</ul>\n<h4>1.5.1</h4>\n<ul>\n<li>Update: Updates to library.</li>\n</ul>\n<h4>1.5</h4>\n<ul>\n<li>Update: Bump version.</li>\n</ul>\n<h4>1.4.11</h4>\n<ul>\n<li>Update: Bump version.</li>\n</ul>\n<h4>1.4.10</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3336 All and Default categories do not align.</li>\n<li>Bug fix: JIRA WPB-3337 On a fresh install, Pages - New From GridBlocks fails.</li>\n<li>Bug fix: JIRA WPB-3333 Image search only searching one provider instead of all.</li>\n<li>Bug fix: JIRA WPB-3346 Edit Image button not working for attachment.</li>\n<li>Bug fix: JIRA WPB-3387 Loading GridBlocks just spins.</li>\n<li>Update: JIRA WPB-3352 Purchase coins through BoldGrid Central.</li>\n<li>Update: JIRA WPB-3355 Add data-image-url attribute.</li>\n<li>Update: JIRA WPB-3382 More descriptive creative commons icon.</li>\n<li>Update: JIRA WPB-3384 Add License details to attachment details.</li>\n<li>Update: JIRA WPB-3383 Filter out boldgrid-gridblock-set-preview-page.</li>\n</ul>\n<h4>1.4.9</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3318 When forcing a preferred form plugin install, first check if plugin is installed before trying to activate.</li>\n<li>Bug fix: JIRA WPB-3312 Ensure activation of preferred form plugin. Added filter for preferred slug.</li>\n<li>Bug fix: JIRA WPB-3317 New page from GridBlocks not working.</li>\n<li>Update: JIRA WPB-3252 Disable \'default\' category and configure \'showcase\'.</li>\n<li>Bug fix: JIRA WPB-3332 New from gridblocks button not showing.</li>\n</ul>\n<h4>1.4.8</h4>\n<ul>\n<li>New feature: JIRA WPB-3200 Added WPForms support.</li>\n<li>Update: JIRA WPB-3292 Updated plugin URI.</li>\n<li>Update: JIRA WPB-3296 Add Inspirations as first menu item child.</li>\n<li>Bug Fix: JIRA WPB-3274 Plugins > Add New Updates fail in modals.</li>\n<li>New feature: JIRA WPB-3293 Resize images during deployment vs imgr server.</li>\n</ul>\n<h4>1.4.7</h4>\n<ul>\n<li>Update: JIRA WPB-3243 Change feedback admin notice display frequency.</li>\n<li>Update: JIRA WPB-3264 Adding twitch social media option.</li>\n<li>New Feature: Added BoldGrid Library to plugin.</li>\n</ul>\n<h4>1.4.6</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3179 Gradient style being lost during normal deployment.</li>\n<li>Bug fix: JIRA WPB-3180 Open WordPress/BoldGrid links in attribution page in new tab.</li>\n</ul>\n<h4>1.4.5</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3161 Fixed auto plugin update.</li>\n<li>Bug fix: JIRA WPB-3162 Fixed issue creating .htaccess file in deployment.</li>\n<li>Bug fix: JIRA WPB-3171 As an author, when installing a site I do not want background images to be processed.</li>\n<li>Bug fix: JIRA WPB-3176 Background gradient / url bug during deplyment.</li>\n</ul>\n<h4>1.4.4</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3151 Added check and load before using get<em>plugin</em>data() for updates.</li>\n<li>Bug fix: JIRA WPB-3141 Fixed invalid updates for BoldGrid Prime theme.</li>\n<li>Bug fix: JIRA WPB-3158 Deployment\'s gallery updates are not saved.</li>\n</ul>\n<h4>1.4.3</h4>\n<ul>\n<li>New feature: JIRA WPB-3106 As an Author, I can set background images for elements.</li>\n<li>New feature: JIRA WPB-3095 Update generic builds to display per theme channel.</li>\n</ul>\n<h4>1.4.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2745 Fixed upgrade notices displaying when activation version was not recorded.</li>\n<li>Update: JIRA WPB-3019 Updating attribution link creation.</li>\n</ul>\n<h4>1.4.1</h4>\n<ul>\n<li>New feature: JIRA WPB-3044 Automatically get Unsplash attribution.</li>\n<li>Update: JIRA WPB-3043 Updating plugin description.</li>\n</ul>\n<h4>1.4.0.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3232 Deploy Staging menu item missing.</li>\n<li>Bug fix: JIRA WPB-3233 BoldGrid Connect Search missing from new image widget.</li>\n</ul>\n<h4>1.4</h4>\n<ul>\n<li>Update: JIRA WPB-2936 Updating YouTube videos for BoldGrid Dashboard\'s new release.</li>\n<li>Bug fix: JIRA WPB-2927 Social media menu disappears.</li>\n<li>Update: JIRA WPB-2949 Configure blog using categories.</li>\n<li>Bug fix: JIRA WPB-2950 Added max height for reseller logos on login page.</li>\n<li>Bug fix: JIRA WPB-2925 Sidebar widgets don\'t match between preview and installed site.</li>\n<li>Bug fix: JIRA WPB-2951 Images in staging posts not being downloaded.</li>\n<li>Bug fix: JIRA WPB-2955 Backwards compatibility - maps taking up 200px empty space.</li>\n<li>Bug fix: JIRA WPB-2984 Attribution page 404.</li>\n</ul>\n<h4>1.3.9</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2912 Fixed issue when installing plugins from the Tools Import page.</li>\n<li>Bug fix: JIRA WPB-2916 Inspirations deploy fatal error if an old forked plugin had the original installed.</li>\n<li>Bug fix: JIRA WPB-2905 If installing via Author, do not update pages with survey data.</li>\n<li>Bug fix: JIRA WPB-2910 Unterminated entity reference bug.</li>\n<li>Update: JIRA WPB-2913 Validate email address in survey.</li>\n<li>Bug fix: JIRA WPB-2404 iframe timeout in step 2 of Inspirations.</li>\n<li>Bug fix: JIRA WPB-2173 Error deleting image and redownloading.</li>\n<li>Bug fix: JIRA WPB-2635 Start over staging affecting active site.</li>\n<li>Bug fix: JIRA WPB-2493 Publish private posts during staging deployment.</li>\n<li>Bug fix: JIRA WPB-2796 Social media urls end in /username, go to 404s.</li>\n</ul>\n<h4>1.3.8</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2892 Fixed plugin update checks for some scenarios (WP-CLI, Plesk, etc).</li>\n<li>Update: JIRA WPB-2900 Update verbiage of build coin cost.</li>\n<li>Bug fix: JIRA WPB-2901 Scroll bars not visible on preview iframe in Chrome.</li>\n<li>Bug fix: Removing CTA hooks.</li>\n</ul>\n<h4>1.3.7</h4>\n<ul>\n<li>Update: JIRA WPB-2819 Use switch instead of checkbox for Demo.</li>\n<li>Bug fix: JIRA WPB-2780 Theme screenshots opening directly, rather than within gallery.</li>\n<li>Update: JIRA WPB-2825 Adjust do not display formatting.</li>\n<li>Update: JIRA WPB-2829 Updating hook to resolve BoldGrid SEO plugin conflicts.</li>\n<li>Update: JIRA WPB-2837 Remove loading image after selecting theme in Gallery.</li>\n<li>Update: JIRA WPB-2839 Minor verbiage change for Add a blog.</li>\n<li>Update: JIRA WPB-2785 Entering words with apostrophe in it for Site title displays with a Backslash.</li>\n<li>Bug fix: JIRA WPB-2848 Customize link takes users back to Inspirations.</li>\n<li>Bug fix: JIRA WPB-2527 \'New from GridBlocks\' preview page appearing in cart.</li>\n<li>Bug fix: JIRA WPB-2862 Survey, invalid argument supplied for foreach.</li>\n<li>Bug fix: JIRA WPB-2601 Inspirations Internet Explorer/ Stuck on loading themes.</li>\n<li>Bug fix: JIRA WPB-2854 Downloading Image spinner never stops spinning.</li>\n</ul>\n<h4>1.3.6</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2772 PHP warnings on deploy in WordPress 4.3.7.</li>\n<li>Bug fix: JIRA WPB-2766 Plesk and WP-CLI were not getting private repo updates.</li>\n<li>Update: JIRA WPB-2763 Update email and address on Contact Us page.</li>\n<li>Update: JIRA WPB-2764 Remove option to add a map.</li>\n<li>Update: JIRA WPB-2765 Allow iframes for preview builds.</li>\n<li>New feature: JIRA WPB-2771 Update footer-company-details widget with survey data.</li>\n<li>New feature: JIRA WPB-2777 Add an Install sample blog checkbox.</li>\n<li>New feature: JIRA WPB-2778 Setup a blog during deployment.</li>\n<li>Bug fix: JIRA WPB-2792 Staged posts (private posts) are trashed when starting over active site.</li>\n<li>Update: JIRA WPB-2800 Ensure \'Install a blog\' works with Staging.</li>\n<li>Update: JIRA WPB-2801 Remove milestones classes.</li>\n<li>Bug fix: JIRA WPB-2779 Survey not working with Staging.</li>\n<li>Update: JIRA WPB-2805 Preview builds w & w/o blogs.</li>\n<li>New feature: JIRA WPB-2806 Add filter for Inspirations configs.</li>\n<li>Bug fix: JIRA WPB-2808 Do not request generic builds when requesting blog as well.</li>\n</ul>\n<h4>1.3.5</h4>\n<ul>\n<li>Testing: JIRA WPB-2744 Tested on WordPress 4.7.</li>\n<li>Update: JIRA WPB-2376 Filter the bgtfw contact blocks.</li>\n<li>Update: JIRA WPB-2476 Update case of Company name.</li>\n<li>Update: JIRA WPB-2747 Update Add a map verbiage.</li>\n<li>Update: JIRA WPB-2749 Add a map to my Contact page.</li>\n<li>Bug fix: JIRA WPB-2658 Fix spacing issues atop Inspirations.</li>\n<li>Bug fix: JIRA WPB-2751 Show all in the smaller view of inspirations doesn\'t work anymore.</li>\n<li>Bug fix: JIRA WPB-2757 Apostrophe and other strange characters installed via Inspirations.</li>\n<li>Bug fix: JIRA WPB-2759 DOMDocument::loadHTML(): htmlParseEntityRef: expecting \';\'.</li>\n</ul>\n<h4>1.3.4</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2696 Remove placeholders from survey.</li>\n<li>New feature: JIRA WPB-2697 Update phone numbers in widgets.</li>\n<li>New feature: JIRA WPB-2699 Use phone number entered during survey.</li>\n<li>Update: JIRA WPB-2704 Adjust format of how social media icons are saved.</li>\n<li>New feature: JIRA WPB-2705 Use survey social media items when creating menu.</li>\n<li>Update: JIRA WPB-2711 Show optional message in survey.</li>\n<li>Update: JIRA WPB-2712 Have plus sign toggle more social icons.</li>\n<li>Update: JIRA WPB-2723 Update phone in pages.</li>\n</ul>\n<h4>1.3.3</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2627 Back / next buttons should not be clickable.</li>\n<li>Bug fix: JIRA WPB-2625 Behavior of last image\'s next button in Inspirations.</li>\n</ul>\n<h4>1.3.2</h4>\n<ul>\n<li>Update: JIRA WPB-2582 Always show arrows in Inspirations gallery.</li>\n<li>Update: JIRA WPB-2583 Ensure first letter in theme\'s title attribute is capitalized.</li>\n<li>Update: JIRA WPB-2599 Add placeholder for 4th step to Inspirations.</li>\n<li>Update: JIRA WPB-2551 Duplicate images.</li>\n<li>New feature: JIRA WPB-2603 Add initial version of survey.</li>\n<li>Bug fix: JIRA WPB-2622 Inspirations - Step 4 - Go back button installs site.</li>\n</ul>\n<h4>1.3.1</h4>\n<ul>\n<li>Misc: JIRA WPB-2503 Added plugin requirements to readme.txt file.</li>\n<li>Bug fix: JIRA WPB-2539 Fix possible duplicate connection issue notice from ajax.js call.</li>\n<li>Bug fix: JIRA WPB-2558 Don\'t display feedback widget if user hasn\'t entered their key.</li>\n<li>Bug fix: JIRA WPB-2559 Don\'t allow widgets to drag into welcome box area.</li>\n<li>Bug fix: JIRA WPB-2555 Images in search results flicker.</li>\n<li>Update: JIRA WPB-2563 Convert Attribution page to use custom post type.</li>\n<li>Update: JIRA WPB-2568 Added fancybox and large previews to Inspirations.</li>\n<li>Update: JIRA WPB-2570 Milestone blogname change.</li>\n<li>Update: JIRA WPB-2574 Milestone Social Media Change.</li>\n<li>Update: JIRA WPB-2578 Milestone Contact Info Footer Change.</li>\n</ul>\n<h4>1.3</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2544 Disable \'Install\' button after clicking it.</li>\n</ul>\n<h4>1.2.13</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2531 Javascript error checking needed for mine count.</li>\n</ul>\n<h4>1.2.12</h4>\n<ul>\n<li>Update: JIRA WPB-2472 Added update notice for 1.3.</li>\n<li>Bug fix: JIRA WPB-2486 Incorrect page count on All Pages.</li>\n<li>Bug fix: JIRA WPB-2467 With staging disabled, Customize goes to \"Change Themes\".</li>\n<li>Update: JIRA WPB-2488 Remove \'Permanently delete pages instead of sending to trash\'.</li>\n<li>Update: JIRA WPB-2490 Move default option to \'install as staging\'.</li>\n<li>Update: JIRA WPB-2491 Add \'Customize > Active Theme\' navigation to Inspirations.</li>\n<li>Bug fix: JIRA WPB-2496 Require comment text in feedback form.</li>\n<li>Update: JIRA WPB-2229 Update error reporting when purchasing images.</li>\n<li>Update: JIRA WPB-2498 Change \'Company Name\' to theme name.</li>\n<li>Update: JIRA WPB-2497 Add new dashboard videos.</li>\n<li>Bug fix: JIRA WPB-2376 \'No search results\' method is not cleared in BGCS.</li>\n</ul>\n<h4>1.2.11</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2468 Switching between boldgrid admin menu and standard wp menu no longer works.</li>\n<li>Bug fix: JIRA WPB-2477 If you have an existing site non BG, no route for staging exists.</li>\n</ul>\n<h4>1.2.10</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2446 Fixed missing build id passed on site install.</li>\n<li>Bug fix: JIRA WPB-2426 Insert Gridblock button is missing.</li>\n<li>Bug fix: JIRA WPB-2443 When starting over, I get a blank page.</li>\n<li>Bug fix: JIRA WBP-2445 Inspirations is not fetching cached themes.</li>\n<li>Update: JIRA WPB-2458 Update \'Recommended\' verbiage in last step of Inspirations.</li>\n</ul>\n<h4>1.2.9</h4>\n<ul>\n<li>Misc: JIRA WPB-2420 Added EOF line breaks.</li>\n<li>Bug fix: JIRA WPB-2387 Fixed issue with AJAX theme updates and BG theme slugs duplicated in the WP repo.</li>\n<li>Bug fix: JIRA WPB-2324 Attribution should not show in 404 sitemap.</li>\n<li>Bug fix: JIRA WPB-2403 No plugins recommended still showing notice.</li>\n<li>Update: JIRA WPB-2416 Text changes for confirmation section of Inspirations.</li>\n<li>Update: JIRA WPB-2417 Add additional text to deployment success page for staging.</li>\n<li>Bug fix: JIRA WPB-2421 Message showing when it shouldn\'t - We\'ve recognized that you haven\'t installed...</li>\n<li>Bug fix: JIRA WPB-2112 BoldGrid Connect Search missing for galleries.</li>\n<li>Bug fix: JIRA WPB-2422 Fixed CSS Loading graphic animation in chrome to display properly.</li>\n<li>Bug fix: JIRA WPB-2401 Gallery not displaying correctly in Chrome && FF.</li>\n<li>Bug fix: JIRA WPB-2423 Trying to get property of non-object in ...stock-photography.php.</li>\n</ul>\n<h4>1.2.8</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2398 Error requesting free key.</li>\n<li>Bug fix: JIRA WPB-2399 Only show feedback widget to admins.</li>\n</ul>\n<h4>1.2.7</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2389 Fixed saving BoldGrid Settings.</li>\n<li>Bug fix: JIRA WPB-2388 Removed duplicate boldgrid_activate().</li>\n<li>Update: JIRA WPB-2390 Update verbiage for inspirations install success.</li>\n<li>Bug fix: JIRA WPB-2391 Hide BoldGrid Welcome Panel if key isn\'t entered yet.</li>\n<li>Bug fix: JIRA WPB-2392 If key is less than 32 char don\'t make call to validate.</li>\n<li>Bug fix: JIRA WPB-2393 Error messages should be removed when resubmitting keys.</li>\n<li>Bug fix: JIRA WPB-2394 Cursor for show/hide log should be a pointer.</li>\n<li>Update: JIRA WPB-2395 Update login page styling.</li>\n<li>Bug fix: JIRA WPB-2396 Remove staging from recommended plugin notices.</li>\n<li>Bug fix: JIRA WPB-2327 Check if framework is handling plugin recommendations before recommending.</li>\n</ul>\n<h4>1.2.6</h4>\n<ul>\n<li>Misc: JIRA WPB-2344 Updated readme.txt for Tested up to 4.6.1.</li>\n<li>Bug fix: JIRA WPB-2336 Load BoldGrid settings from the correct WP option (site/blog).</li>\n<li>Bug fix: JIRA WPB-2248 Removed \'New From GridBlocks\' button on edit submission page.</li>\n<li>Bug fix: JIRA WPB-2332 Reset scroll position on step 2 of Inspirations to top.</li>\n<li>Bug fix: JIRA WPB-2339 Remove notices from Inspirations page.</li>\n<li>Update: JIRA WPB-2208 Removed tutorials from Inspirations.</li>\n<li>Update: JIRA WPB-2359 Order \'Category Filter\' by category display order.</li>\n<li>Update: JIRA WPB-2360 Sort themes by category and then order within category.</li>\n<li>Update: JIRA WPB-2368 Read version constant from plugin file.</li>\n<li>Update: JIRA WPB-2361 Add BoldGrid Connect Search to Editor\'s background image tool.</li>\n<li>Update: JIRA WPB-2354 Preview button needs to always be visible in mobile view.</li>\n<li>Update: JIRA WPB-2355 Remove extraneous \'Preview\' button.</li>\n<li>Bug fix: JIRA WPB-2364 Inspirations not respecting theme release channel.</li>\n<li>Bug fix: JIRA WPB-2370 Color in screenshot does not match preview.</li>\n<li>Bug fix: JIRA WPB-2373 Duplicate themes in Inspirations.</li>\n<li>Bug fix: JIRA WPB-2379 Wrong budget passed when going form step 2 to step 1.</li>\n<li>Update: JIRA WPB-2380 Remove references to tutorials in deployment congrats message.</li>\n<li>Bug fix: JIRA WPB-2383 Image Search tab appears when clicking \'Add GridBlock\'.</li>\n</ul>\n<h4>1.2.5</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2325 Added wrapper to handle mb<em>convert</em>encoding() if mbstring is not loaded.</li>\n<li>Bug fix: JIRA WPB-2313 Disabled GridBlocks in network admin pages.</li>\n<li>New feature: JIRA WPB-2268 Changed to resized preview screenshots for Inspirations Design First concept.</li>\n<li>New feature: JIRA WPB-2287 Adjust device preview buttons in step 2 to behave like those in editor.</li>\n<li>New feature: JIRA WPB-2291 Auto install staging in final step if user chooses staging.</li>\n<li>Update: JIRA WPB-2290 Changed \'Install\' button to \'Next\'.</li>\n<li>Bug fix: JIRA WPB-2289 Continuously clicking category in step 1 shuffles themes.</li>\n<li>Update: JIRA WPB-2267 Added message to Inspirations when no generic themes are available.</li>\n<li>Update: JIRA WPB-2315 Added error handling for malformed ajax results for call to /api/build/get-generic.</li>\n<li>Update: JIRA WPB-2316 Add error handling for failures to fetch categories.</li>\n<li>Update: JIRA WPB-2317 Add error handling for failures to fetch pagesets.</li>\n<li>Update: JIRA WPB-2319 Check user capabilities before prompting for api key.</li>\n<li>Update: JIRA WPB-2320 Ensure user has permission to edit page before allowing download<em>and</em>insert<em>into</em>page.</li>\n<li>Update: JIRA WPB-2322 Sanitize user feedback before adding to options table.</li>\n<li>Update: JIRA WPB-2323 Allow admin notices to be dismissed per user.</li>\n<li>Update: JIRA WPB-2326 Update \'update\' class to utilize Admin Notices class.</li>\n<li>Update: JIRA WPB-2327 Check user capabilities before showing admin notices.</li>\n<li>Update: JIRA WPB-2331 Update confirmation messages.</li>\n</ul>\n<h4>1.2.4</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2269 Typo fix in Boldgrid<em>Inspirations</em>Dependency<em>Plugins::print</em>uninstalled_plugins().</li>\n<li>Bug fix: JIRA WPB-2270 New From GridBlocks became unavailable.</li>\n</ul>\n<h4>1.2.3</h4>\n<ul>\n<li>New feature: JIRA WPB-2172 For preview generic builds, added an option for identification for purges, etc.</li>\n<li>Bug fix: JIRA WPB-2263 For preview sites under multisite, set the admin email address using the network admin email address.</li>\n<li>Bug fix: JIRA WPB-2223 Reworked API key validation and connection issue notices, formatting.</li>\n<li>Misc: JIRA WPB-2256 Updated readme.txt for Tested up to: 4.6.</li>\n<li>Rework: JIRA WPB-2150 Moved API methods to a new class, formatting, and phpcs rework.</li>\n<li>Bug fix: JIRA WPB-2224 Hide the email address field when widget is loaded.</li>\n<li>Bug fix: JIRA WPB-2225 Fixed jQuery Migrate deprecated warning.</li>\n<li>Update: JIRA WPB-2245 Changed feed to pull from dashboard tag on blog.</li>\n<li>Bug fix: JIRA WPB-2265 Uncaught TypeError: IMHWPB.BaseAdmin is not a constructor.</li>\n<li>Bug fix: JIRA WBP-2236 Errors everywhere when logging in as an Editor.</li>\n<li>Bug fix: JIRA WPB-2234 Add current<em>user</em>can checks to Boldgrid<em>Inspirations->set</em>api<em>key</em>callback().</li>\n<li>Bug fix: JIRA WPB-2237 Limit ajax requests by user.</li>\n<li>Bug fix: JIRA WPB-2240 Limit printing of configs in head.</li>\n</ul>\n<h4>1.2.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2058 Added wrap class to the tutorials page.</li>\n<li>Bug fix: JIRA WPB-2184 In PHP 5.2, deactivate and die properly.</li>\n<li>New feature: Added BoldGrid news widget to dashboard.</li>\n<li>Bug fix: JIRA WPB-1994 Fixed issue with WP Theme Editor not being available.</li>\n<li>New feature: Added BoldGrid Feedback widget.</li>\n<li>Bug fix: JIRA WPB-2169 Connect Search defaults to smallest image size when no recommended sizes available.</li>\n<li>Bug fix: JIRA WPB-2192 Allow bug report to correctly show parent themes if submitted.</li>\n</ul>\n<h4>1.2.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2160 New From GridBlocks, multiple pages are installed.</li>\n<li>Update: Changed text of getting and entering connect keys.</li>\n<li>Security: JIRA WPB-2151 Disabled autocomplete for API key entry fields.</li>\n<li>Bug fix: JIRA WPB-2145 Fixing issue with theme screenshots on Chrome Ubuntu.</li>\n</ul>\n<h4>1.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2119 For asset downloads, when Imagick is loaded, set the thread limit to 1.</li>\n<li>Bug fix: JIRA WPB-2125 Fixing issue where theme was overwritten without version change.</li>\n<li>Bug fix: JIRA WPB-2104 Go back button hides all themes (Inspirations > Add Theme).</li>\n<li>Bug fix: JIRA WPB-2107 BoldGrid Connect Search overlapping footer (Dashboard > Media).</li>\n<li>Bug fix: JIRA WPB-2109 Session issues when starting over and importing active site.</li>\n<li>Bug fix: JIRA WPB-2116 Changes to the order of images in a gallery are not saving.</li>\n<li>Bug fix: JIRA WPB-2134 Staging\'s boldgrid_attribution option and \'Uninitialized string offset\' Notice.</li>\n<li>Bug fix: JIRA WPB-2135 Image not replaced in Page & Post Editor after using Connect Search.</li>\n</ul>\n<h4>1.1.8</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2058 Added wrap class to Inspirations, so admin notices are displayed at the top.</li>\n<li>Bug fix: JIRA WPB-2041 Fixed BoldGrid theme update check in WordPress 4.6.</li>\n<li>Testing: JIRA WPB-2046 Tested on WordPress 4.5.3.</li>\n<li>New feature: JIRA WPB-599 Added options for plugin and theme auto-updates via WordPress autoupdater.</li>\n<li>Update: JIRA WPB-2008 Deploy class updated to allow for is_generic flag.</li>\n<li>Bug fix: JIRA WPB-1950 Prevent a portait image from displaying atop \'Crop Image\' and \'Skip Cropping\' buttons.</li>\n</ul>\n<h4>1.1.7</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2032 Fixed issue when activating key. Added nonce to api key form.</li>\n<li>Rework: JIRA WPB-2030 Updated the \"I don\'t have an API key\" section.</li>\n<li>New feature: JIRA WPB-2029 Added TOS box to API key submission form.</li>\n<li>New feature: JIRA WPB-1905 Added capability for auto-updates of boldgrid-inspirations by API response.</li>\n<li>Bug fix: JIRA WPB-2002 Fixed theme update issue where upgrader says is up to date at times.</li>\n<li>Bug fix: JIRA WPB-2006 Pdes and Homepage not installing correctly on Inpirations Theme Only installs.</li>\n</ul>\n<h4>1.1.6</h4>\n<ul>\n<li>New feature: JIRA WPB-1839 Users can now change their theme release channel.</li>\n<li>Security fix: JIRA WPB-1977 Validate nonce for feedback form diagnostic data callback and form submit.</li>\n<li>Bug fix: JIRA WPB-1955 Fatal error: Class \'Boldgrid<em>Staging</em>Plugin\' not found.</li>\n</ul>\n<h4>1.1.5</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1914 Staged image used on Active page not showing in cart.</li>\n</ul>\n<h4>1.1.4</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1886 Fixed feedback notice being displayed too often (more than a week after submitting).</li>\n<li>New feature: JIRA WPB-1183 Refresh the Library Tab after downloading an image.</li>\n<li>Update: JIRA WPB-1865 Update style of \'Transactions\' pages to better incorporate BoldGrid Staging\'s nav menu.</li>\n<li>Update: JIRA WPB-1884 Passed WordPress 4.5.1 testing.</li>\n<li>Bug fix: JIRA WPB-1855 Do not display feedback notice on update or setting pages.</li>\n<li>Bug fix: JIRA WPB-1860 Fixed horizontal line through screenshot in step 2.</li>\n<li>Bug fix: JIRA WPB-1863 Cart does not look for watermarked images used within staged pages.</li>\n<li>Bug fix: JIRA WPB-1891 View / Download of images within receipts not working for images purchased via Staging.</li>\n<li>Bug fix: JIRA WPB-1893 JS errors in console when viewing attachments.</li>\n<li>Bug fix: JIRA WPB-1900 Attribution shows in menu when menu generated using wp<em>page</em>menu.</li>\n</ul>\n<h4>1.1.3</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1824 Fixed order of plugin deactivation and uninstall in Start Over process.</li>\n<li>Bug fix: JIRA WPB-1814 Fixed PHP notice in page and post editor for In Menu when there is a corrupted nav menu array.</li>\n<li>Bug fix: JIRA WPB-1823 Fixed display of \"Themes\" H1 and the additional themes bar when choosing active or staging before installing a theme.</li>\n<li>Bug fix: JIRA WPB-1840 Fixing thumbnail presentation in inspirations and add new theme.</li>\n</ul>\n<h4>1.1.2.3</h4>\n<ul>\n<li>Update: Sync version. See version 1.1.1.1.</li>\n</ul>\n<h4>1.1.2.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1833 Fixed checking for previously downloaded assets in deployment when using multisite (wp-preview).</li>\n</ul>\n<h4>1.1.2.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1817 BoldGrid Connect Search: Was not being added when changing a header image in the Customizer.</li>\n<li>Rework: JIRA WPB-1541 Removed feedback form bug report diagnostic report items.</li>\n<li>Bug fix: JIRA WPB-1816 Fixed update class interference with the Add Plugins page.</li>\n</ul>\n<h4>1.1.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1809 Fixed undefined index \"action\" for some scenarios. Optimized update class and addressed CodeSniffer items.</li>\n<li>Rework: JIRA WPB-1541 Reworked admin feedback notice.</li>\n<li>Rework: JIRA WPB-1751 Removed analysis processing and optional logging capabilities. Added support for XHProf.</li>\n<li>Bug fix: JIRA WPB-1805 Now adds theme update info on the Customizer Themes page.</li>\n<li>Rework: JIRA WPB-1785 Enabled and reworked image caching for the preview server.</li>\n<li>Rework: JIRA WPB-1751 Reworked analysis processing.</li>\n<li>Update: JIRA WPB-1658 Storing more reliable install data through inspirations.</li>\n<li>Bug fix: JIRA WPB-1787 When not using BoldGrid menu, cart does not dynamically update total page price.</li>\n<li>Update: JIRA WPB-1754 Remove attribution page from search results.</li>\n<li>Bug fix: JIRA WPB-1788 webkit css missing from \'new from gridblocks\'.</li>\n<li>New feature: JIRA WPB-1806 Add \'BoldGrid search\' tab when replacing an image.</li>\n</ul>\n<h4>1.1.1.1</h4>\n<ul>\n<li>Bug Fix: Fixing logo display on login screen.</li>\n</ul>\n<h4>1.1.1</h4>\n<ul>\n<li>Bug fix: Fixed analysis include for preview server.</li>\n<li>Bug fix: New From GridBlocks: Asset download issues.</li>\n</ul>\n<h4>1.1</h4>\n<ul>\n<li>New feature: JIRA WPB-1751 Added analysis processing and optional logging capabilities.</li>\n<li>Bug fix: JIRA WPB-1781 Removed boldgrid<em>dismissed</em>admin_notices from Start Over cleanup.</li>\n<li>New feature: JIRA WPB-1541 Added feedback notice.</li>\n<li>Bug fix: JIRA WPB-1747 New From GridBlocks: For non BoldGrid themes, only load grid css.</li>\n<li>Bug fix: JIRA WPB-1760 New From GridBlocks: Ensure page title shows on preview page.</li>\n<li>Update: JIRA WPB-1779 New From GridBlocks: Update verbiage for \'Downloading GridBlocks\'.</li>\n</ul>\n<h4>1.0.12.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1710 Fixed missing device preview tabs on Add New Theme preview modal.</li>\n<li>Bug fix: JIRA WPB-1710 Fixed notice dismissal checking.</li>\n<li>Bug fix: JIRA WPB-1749 On start over, staging menus are not deleted.</li>\n<li>Bug fix: JIRA WPB-1755 Gallery images not showing in cart.</li>\n</ul>\n<h4>1.0.12</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1740 Fixed \"In Menu\" messages in editor when staging plugin is not active, and fixed saving menu selections.</li>\n<li>New feature: JIRA WPB-1726 Added optional feedback for GridBlock Add Page.</li>\n<li>Removed Ft: JIRA WPB-1710 Removed Inspirations Add Pages; replaced by GridBlocks.</li>\n<li>Misc: JIRA WPB-1361 Added license file.</li>\n<li>New feature: Don\'t assign footer contact widget if using base pagesets.</li>\n<li>Bug Fix: JIRA WPB-1732 Fixing css issues on login screen (firefox).</li>\n<li>Bug Fix: JIRA WPB-1687 Image search: Title, Caption, Alt Text and Description do not display on new pages.</li>\n</ul>\n<h4>1.0.11</h4>\n<ul>\n<li>New feature: JIRA WPB-1699 Added optional feedback for theme activation.</li>\n<li>New feature: JIRA WPB-1690 Adding BoldGrid themes to All themes install menu.</li>\n<li>Bug fix: JIRA WPB-1686 Limited items loaded in network admin pages.</li>\n<li>Improvement: JIRA WPB-1604 Added a \"Cancel\" link to the \"In Menu\" section.</li>\n<li>Improvement: JIRA WPB-1603 Display menu locations in the editor \"In Menu\" section.</li>\n<li>Bug fix: JIRA WPB-1602 Corrected capitalization of \"None\" under \"In menu\" in the editor.</li>\n<li>Improvement: JIRA WPB-1664 Gets api<em>key and site</em>hash from configs instead of get_option.</li>\n<li>Bug fix: JIRA WPB-1597 Fixing indefined index error</li>\n<li>New feature: JIRA WPB-1649 Added reporting of PHP version and mobile ratio.</li>\n<li>Bug fix: JIRA WPB-1598 \'Mine\' count on \'all pages\' is incorrect.</li>\n<li>Bug fix: JIRA WPB-1647 JS error with easy-attachment-preview-size.js.</li>\n<li>Bug fix: JIRA WPB-1651 When the BG menu is turned off, Appearance link should take you to themes.</li>\n</ul>\n<h4>1.0.10</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1632 Fixed handling of subcategory<em>id in deploy</em>page_sets.</li>\n<li>New feature: JIRA WPB-1510 Moved adhoc functions.php to class-boldgrid-inspirations-utility.php (class Boldgrid<em>Inspirations</em>Utility).</li>\n<li>Rework: JIRA WPB-1553 Updated require and include statements for standards.</li>\n<li>Bug fix: JIRA WPB-1563 Updated pages in which wp<em>iframe-media</em>upload.css is loaded.</li>\n<li>Bug fix: JIRA WPB-1549 Resolve attribution page missing attribution for several images.png.</li>\n</ul>\n<h4>1.0.9.2</h4>\n<ul>\n<li>Bug fix: Add GridBlock Sets feature disabled.</li>\n</ul>\n<h4>1.0.9.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1553 Fixed support for PHP 5.2 to deactivate plugin.</li>\n<li>Bug fix: Prevent click of links in add<em>new</em>page_selection previews.</li>\n<li>Bug fix: JIRA WPB-1554 Fixed undefined JavaScript variable pagenow for customizer link.</li>\n</ul>\n<h4>1.0.9</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1554 Fixed theme link in network dashboard nav menu.</li>\n<li>Bug fix: JIRA WPB-1590 Fixed JavaScript error for undefined screen info in network dashboard.</li>\n<li>Bug fix: JIRA WPB-1535 Fixed theme deployment issues.</li>\n<li>New feature: JIRA WPB-1584 Added an opt-out feedback payload delivery system.</li>\n<li>New feature: JIRA WPB-1580 Added optional feedback for customizer_start.</li>\n<li>Bug fix: JIRA WPB-1571 Removed plugin dependency admin notice when editing an attachment (image).</li>\n<li>New feature: JIRA WPB-1579 Added feedback opt-out in BoldGrid Settings, hidden for now.</li>\n<li>Bug fix: JIRA WPB-1575 Addressed an issue causing mismatch color palettes on cached previews</li>\n<li>New feature: JIRA WPB-1514 Add new pages offers page templates to choose from.</li>\n</ul>\n<h4>1.0.8.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1553 Fixed PHP version check condition (<5.3).</li>\n</ul>\n<h4>1.0.8</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1561 Fixed missing get<em>plugin</em>data on update calls.</li>\n<li>New feature: JIRA WPB-1511 Added dependency plugin notice on editor pages.</li>\n<li>Bug fix: JIRA WPB-1553 Added support for <strong>DIR</strong> in PHP <=5.2.</li>\n<li>Bug fix: JIRA WPB-1371 JSON encoded image data for media download requests.</li>\n<li>New feature: JIRA WPB-1332 Swapping loading GIF to CSS loading image.</li>\n<li>New feature: JIRA WPB-1072 Storing static pages on install</li>\n<li>New feature: JIRA WPB-1539 When deleting a page, remove it from any applicable menus as well.</li>\n<li>New feature JIRA WPB-1542 Manage menu assignment within editor.</li>\n<li>New feature JIRA WPB-1555 Add wp-image-## class to images during deployment.</li>\n<li>New feature JIRA WPB-1557 Add wp-image-## class to images when adding gridblocks.</li>\n<li>Bug fix: JIRA WPB-1506 Theme naming missing in preview.</li>\n<li>Bug fix: JIRA WPB-1443 Extra page listed under \'Mine\'.</li>\n<li>Bug fix: JIRA WPB-1560 Install options not available on preview server</li>\n</ul>\n<h4>1.0.7</h4>\n<ul>\n<li>Rework: JIRA WPB-1533 Ensured activation data is sent after first login.</li>\n</ul>\n<h4>1.0.7</h4>\n<ul>\n<li>Rework: JIRA WPB-1533 Ensured activation data is sent after first login.</li>\n</ul>\n<h4>1.0.6</h4>\n<ul>\n<li>Rework: JIRA WPB-1411 Added more output to the deploy log.</li>\n</ul>\n<h4>1.0.5</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1462 Fixed position of dependency plugins admin notice. Also limited to Dashboard and plugins page.</li>\n<li>Bug fix: JIRA WPB-1290 Fixing issues with galleries leaving empty spaces</li>\n<li>Bug fix: JIRA WPB-1471 Made deployment plugin installation respect release channel.</li>\n<li>Rework: JIRA WPB-1452 Remove unneeded call to \'boldgrid<em>activate</em>framework\' during deployment.</li>\n<li>Bug fix: JIRA WPB-946 Fixed margin bug on step 2 additional themes.</li>\n<li>Bug fix: JIRA WPB-1384 Increase width of select input on image search modal.</li>\n<li>Bug fix: JIRA WPB-1508 BoldGrid Image search box size is inconsistent.</li>\n</ul>\n<h4>1.0.4</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1442 Fixing inspiration border styles for wordpress 4.4</li>\n<li>Bug fix: JIRA WPB-1461 Updating login button styles for wordpress 4.4</li>\n<li>Bug fix: JIRA WPB-1411 Added initialization and checks for empty image queues in deployment.</li>\n<li>Bug fix: JIRA WPB-1406 Attribution page still showing in \'All Pages\'.</li>\n<li>Bug fix: JIRA WPB-1451 Active images are showing in Staging attribution page.</li>\n<li>Bug fix: JIRA WPB-1466 Tabs on tutorials page too small at 1035px - 1482px.</li>\n</ul>\n<h4>1.0.3</h4>\n<ul>\n<li>New feature: JIRA WPB-1363 Updated readme.txt for WordPress standards.</li>\n<li>New feature: JIRA WPB-1389 When starting over theme mods are saved with a flag to recompile sass</li>\n<li>Bug fix: JIRA WPB-1420 Content of Attribution page is overwriting page saves.</li>\n</ul>\n<h4>1.0.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1395 Adjusted theme update data; now gets theme uri from theme style.css, download url from api data.</li>\n<li>Rework JIRA WPB-1374 Updated activation timestamp to use GMT/UTC.</li>\n<li>Bug fix: JIRA WPB-1377 Reseller option is now set on first call to either the front end or wp_login.</li>\n<li>Bug fix: Adjusted handling for image purchases when errors occur.</li>\n<li>Bug fix: JIRA WPB-1365 Purchase link on editing a page goes to wrong link.</li>\n<li>Bug fix: JIRA WPB-1368 Inspirations step 0 text refers to nonexisting help tabs.</li>\n<li>Rework: JIRA WPB-1378 Adjusted formatting of footer in Dashboard.</li>\n<li>Rework: JIRA WPB-1369 Update minus signs on \'Transaction History\'.</li>\n<li>New feature: JIRA WPB-1379 On the transactions page, show the reseller that processed the credits.</li>\n<li>Bug fix: Count of \'All\' pages inaccurate on \'All pages\'.</li>\n<li>Bug fix: JIRA WPB-1367 Updated link for \'Lost your BoldGrid Connect Key?\'.</li>\n</ul>\n<h4>1.0.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1374 Updated activation timestamp to include timezone in UTC.</li>\n<li>Bug fix: Attribution page shows style tags.</li>\n<li>Bug fix: Strict Standards fix for wp<em>kses</em>allowed_html.</li>\n<li>Bug fix: Fixed incorrect link.</li>\n</ul>\n<h4>1.0</h4>\n<ul>\n<li>Initial public release.</li>\n</ul>\n\";s:14:\"upgrade_notice\";s:311:\"<h4>1.3</h4>\n<p>Version 1.3 has been released with a redesigned Inspiration phase. For more information on this change and others, please visit our blog at https://www.boldgrid.com/boldgrid-1-3-released/ .</p>\n<h4>1.0.2</h4>\n<p>Users should upgrade to version 1.0.2 to ensure proper BoldGrid theme updates.</p>\n\";}s:7:\"siteurl\";s:25:\"https://www.boldgrid.com/\";s:13:\"compatibility\";s:92344:\"{\"6.1.1\":{\"2.7.5\":[100,95]},\"6.1\":{\"2.7.5\":[100,95]},\"6.0.3\":{\"2.7.5\":[100,95]},\"6.0.2\":{\"2.7.5\":[100,95]},\"6.0.1\":{\"2.7.5\":[100,95]},\"6.0\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.9.5\":{\"2.7.5\":[100,95]},\"5.9.4\":{\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.9.3\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.9.2\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.9.1\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.9\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.8.6\":{\"2.7.5\":[100,95]},\"5.8.5\":{\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.8.4\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.8.3\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.8.2\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.8.1\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.8\":{\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.7.8\":{\"2.7.5\":[100,95]},\"5.7.7\":{\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.7.6\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.7.5\":{\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.7.4\":{\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.7.3\":{\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.7.2\":{\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.7.1\":{\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.7\":{\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.6.9\":{\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.6.8\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.6.7\":{\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.6.6\":{\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.6.5\":{\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.6.4\":{\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.6.3\":{\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.6.2\":{\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.6.10\":{\"2.7.5\":[100,95]},\"5.6.1\":{\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.6\":{\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.5.9\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.5.8\":{\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.5.7\":{\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.5.6\":{\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.5.5\":{\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.5.4\":{\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.5.3\":{\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.5.2\":{\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.5.1\":{\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.5\":{\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.4.9\":{\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.4.8\":{\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.4.7\":{\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.4.6\":{\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.4.5\":{\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.4.4\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.4.3\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.4.2\":{\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.4.1\":{\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.4\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.3.9\":{\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.3.8\":{\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.3.7\":{\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.3.6\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.3.5\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.3.4\":{\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.3.3\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.3.2\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.3.1\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.3\":{\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.2.9\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.2.8\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.2.7\":{\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.2.6\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.2.5\":{\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.2.4\":{\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.2.3\":{\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.2.2\":{\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.2.1\":{\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.2\":{\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.1.8\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.1.7\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.1.6\":{\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.1.5\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.1.4\":{\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.1.3\":{\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.1.2\":{\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.1.1\":{\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.1\":{\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.0.9\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.0.8\":{\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.0.7\":{\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.0.6\":{\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.0.5\":{\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.0.4\":{\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.0.3\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.0.2\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.0.10\":{\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.0.1\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.0\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.9.9\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.9.8\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.9.7\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.9.6\":{\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.9.5\":{\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.9.4\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.9.3\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.9.2\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.9.14\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.9.13\":{\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.9.12\":{\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.9.11\":{\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.9.10\":{\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.9.1\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.9\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.8.9\":{\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.8.8\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.8.7\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.8.6\":{\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.8.5\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.8.4\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.8.3\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.8.2\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.8.10\":{\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.8.1\":{\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.8\":{\"1.4.0.1\":[100,12],\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.7.9\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.7.8\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.7.7\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.7.6\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.7.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.7.4\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.7.3\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.7.2\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.7.13\":{\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.7.12\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.7.11\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.7.10\":{\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.7.1\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.7\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.6.9\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.6.8\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.6.7\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.6.6\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.6.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.6.4\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.6.3\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.6.2\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.6.12\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.6.11\":{\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.6.10\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.6.1\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.6\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.5.9\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.5.8\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.5.7\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.5.6\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.5.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.5.4\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.5.3\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.5.2\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.5.12\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.5.11\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.5.10\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.5.1\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.4.9\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.4.8\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.4.7\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.4.6\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.4.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.4.10\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.3.1\":{\"0.29\":[100,12],\"1.0.2\":[100,12],\"1.0.3\":[100,12],\"1.0.4\":[100,12],\"1.0.5\":[100,12],\"1.0.6\":[100,12],\"1.0.7\":[100,12],\"1.0.8.1\":[100,12],\"1.0.9.1\":[100,12],\"1.0.9.2\":[100,12],\"1.0.10\":[100,12],\"1.0.11\":[100,12],\"1.0.12.1\":[100,12],\"1.1.1\":[100,12],\"1.1.2.1\":[100,12],\"1.1.2.3\":[100,12],\"1.1.1.1\":[100,12],\"1.1.3\":[100,12],\"1.1.4\":[100,12],\"1.1.5\":[100,12],\"1.1.6\":[100,12],\"1.1.7\":[100,12],\"1.1.8\":[100,12],\"1.2\":[100,12],\"1.2.1\":[100,12],\"1.2.2\":[100,12],\"1.2.4\":[100,12],\"1.2.5\":[100,12],\"1.2.8\":[100,12],\"1.2.9\":[100,12],\"1.2.11\":[100,12],\"1.2.13\":[100,12],\"1.3\":[100,12],\"1.3.1\":[100,12],\"1.3.2\":[100,12],\"1.3.3\":[100,12],\"1.3.4\":[100,12],\"1.3.5\":[100,12],\"1.3.6\":[100,12],\"1.3.7\":[100,12],\"1.3.8\":[100,12],\"1.3.9\":[100,12],\"1.3.10\":[100,12],\"1.4\":[100,12],\"1.4.1\":[100,12],\"1.4.2\":[100,12],\"1.4.3\":[100,12],\"1.4.4\":[100,12],\"1.4.5\":[100,12],\"1.4.6\":[100,12],\"1.4.0.1\":[100,12],\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]}}\";s:6:\"rating\";i:100;s:11:\"num_ratings\";i:100000;s:4:\"tags\";a:5:{s:11:\"inspiration\";s:11:\"Inspiration\";s:13:\"customization\";s:13:\"Customization\";s:5:\"build\";s:5:\"Build\";s:6:\"create\";s:6:\"Create\";s:6:\"design\";s:6:\"Design\";}s:7:\"banners\";a:2:{s:3:\"low\";s:65:\"//repo.boldgrid.com/assets/banner-inspirations-banner-772x250.png\";s:4:\"high\";s:66:\"//repo.boldgrid.com/assets/banner-inspirations-banner-1544x500.png\";}s:11:\"new_version\";s:5:\"2.7.5\";s:4:\"name\";s:21:\"BoldGrid Inspirations\";s:4:\"slug\";s:21:\"boldgrid-inspirations\";s:17:\"short_description\";s:135:\"BoldGrid Inspirations is an inspiration-driven plugin to assist with creating a fresh new website, or to customize an existing website.\";s:12:\"last_updated\";s:19:\"2023-03-24 17:39:34\";s:6:\"author\";s:65:\"<a href=\"https://www.boldgrid.com/\" target=\"_blank\">BoldGrid </a>\";s:5:\"icons\";a:3:{s:2:\"1x\";s:71:\"https://repo.boldgrid.com/assets/icon-boldgrid-inspirations-128x128.png\";s:2:\"2x\";s:71:\"https://repo.boldgrid.com/assets/icon-boldgrid-inspirations-256x256.png\";s:3:\"svg\";s:71:\"https://repo.boldgrid.com/assets/icon-boldgrid-inspirations-128x128.svg\";}s:5:\"added\";s:10:\"2015-03-19\";s:3:\"url\";s:25:\"https://www.boldgrid.com/\";s:15:\"active_installs\";b:1;s:13:\"download_link\";s:148:\"https://api.boldgrid.com/api/open/getAsset?key=8ba05fe9f17b3bd4eb3e855a84feaaa4&id=1283966&installed_plugin_version=2.7.4&installed_wp_version=6.2.2\";}s:16:\"boldgrid-gallery\";O:8:\"stdClass\":24:{s:5:\"title\";s:16:\"BoldGrid Gallery\";s:7:\"version\";s:5:\"1.5.1\";s:8:\"asset_id\";i:1118061;s:12:\"release_date\";s:19:\"2020-07-27 20:25:23\";s:19:\"requires_wp_version\";s:3:\"4.4\";s:17:\"tested_wp_version\";s:3:\"5.8\";s:8:\"sections\";a:4:{s:11:\"description\";s:82:\"<p>BoldGrid Gallery is a standalone plugin used for slideshows and galleries.</p>\n\";s:12:\"installation\";s:183:\"<ol>\n<li><p>Upload the entire boldgrid-gallery folder to the /wp-content/plugins/ directory.</p></li>\n<li><p>Activate the plugin through the Plugins menu in WordPress.</p></li>\n</ol>\n\";s:9:\"changelog\";s:3079:\"<h4>1.5.1</h4>\n<ul>\n<li>Bug fix: Fix update class.</li>\n<li>Bug fix: Trying to access array offset on value of type bool.</li>\n</ul>\n<h4>1.5</h4>\n<ul>\n<li>Update: Bump version.</li>\n</ul>\n<h4>1.4.3</h4>\n<ul>\n<li>Update: JIRA WPB-3292 Updated plugin URI.</li>\n</ul>\n<h4>1.4.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3161 Fixed auto plugin update.</li>\n</ul>\n<h4>1.4.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-3151 Added check and load before using get<em>plugin</em>data() for updates.</li>\n<li>Update: JIRA WPB-3112 Updated wc-gallery: 1.52 => 1.55.</li>\n</ul>\n<h4>1.4</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2912 Fixed issue when installing plugins from the Tools Import page.</li>\n</ul>\n<h4>1.3.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2892 Fixed plugin update checks for some scenarios (WP-CLI, Plesk, etc).</li>\n<li>Testing: JIRA WPB-2744 Tested on WordPress 4.7.</li>\n<li>Misc: JIRA WPB-2503 Added plugin requirements to readme.txt file.</li>\n</ul>\n<h4>1.3</h4>\n<ul>\n<li>Update: Bump Version.</li>\n</ul>\n<h4>1.2.3</h4>\n<ul>\n<li>Misc: JIRA WPB-2344 Updated readme.txt for Tested up to 4.6.1.</li>\n<li>Bug fix: JIRA WPB-2336 Load BoldGrid settings from the correct WP option (site/blog).</li>\n<li>Update: JIRA WPB-2368 Version constant is now set from plugin file.</li>\n</ul>\n<h4>1.2.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2310 Removed broken plugin Settings link. Pending review on WPB-2309.</li>\n</ul>\n<h4>1.2.1</h4>\n<ul>\n<li>Misc: JIRA WPB-2256 Updated readme.txt for Tested up to: 4.6.</li>\n<li>Rework: JIRA WPB-1825 Formatting.</li>\n</ul>\n<h4>1.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-2114 Fixed gallery displaying in editor on wordpress 4.6.</li>\n<li>Bug fix: JIRA WPB-2114 Fixing ordering of gallery items.</li>\n</ul>\n<h4>1.1.2</h4>\n<ul>\n<li>New feature: JIRA WPB-2037 Added capability for auto-updates by BoldGrid API response.</li>\n<li>Update: JIRA WPB-2024 Updated wc-gallery: 1.48 => 1.52.</li>\n<li>Misc: Updated editor.js to pass JSHint.</li>\n</ul>\n<h4>1.1.1</h4>\n<ul>\n<li>Update: JIRA WPB-1884 Passed WordPress 4.5.1 testing.</li>\n<li>Bug fix: JIRA WPB-1893 JS errors in console when viewing attachments.</li>\n</ul>\n<h4>1.1.0.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1816 Fixed update class interference with the Add Plugins page.</li>\n</ul>\n<h4>1.1</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1809 Fixed undefined index \"action\" for some scenarios. Optimized update class and addressed CodeSniffer items.</li>\n</ul>\n<h4>1.0.4</h4>\n<ul>\n<li>Misc: JIRA WPB-1361 Added license file.</li>\n<li>Bug Fix: JIRA WPB-1646 Fixing Issues where masonry gallery was not WYSIWYG.</li>\n</ul>\n<h4>1.0.3</h4>\n<ul>\n<li>Update: JIRA WPB-1611 Updated wc-gallery: 1.40 => 1.48.</li>\n<li>Rework: JIRA WPB-1617 Updated require and include statements for standards.</li>\n</ul>\n<h4>1.0.2</h4>\n<ul>\n<li>Bug fix: JIRA WPB-1553 Changed <strong>DIR</strong> to dirname( <strong>FILE</strong> ) for PHP <=5.2.</li>\n<li>Misc JIRA WPB-1468 Updated readme.txt for Tested up to: 4.4.1</li>\n</ul>\n<h4>1.0.1</h4>\n<ul>\n<li>New feature: JIRA WPB-1363 Updated readme.txt for WordPress standards.</li>\n</ul>\n<h4>1.0</h4>\n<ul>\n<li>Initial public release.</li>\n</ul>\n\";s:14:\"upgrade_notice\";s:1:\"\n\";}s:7:\"siteurl\";s:24:\"http://www.boldgrid.com/\";s:13:\"compatibility\";s:2163:\"{\"5.4\":{\"1.4.3\":[100,95],\"1.5\":[100,95]},\"4.8.1\":{\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.7.5\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.7.4\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.7.3\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.7.2\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.7.1\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.7\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.6.6\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.6.5\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.6.4\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.6.3\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.6.2\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.6.1\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.6\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.9\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.8\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.7\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.6\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.5\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.4\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.3\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.2\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5.1\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.5\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.4.9\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.4.8\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.4.7\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.4.6\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.4.5\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.4.10\":{\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]},\"4.3.1\":{\"0.4\":[100,12],\"1.0\":[100,12],\"1.0.1\":[100,12],\"1.0.2\":[100,12],\"1.0.3\":[100,12],\"1.0.4\":[100,12],\"1.1.0.1\":[100,12],\"1.1.1\":[100,12],\"1.1.2\":[100,12],\"1.2\":[100,12],\"1.2.1\":[100,12],\"1.2.2\":[100,12],\"1.2.3\":[100,12],\"1.3\":[100,12],\"1.3.1\":[100,12],\"1.3.2\":[100,12],\"1.4\":[100,12],\"1.4.1\":[100,12],\"1.4.2\":[100,12],\"1.4.3\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95]}}\";s:6:\"rating\";i:100;s:11:\"num_ratings\";i:100000;s:4:\"tags\";a:4:{s:7:\"gallery\";s:7:\"Gallery\";s:6:\"slider\";s:6:\"Slider\";s:9:\"slideshow\";s:9:\"Slideshow\";s:7:\"masonry\";s:7:\"Masonry\";}s:7:\"banners\";a:2:{s:3:\"low\";s:53:\"//repo.boldgrid.com/assets/banner-gallery-772x250.png\";s:4:\"high\";s:54:\"//repo.boldgrid.com/assets/banner-gallery-1544x500.png\";}s:11:\"new_version\";s:5:\"1.5.1\";s:4:\"name\";s:16:\"BoldGrid Gallery\";s:4:\"slug\";s:16:\"boldgrid-gallery\";s:17:\"short_description\";s:74:\"BoldGrid Gallery is a standalone plugin used for slideshows and galleries.\";s:12:\"last_updated\";s:19:\"2020-07-27 20:25:23\";s:6:\"author\";s:67:\"<a href=\"http://www.boldgrid.com/\" target=\"_blank\">BoldGrid.com</a>\";s:5:\"icons\";a:3:{s:2:\"1x\";s:66:\"https://repo.boldgrid.com/assets/icon-boldgrid-gallery-128x128.png\";s:2:\"2x\";s:66:\"https://repo.boldgrid.com/assets/icon-boldgrid-gallery-256x256.png\";s:3:\"svg\";s:66:\"https://repo.boldgrid.com/assets/icon-boldgrid-gallery-128x128.svg\";}s:5:\"added\";s:10:\"2015-03-19\";s:3:\"url\";s:24:\"http://www.boldgrid.com/\";s:15:\"active_installs\";b:1;s:13:\"download_link\";s:117:\"https://api.boldgrid.com/api/open/getAsset?key=8ba05fe9f17b3bd4eb3e855a84feaaa4&id=1118061&installed_wp_version=6.2.2\";}}','no'),(396332,'_site_transient_timeout_boldgrid_api_data','1687402323','no'),(396333,'_site_transient_boldgrid_api_data','O:8:\"stdClass\":5:{s:6:\"status\";i:200;s:7:\"message\";s:2:\"OK\";s:6:\"result\";O:8:\"stdClass\":1:{s:4:\"data\";O:8:\"stdClass\":30:{s:5:\"title\";s:21:\"BoldGrid Inspirations\";s:7:\"version\";s:5:\"2.7.5\";s:8:\"asset_id\";i:1283966;s:12:\"release_date\";s:19:\"2023-03-24 17:39:34\";s:19:\"requires_wp_version\";s:3:\"4.4\";s:17:\"tested_wp_version\";s:3:\"6.2\";s:8:\"sections\";s:50307:\"{\"description\":\"<p>BoldGrid Inspirations is an inspiration-driven plugin to assist with creating a fresh new website, or to customize an existing website.<\\/p>\\n\\n<p>The first phase is Inspiration; the guided tool creates your base website.  If you already have a website, then you can skip this step.<\\/p>\\n\\n<p>The second phase is Customization; tools to transform your website into your vision.<\\/p>\\n\",\"installation\":\"<ol>\\n<li><p>Upload the entire boldgrid-inspirations folder to the \\/wp-content\\/plugins\\/ directory.<\\/p><\\/li>\\n<li><p>Activate the plugin through the Plugins menu in WordPress.<\\/p><\\/li>\\n<li><p>You will find the Inspirations menu in your WordPress Dashboard \\/ admin panel.<\\/p><\\/li>\\n<\\/ol>\\n\",\"changelog\":\"<h4>2.7.5<\\/h4>\\n\\n<p>Release date: March 23rd, 2023<\\/p>\\n\\n<ul>\\n<li>Bug Fix: WP 6.2 - get<em>page<\\/em>by_tlte is deprecated <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/boldgrid-inspirations\\/issues\\/173\\\">#173<\\/a><\\/li>\\n<li>Update: Update Boldgrid\\/BGforms dependancy.<\\/li>\\n<\\/ul>\\n\\n<h4>2.7.4<\\/h4>\\n\\n<p>Release date: September 20th, 2022<\\/p>\\n\\n<ul>\\n<li>Bug Fix: background images in crio<em>page<\\/em>headers are not getting replaced <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/boldgrid-inspirations\\/issues\\/155\\\">#155<\\/a><\\/li>\\n<li>Bug Fix: Object of class WP_Error could not be converted to int <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/boldgrid-inspirations\\/issues\\/153\\\">#153<\\/a><\\/li>\\n<\\/ul>\\n\\n<h4>2.7.3<\\/h4>\\n\\n<p>Release date: September 7th, 2022<\\/p>\\n\\n<ul>\\n<li>Update: Prevent hidden categories from displaying in the sidebar during inspirations process.<\\/li>\\n<\\/ul>\\n\\n<h4>2.7.2<\\/h4>\\n\\n<p>Release date: August 8th, 2022<\\/p>\\n\\n<ul>\\n<li>Update: Increased image download timeout to 60 seconds.<\\/li>\\n<\\/ul>\\n\\n<h4>2.7.1<\\/h4>\\n\\n<p>Release date: July 8th, 2022<\\/p>\\n\\n<ul>\\n<li>Update: Updated dependencies (php 7.1).<\\/li>\\n<\\/ul>\\n\\n<h4>2.7.0<\\/h4>\\n\\n<p>Release date: July 7th, 2022<\\/p>\\n\\n<ul>\\n<li>New feature: Logo support.<\\/li>\\n<li>New feature: Nested menus.<\\/li>\\n<li>New feature: Taxonmy per post.<\\/li>\\n<li>New feature: Custom headers.<\\/li>\\n<li>Update: Updated dependencies.<\\/li>\\n<li>Update: Remove page headers on start over.<\\/li>\\n<\\/ul>\\n\\n<h4>2.6.5<\\/h4>\\n\\n<p>Release date: January 25th, 2022<\\/p>\\n\\n<ul>\\n<li>Update: Several php8 fixes.<\\/li>\\n<li>Update: Automated tests run against php 5.6, 7.4, and 8.0<\\/li>\\n<\\/ul>\\n\\n<h4>2.6.4<\\/h4>\\n\\n<p>Release date: October 18th, 2021<\\/p>\\n\\n<ul>\\n<li>Update: Add filters to allow dev installs of Crio and Crio Premium.<\\/li>\\n<\\/ul>\\n\\n<h4>2.6.3<\\/h4>\\n\\n<p>Release date: June 10th, 2021<\\/p>\\n\\n<ul>\\n<li>Update: Updated the way blogs are installed via Inspirations.<\\/li>\\n<li>Update: Updated the My Inspirations page with links to theme support.<\\/li>\\n<li>Update: Updated dependencies.<\\/li>\\n<\\/ul>\\n\\n<h4>2.6.2<\\/h4>\\n\\n<p>Release date: April 14th, 2021<\\/p>\\n\\n<ul>\\n<li>Update: Add support for footer-menu locations<\\/li>\\n<\\/ul>\\n\\n<h4>2.6.1<\\/h4>\\n\\n<p>Release date: February 16th, 2021<\\/p>\\n\\n<ul>\\n<li>Update: Disable custom menu by default.<\\/li>\\n<li>Bug fix: Add \\\"My Inspirations\\\" link in case js does not redirect.<\\/li>\\n<\\/ul>\\n\\n<h4>2.6.0<\\/h4>\\n\\n<p>Release date: January 25th, 2021<\\/p>\\n\\n<ul>\\n<li>New feature: Theme deployments can now include theme specific plugins.<\\/li>\\n<\\/ul>\\n\\n<h4>2.5.2<\\/h4>\\n\\n<p>Release date: December 8th, 2020<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixed Gutenberg detection, avoid errors when adding media.<\\/li>\\n<li>Bug fix: Avoid js errors when editor screens have no ability to add media.<\\/li>\\n<\\/ul>\\n\\n<h4>2.5.1<\\/h4>\\n\\n<p>Release date: October 23rd, 2020<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixed \\\"Only variables should be passed by reference\\\" in class-boldgrid-inspirations-purchase-for-publish.php.<\\/li>\\n<\\/ul>\\n\\n<h4>2.5.0<\\/h4>\\n\\n<p>Release date: October 17th, 2020<\\/p>\\n\\n<ul>\\n<li>New feature: Invoicing and Caching options added as Inspirations features.<\\/li>\\n<\\/ul>\\n\\n<h4>2.4.4<\\/h4>\\n\\n<p>Release date: September 22nd, 2020<\\/p>\\n\\n<ul>\\n<li>Update: Updated dependencies.<\\/li>\\n<\\/ul>\\n\\n<h4>2.4.3<\\/h4>\\n\\n<p>Release date: August 11th, 2020<\\/p>\\n\\n<ul>\\n<li>Bug fix: WordPress 5.5 compatibility changes.<\\/li>\\n<li>Update: Optimized usage of set<em>staging<\\/em>installed.<\\/li>\\n<li>Update: Optimized \\\"get total coin cost\\\".<\\/li>\\n<li>Update: Updated links in login footer<\\/li>\\n<li>Update: Updated dependencies.<\\/li>\\n<\\/ul>\\n\\n<h4>2.4.2<\\/h4>\\n\\n<p>Release date: June 15th, 2020<\\/p>\\n\\n<ul>\\n<li>Update: Updated dependencies.<\\/li>\\n<\\/ul>\\n\\n<h4>2.4.1<\\/h4>\\n\\n<p>Release date: May 29th, 2020<\\/p>\\n\\n<ul>\\n<li>Update: Updated dependencies.<\\/li>\\n<\\/ul>\\n\\n<h4>2.4.0<\\/h4>\\n\\n<p>Release date: May 18th, 2020<\\/p>\\n\\n<ul>\\n<li>Update: Changes needed for Crio.<\\/li>\\n<li>Bug fix: Attribution page will not show excpert.<\\/li>\\n<li>Bug fix: Fixed display \\/ position of BoldGrid Connect image search results.<\\/li>\\n<\\/ul>\\n\\n<h4>2.3.1<\\/h4>\\n\\n<p>Release date: March 12th, 2020<\\/p>\\n\\n<ul>\\n<li>Bug fix: Unable to click button on email confirmation page.<\\/li>\\n<li>Update: Removed \\\"Add new from GridBlocks\\\" feature.<\\/li>\\n<\\/ul>\\n\\n<h4>2.3.0<\\/h4>\\n\\n<p>Release date: December 17th, 2019<\\/p>\\n\\n<ul>\\n<li>Bug fix: Added noindex to the attribution page.<\\/li>\\n<li>Update: Changed the form plugin from WPForms to weForms.<\\/li>\\n<li>Update: Updated dependencies.<\\/li>\\n<\\/ul>\\n\\n<h4>2.2.2<\\/h4>\\n\\n<p>Release date: November 22st, 2019<\\/p>\\n\\n<ul>\\n<li>Update: BoldGrid Backup is now Total Upkeep - updating references.<\\/li>\\n<li>Update: Updated dependency boldgrid\\/library to 2.10.6.<\\/li>\\n<\\/ul>\\n\\n<h4>2.2.1<\\/h4>\\n\\n<p>Release date: October 15th, 2019<\\/p>\\n\\n<ul>\\n<li>Update:  Updated dependency boldgrid\\/library to 2.10.4.<\\/li>\\n<\\/ul>\\n\\n<h4>2.2.0<\\/h4>\\n\\n<p>Release date: September 17th, 2019<\\/p>\\n\\n<ul>\\n<li>New feature: Recommend the BoldGrid Backup plugin for users needing to transfer a site.<\\/li>\\n<li>Update: Updating dependencies<\\/li>\\n<\\/ul>\\n\\n<h4>2.1.1<\\/h4>\\n\\n<p>Release date: September 5th, 2019<\\/p>\\n\\n<ul>\\n<li>Update: Updating dependencies<\\/li>\\n<\\/ul>\\n\\n<h4>2.1.0<\\/h4>\\n\\n<p>Release date: August 29th, 2019<\\/p>\\n\\n<ul>\\n<li>Update: Removed the \\\"Welcome to BoldGrid\\\" dashboard widget.<\\/li>\\n<li>Update: Add notice to dashboard widget.<\\/li>\\n<li>Update: Remove news widget from dashboard.<\\/li>\\n<\\/ul>\\n\\n<h4>2.0.7<\\/h4>\\n\\n<p>Release date: August 16, 2019<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixing compact warnings<\\/li>\\n<\\/ul>\\n\\n<h4>2.0.6<\\/h4>\\n\\n<p>Release date: August 1st, 2019<\\/p>\\n\\n<ul>\\n<li>Update: Updated dependencies<\\/li>\\n<\\/ul>\\n\\n<h4>2.0.5<\\/h4>\\n\\n<p>Release date: July 25th, 2019<\\/p>\\n\\n<ul>\\n<li>Update: Added a switch for toggling branding of the login page.<\\/li>\\n<li>Update: Cleaned up logic on purchase coins page.<\\/li>\\n<li>Update: Updated dependencies<\\/li>\\n<\\/ul>\\n\\n<h4>2.0.4<\\/h4>\\n\\n<p>Release date: July 2nd, 2019<\\/p>\\n\\n<ul>\\n<li>Update: Replaced the BoldGrid RSS feed widget on the dashboard with one in the updated library package.<\\/li>\\n<li>Update: Updated dependencies.<\\/li>\\n<\\/ul>\\n\\n<h4>2.0.3<\\/h4>\\n\\n<p>Release date: May 21st, 2019<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixing \\\"Call to undefined method getAttribute\\\" error.<\\/li>\\n<li>Bug fix: Replacing deprecated filter on login: login<em>headertitle \\/ login<\\/em>headertext.<\\/li>\\n<\\/ul>\\n\\n<h4>2.0.2<\\/h4>\\n\\n<p>Release date: Apr 23nd, 2019<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixing usage of php\'s empty function for php &lt; 5.5<\\/li>\\n<\\/ul>\\n\\n<h4>2.0.1<\\/h4>\\n\\n<p>Release date: Apr 19th, 2019<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixing class property declaration for php &lt; 5.6<\\/li>\\n<\\/ul>\\n\\n<h4>2.0.0<\\/h4>\\n\\n<p>Release date: Apr 16th, 2019<\\/p>\\n\\n<ul>\\n<li>Update: Made translation ready. Text domain is boldgrid-inspirations.<\\/li>\\n<li>Update: Inspirations process with full screen mode and design updates.<\\/li>\\n<li>New feature: Inspirations dashboard.<\\/li>\\n<li>New feature: German translations added - de_DE.<\\/li>\\n<\\/ul>\\n\\n<h4>1.6.5<\\/h4>\\n\\n<p>Release date: Jan 29th, 2019<\\/p>\\n\\n<ul>\\n<li>Bug fix:                       Pages fail to install on Pages > Add New.<\\/li>\\n<\\/ul>\\n\\n<h4>1.6.4<\\/h4>\\n\\n<p>Release date: Dec 5th, 2018<\\/p>\\n\\n<ul>\\n<li>Bug fix:                       Unable to save \\\"boldgrid<em>menu<\\/em>option\\\" on settings page.<\\/li>\\n<li>Bug fix:                       Fixed updating plugin via ajax.<\\/li>\\n<\\/ul>\\n\\n<h4>1.6.3<\\/h4>\\n\\n<p>Release date: Dec 4th, 2018<\\/p>\\n\\n<ul>\\n<li>Bug fix:                       Coin Budget help was not toggling when clicked.<\\/li>\\n<\\/ul>\\n\\n<h4>1.6.2<\\/h4>\\n\\n<p>Release date: Nov 26th, 2018<\\/p>\\n\\n<ul>\\n<li>Bug fix:      JIRA BGINSP-33   Fixed missing build for library dependencies; Updated production build process to use composer post-autoload-dump hook.<\\/li>\\n<\\/ul>\\n\\n<h4>1.6.1<\\/h4>\\n\\n<p>Release date: Nov 20th, 2018<\\/p>\\n\\n<ul>\\n<li>Update:       JIRA BGCONN-20   Removed update settings; have been moved to the BoldGrid Library packages.<\\/li>\\n<li>Bug fix:      JIRA BGTHEME-558 Fixed conflict between tgmpa plugin installer and the BoldGrid custom update classes.<\\/li>\\n<li>Bug fix:                       BoldGrid Connect Search \\/ WP 5.0 fix.<\\/li>\\n<li>Bug fix:                       Attribution page not being rebuilt \\/ WP 5.0 fix.<\\/li>\\n<li>Bug fix:                       BoldGrid Connect Search in the Customizer \\/ WP 5.0 fix.<\\/li>\\n<li>Bug fix:                       Recommended image sizes not working as expected.<\\/li>\\n<\\/ul>\\n\\n<h4>1.6.0<\\/h4>\\n\\n<ul>\\n<li>Update:                       Updated BoldGrid library to version 2.4.2.<\\/li>\\n<li>New feature:  JIRA BGINSP-24  Log data when there may be a connection or Ajax error.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.8<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA BGINSP-16  Warnings and notices within inspiration w\\/ Crio theme<\\/li>\\n<li>Bug fix:      JIRA BGINSP-23  Fixed issue: Connect Search may load with connection notice.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.7<\\/h4>\\n\\n<ul>\\n<li>Update:                       Updated to library version 2.3.5.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.6<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA BGINSP-14  Fatal in PHP >=7.1.0 when creating internal preview builds.<\\/li>\\n<li>Bug fix:      JIRA WPB-3767   Prevent invalid API calls for check-version.<\\/li>\\n<li>Update:       JIRA BGBKUP-180 Auto update code moved to library and removed from Inspirations.<\\/li>\\n<li>Update:       JIRA WPB-3730   Updated library dependency to ^2.0.0.<\\/li>\\n<li>Update:       JIRA BGINSP-3   Forcing display of Connect Key prompt admin notice on the Inspirations page, even if dismissed, until key is entered.<\\/li>\\n<li>Update:       JIRA WPB-3684   Updated composer.json, due to package changes.<\\/li>\\n<li>New feature:  JIRA BGCNTRL-46 Added filters for manipulating Dashboard help in trial sites.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.5<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA BGSTAGE-32 Fixed staging plugin install.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.4<\\/h4>\\n\\n<ul>\\n<li>Update:       JIRA BGINSP-4   Removed admin notice recommending plugin installations.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.3<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-3643   Ensure that deployment does not install new wporg plugins if old ones are installed.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-3587   Menu assignment after deployment broken in WP 4.9.<\\/li>\\n<li>Bug fix:      JIRA WPB-3570   Inspirations Select button misplaced in WP 4.9.<\\/li>\\n<li>Bug fix:      JIRA WPB-3593   Changes require to help Staging support new Customizer scheduler.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.1<\\/h4>\\n\\n<ul>\\n<li>Update:                       Updates to library.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5<\\/h4>\\n\\n<ul>\\n<li>Update:                       Bump version.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.11<\\/h4>\\n\\n<ul>\\n<li>Update:                       Bump version.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.10<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-3336   All and Default categories do not align.<\\/li>\\n<li>Bug fix:      JIRA WPB-3337   On a fresh install, Pages - New From GridBlocks fails.<\\/li>\\n<li>Bug fix:      JIRA WPB-3333   Image search only searching one provider instead of all.<\\/li>\\n<li>Bug fix:      JIRA WPB-3346   Edit Image button not working for attachment.<\\/li>\\n<li>Bug fix:      JIRA WPB-3387   Loading GridBlocks just spins.<\\/li>\\n<li>Update:       JIRA WPB-3352   Purchase coins through BoldGrid Central.<\\/li>\\n<li>Update:       JIRA WPB-3355   Add data-image-url attribute.<\\/li>\\n<li>Update:       JIRA WPB-3382   More descriptive creative commons icon.<\\/li>\\n<li>Update:       JIRA WPB-3384   Add License details to attachment details.<\\/li>\\n<li>Update:       JIRA WPB-3383   Filter out boldgrid-gridblock-set-preview-page.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.9<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-3318   When forcing a preferred form plugin install, first check if plugin is installed before trying to activate.<\\/li>\\n<li>Bug fix:      JIRA WPB-3312   Ensure activation of preferred form plugin.  Added filter for preferred slug.<\\/li>\\n<li>Bug fix:      JIRA WPB-3317   New page from GridBlocks not working.<\\/li>\\n<li>Update:       JIRA WPB-3252   Disable \'default\' category and configure \'showcase\'.<\\/li>\\n<li>Bug fix:      JIRA WPB-3332   New from gridblocks button not showing.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.8<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-3200   Added WPForms support.<\\/li>\\n<li>Update:       JIRA WPB-3292   Updated plugin URI.<\\/li>\\n<li>Update:   JIRA WPB-3296 Add Inspirations as first menu item child.<\\/li>\\n<li>Bug Fix:  JIRA WPB-3274 Plugins > Add New Updates fail in modals.<\\/li>\\n<li>New feature:  JIRA WPB-3293   Resize images during deployment vs imgr server.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.7<\\/h4>\\n\\n<ul>\\n<li>Update:      JIRA WPB-3243    Change feedback admin notice display frequency.<\\/li>\\n<li>Update:      JIRA WPB-3264 Adding twitch social media option.<\\/li>\\n<li>New Feature: Added BoldGrid Library to plugin.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.6<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-3179   Gradient style being lost during normal deployment.<\\/li>\\n<li>Bug fix:      JIRA WPB-3180   Open WordPress\\/BoldGrid links in attribution page in new tab.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.5<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-3161   Fixed auto plugin update.<\\/li>\\n<li>Bug fix:      JIRA WPB-3162   Fixed issue creating .htaccess file in deployment.<\\/li>\\n<li>Bug fix:      JIRA WPB-3171   As an author, when installing a site I do not want background images to be processed.<\\/li>\\n<li>Bug fix:      JIRA WPB-3176   Background gradient \\/ url bug during deplyment.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.4<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-3151   Added check and load before using get<em>plugin<\\/em>data() for updates.<\\/li>\\n<li>Bug fix:      JIRA WPB-3141   Fixed invalid updates for BoldGrid Prime theme.<\\/li>\\n<li>Bug fix:      JIRA WPB-3158   Deployment\'s gallery updates are not saved.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.3<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-3106   As an Author, I can set background images for elements.<\\/li>\\n<li>New feature:  JIRA WPB-3095   Update generic builds to display per theme channel.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2745   Fixed upgrade notices displaying when activation version was not recorded.<\\/li>\\n<li>Update:       JIRA WPB-3019   Updating attribution link creation.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.1<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-3044   Automatically get Unsplash attribution.<\\/li>\\n<li>Update:       JIRA WPB-3043   Updating plugin description.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.0.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-3232   Deploy Staging menu item missing.<\\/li>\\n<li>Bug fix:      JIRA WPB-3233   BoldGrid Connect Search missing from new image widget.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4<\\/h4>\\n\\n<ul>\\n<li>Update:       JIRA WPB-2936   Updating YouTube videos for BoldGrid Dashboard\'s new release.<\\/li>\\n<li>Bug fix:      JIRA WPB-2927   Social media menu disappears.<\\/li>\\n<li>Update:       JIRA WPB-2949   Configure blog using categories.<\\/li>\\n<li>Bug fix:      JIRA WPB-2950   Added max height for reseller logos on login page.<\\/li>\\n<li>Bug fix:      JIRA WPB-2925   Sidebar widgets don\'t match between preview and installed site.<\\/li>\\n<li>Bug fix:      JIRA WPB-2951   Images in staging posts not being downloaded.<\\/li>\\n<li>Bug fix:      JIRA WPB-2955   Backwards compatibility - maps taking up 200px empty space.<\\/li>\\n<li>Bug fix:      JIRA WPB-2984   Attribution page 404.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.9<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2912   Fixed issue when installing plugins from the Tools Import page.<\\/li>\\n<li>Bug fix:      JIRA WPB-2916   Inspirations deploy fatal error if an old forked plugin had the original installed.<\\/li>\\n<li>Bug fix:      JIRA WPB-2905   If installing via Author, do not update pages with survey data.<\\/li>\\n<li>Bug fix:      JIRA WPB-2910   Unterminated entity reference bug.<\\/li>\\n<li>Update:       JIRA WPB-2913   Validate email address in survey.<\\/li>\\n<li>Bug fix:      JIRA WPB-2404   iframe timeout in step 2 of Inspirations.<\\/li>\\n<li>Bug fix:      JIRA WPB-2173   Error deleting image and redownloading.<\\/li>\\n<li>Bug fix:      JIRA WPB-2635   Start over staging affecting active site.<\\/li>\\n<li>Bug fix:      JIRA WPB-2493   Publish private posts during staging deployment.<\\/li>\\n<li>Bug fix:      JIRA WPB-2796   Social media urls end in \\/username, go to 404s.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.8<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2892   Fixed plugin update checks for some scenarios (WP-CLI, Plesk, etc).<\\/li>\\n<li>Update:       JIRA WPB-2900   Update verbiage of build coin cost.<\\/li>\\n<li>Bug fix:      JIRA WPB-2901   Scroll bars not visible on preview iframe in Chrome.<\\/li>\\n<li>Bug fix:                      Removing CTA hooks.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.7<\\/h4>\\n\\n<ul>\\n<li>Update:       JIRA WPB-2819   Use switch instead of checkbox for Demo.<\\/li>\\n<li>Bug fix:      JIRA WPB-2780   Theme screenshots opening directly, rather than within gallery.<\\/li>\\n<li>Update:       JIRA WPB-2825   Adjust do not display formatting.<\\/li>\\n<li>Update:       JIRA WPB-2829   Updating hook to resolve BoldGrid SEO plugin conflicts.<\\/li>\\n<li>Update:       JIRA WPB-2837   Remove loading image after selecting theme in Gallery.<\\/li>\\n<li>Update:       JIRA WPB-2839   Minor verbiage change for Add a blog.<\\/li>\\n<li>Update:       JIRA WPB-2785   Entering words with apostrophe in it for Site title displays with a Backslash.<\\/li>\\n<li>Bug fix:      JIRA WPB-2848   Customize link takes users back to Inspirations.<\\/li>\\n<li>Bug fix:      JIRA WPB-2527   \'New from GridBlocks\' preview page appearing in cart.<\\/li>\\n<li>Bug fix:      JIRA WPB-2862   Survey, invalid argument supplied for foreach.<\\/li>\\n<li>Bug fix:      JIRA WPB-2601   Inspirations Internet Explorer\\/ Stuck on loading themes.<\\/li>\\n<li>Bug fix:      JIRA WPB-2854   Downloading Image spinner never stops spinning.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.6<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2772   PHP warnings on deploy in WordPress 4.3.7.<\\/li>\\n<li>Bug fix:      JIRA WPB-2766   Plesk and WP-CLI were not getting private repo updates.<\\/li>\\n<li>Update:       JIRA WPB-2763   Update email and address on Contact Us page.<\\/li>\\n<li>Update:       JIRA WPB-2764   Remove option to add a map.<\\/li>\\n<li>Update:       JIRA WPB-2765   Allow iframes for preview builds.<\\/li>\\n<li>New feature:  JIRA WPB-2771   Update footer-company-details widget with survey data.<\\/li>\\n<li>New feature:  JIRA WPB-2777   Add an Install sample blog checkbox.<\\/li>\\n<li>New feature:  JIRA WPB-2778   Setup a blog during deployment.<\\/li>\\n<li>Bug fix:      JIRA WPB-2792   Staged posts (private posts) are trashed when starting over active site.<\\/li>\\n<li>Update:       JIRA WPB-2800   Ensure \'Install a blog\' works with Staging.<\\/li>\\n<li>Update:       JIRA WPB-2801   Remove milestones classes.<\\/li>\\n<li>Bug fix:      JIRA WPB-2779   Survey not working with Staging.<\\/li>\\n<li>Update:       JIRA WPB-2805   Preview builds w &amp; w\\/o blogs.<\\/li>\\n<li>New feature:  JIRA WPB-2806   Add filter for Inspirations configs.<\\/li>\\n<li>Bug fix:      JIRA WPB-2808   Do not request generic builds when requesting blog as well.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.5<\\/h4>\\n\\n<ul>\\n<li>Testing:      JIRA WPB-2744   Tested on WordPress 4.7.<\\/li>\\n<li>Update:       JIRA WPB-2376   Filter the bgtfw contact blocks.<\\/li>\\n<li>Update:       JIRA WPB-2476   Update case of Company name.<\\/li>\\n<li>Update:       JIRA WPB-2747   Update Add a map verbiage.<\\/li>\\n<li>Update:       JIRA WPB-2749   Add a map to my Contact page.<\\/li>\\n<li>Bug fix:      JIRA WPB-2658   Fix spacing issues atop Inspirations.<\\/li>\\n<li>Bug fix:      JIRA WPB-2751   Show all in the smaller view of inspirations doesn\'t work anymore.<\\/li>\\n<li>Bug fix:      JIRA WPB-2757   Apostrophe and other strange characters installed via Inspirations.<\\/li>\\n<li>Bug fix:      JIRA WPB-2759   DOMDocument::loadHTML(): htmlParseEntityRef: expecting \';\'.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.4<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2696   Remove placeholders from survey.<\\/li>\\n<li>New feature:  JIRA WPB-2697   Update phone numbers in widgets.<\\/li>\\n<li>New feature:  JIRA WPB-2699   Use phone number entered during survey.<\\/li>\\n<li>Update:       JIRA WPB-2704   Adjust format of how social media icons are saved.<\\/li>\\n<li>New feature:  JIRA WPB-2705   Use survey social media items when creating menu.<\\/li>\\n<li>Update:       JIRA WPB-2711   Show optional message in survey.<\\/li>\\n<li>Update:       JIRA WPB-2712   Have plus sign toggle more social icons.<\\/li>\\n<li>Update:       JIRA WPB-2723   Update phone in pages.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.3<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2627   Back \\/ next buttons should not be clickable.<\\/li>\\n<li>Bug fix:      JIRA WPB-2625   Behavior of last image\'s next button in Inspirations.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.2<\\/h4>\\n\\n<ul>\\n<li>Update:       JIRA WPB-2582   Always show arrows in Inspirations gallery.<\\/li>\\n<li>Update:       JIRA WPB-2583   Ensure first letter in theme\'s title attribute is capitalized.<\\/li>\\n<li>Update:       JIRA WPB-2599   Add placeholder for 4th step to Inspirations.<\\/li>\\n<li>Update:       JIRA WPB-2551   Duplicate images.<\\/li>\\n<li>New feature:  JIRA WPB-2603   Add initial version of survey.<\\/li>\\n<li>Bug fix:      JIRA WPB-2622   Inspirations - Step 4 - Go back button installs site.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.1<\\/h4>\\n\\n<ul>\\n<li>Misc:         JIRA WPB-2503   Added plugin requirements to readme.txt file.<\\/li>\\n<li>Bug fix:      JIRA WPB-2539   Fix possible duplicate connection issue notice from ajax.js call.<\\/li>\\n<li>Bug fix:      JIRA WPB-2558   Don\'t display feedback widget if user hasn\'t entered their key.<\\/li>\\n<li>Bug fix:      JIRA WPB-2559   Don\'t allow widgets to drag into welcome box area.<\\/li>\\n<li>Bug fix:      JIRA WPB-2555   Images in search results flicker.<\\/li>\\n<li>Update:       JIRA WPB-2563   Convert Attribution page to use custom post type.<\\/li>\\n<li>Update:       JIRA WPB-2568   Added fancybox and large previews to Inspirations.<\\/li>\\n<li>Update:       JIRA WPB-2570   Milestone blogname change.<\\/li>\\n<li>Update:       JIRA WPB-2574   Milestone Social Media Change.<\\/li>\\n<li>Update:       JIRA WPB-2578   Milestone Contact Info Footer Change.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2544   Disable \'Install\' button after clicking it.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.13<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2531   Javascript error checking needed for mine count.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.12<\\/h4>\\n\\n<ul>\\n<li>Update:       JIRA WPB-2472   Added update notice for 1.3.<\\/li>\\n<li>Bug fix:      JIRA WPB-2486   Incorrect page count on All Pages.<\\/li>\\n<li>Bug fix:      JIRA WPB-2467   With staging disabled, Customize goes to \\\"Change Themes\\\".<\\/li>\\n<li>Update:       JIRA WPB-2488   Remove \'Permanently delete pages instead of sending to trash\'.<\\/li>\\n<li>Update:       JIRA WPB-2490   Move default option to \'install as staging\'.<\\/li>\\n<li>Update:       JIRA WPB-2491   Add \'Customize > Active Theme\' navigation to Inspirations.<\\/li>\\n<li>Bug fix:      JIRA WPB-2496   Require comment text in feedback form.<\\/li>\\n<li>Update:       JIRA WPB-2229   Update error reporting when purchasing images.<\\/li>\\n<li>Update:       JIRA WPB-2498   Change \'Company Name\' to theme name.<\\/li>\\n<li>Update:       JIRA WPB-2497   Add new dashboard videos.<\\/li>\\n<li>Bug fix:      JIRA WPB-2376   \'No search results\' method is not cleared in BGCS.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.11<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2468   Switching between boldgrid admin menu and standard wp menu no longer works.<\\/li>\\n<li>Bug fix:      JIRA WPB-2477   If you have an existing site non BG, no route for staging exists.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.10<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2446   Fixed missing build id passed on site install.<\\/li>\\n<li>Bug fix:      JIRA WPB-2426   Insert Gridblock button is missing.<\\/li>\\n<li>Bug fix:      JIRA WPB-2443   When starting over, I get a blank page.<\\/li>\\n<li>Bug fix:      JIRA WBP-2445   Inspirations is not fetching cached themes.<\\/li>\\n<li>Update:       JIRA WPB-2458   Update \'Recommended\' verbiage in last step of Inspirations.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.9<\\/h4>\\n\\n<ul>\\n<li>Misc:         JIRA WPB-2420   Added EOF line breaks.<\\/li>\\n<li>Bug fix:      JIRA WPB-2387   Fixed issue with AJAX theme updates and BG theme slugs duplicated in the WP repo.<\\/li>\\n<li>Bug fix:      JIRA WPB-2324   Attribution should not show in 404 sitemap.<\\/li>\\n<li>Bug fix:      JIRA WPB-2403   No plugins recommended still showing notice.<\\/li>\\n<li>Update:       JIRA WPB-2416   Text changes for confirmation section of Inspirations.<\\/li>\\n<li>Update:       JIRA WPB-2417   Add additional text to deployment success page for staging.<\\/li>\\n<li>Bug fix:      JIRA WPB-2421   Message showing when it shouldn\'t - We\'ve recognized that you haven\'t installed...<\\/li>\\n<li>Bug fix:      JIRA WPB-2112   BoldGrid Connect Search missing for galleries.<\\/li>\\n<li>Bug fix:      JIRA WPB-2422   Fixed CSS Loading graphic animation in chrome to display properly.<\\/li>\\n<li>Bug fix:      JIRA WPB-2401   Gallery not displaying correctly in Chrome &amp;&amp; FF.<\\/li>\\n<li>Bug fix:      JIRA WPB-2423   Trying to get property of non-object in ...stock-photography.php.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.8<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2398   Error requesting free key.<\\/li>\\n<li>Bug fix:      JIRA WPB-2399   Only show feedback widget to admins.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.7<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2389   Fixed saving BoldGrid Settings.<\\/li>\\n<li>Bug fix:      JIRA WPB-2388   Removed duplicate boldgrid_activate().<\\/li>\\n<li>Update:       JIRA WPB-2390   Update verbiage for inspirations install success.<\\/li>\\n<li>Bug fix:      JIRA WPB-2391   Hide BoldGrid Welcome Panel if key isn\'t entered yet.<\\/li>\\n<li>Bug fix:      JIRA WPB-2392   If key is less than 32 char don\'t make call to validate.<\\/li>\\n<li>Bug fix:      JIRA WPB-2393   Error messages should be removed when resubmitting keys.<\\/li>\\n<li>Bug fix:      JIRA WPB-2394   Cursor for show\\/hide log should be a pointer.<\\/li>\\n<li>Update:       JIRA WPB-2395   Update login page styling.<\\/li>\\n<li>Bug fix:      JIRA WPB-2396   Remove staging from recommended plugin notices.<\\/li>\\n<li>Bug fix:      JIRA WPB-2327   Check if framework is handling plugin recommendations before recommending.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.6<\\/h4>\\n\\n<ul>\\n<li>Misc:         JIRA WPB-2344   Updated readme.txt for Tested up to 4.6.1.<\\/li>\\n<li>Bug fix:      JIRA WPB-2336   Load BoldGrid settings from the correct WP option (site\\/blog).<\\/li>\\n<li>Bug fix:      JIRA WPB-2248   Removed \'New From GridBlocks\' button on edit submission page.<\\/li>\\n<li>Bug fix:      JIRA WPB-2332   Reset scroll position on step 2 of Inspirations to top.<\\/li>\\n<li>Bug fix:      JIRA WPB-2339   Remove notices from Inspirations page.<\\/li>\\n<li>Update:       JIRA WPB-2208   Removed tutorials from Inspirations.<\\/li>\\n<li>Update:       JIRA WPB-2359   Order \'Category Filter\' by category display order.<\\/li>\\n<li>Update:       JIRA WPB-2360   Sort themes by category and then order within category.<\\/li>\\n<li>Update:       JIRA WPB-2368   Read version constant from plugin file.<\\/li>\\n<li>Update:       JIRA WPB-2361   Add BoldGrid Connect Search to Editor\'s background image tool.<\\/li>\\n<li>Update:       JIRA WPB-2354   Preview button needs to always be visible in mobile view.<\\/li>\\n<li>Update:       JIRA WPB-2355   Remove extraneous \'Preview\' button.<\\/li>\\n<li>Bug fix:      JIRA WPB-2364   Inspirations not respecting theme release channel.<\\/li>\\n<li>Bug fix:      JIRA WPB-2370   Color in screenshot does not match preview.<\\/li>\\n<li>Bug fix:      JIRA WPB-2373   Duplicate themes in Inspirations.<\\/li>\\n<li>Bug fix:      JIRA WPB-2379   Wrong budget passed when going form step 2 to step 1.<\\/li>\\n<li>Update:       JIRA WPB-2380   Remove references to tutorials in deployment congrats message.<\\/li>\\n<li>Bug fix:      JIRA WPB-2383   Image Search tab appears when clicking \'Add GridBlock\'.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.5<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2325   Added wrapper to handle mb<em>convert<\\/em>encoding() if mbstring is not loaded.<\\/li>\\n<li>Bug fix:      JIRA WPB-2313   Disabled GridBlocks in network admin pages.<\\/li>\\n<li>New feature:  JIRA WPB-2268   Changed to resized preview screenshots for Inspirations Design First concept.<\\/li>\\n<li>New feature:  JIRA WPB-2287   Adjust device preview buttons in step 2 to behave like those in editor.<\\/li>\\n<li>New feature:  JIRA WPB-2291   Auto install staging in final step if user chooses staging.<\\/li>\\n<li>Update:       JIRA WPB-2290   Changed \'Install\' button to \'Next\'.<\\/li>\\n<li>Bug fix:      JIRA WPB-2289   Continuously clicking category in step 1 shuffles themes.<\\/li>\\n<li>Update:       JIRA WPB-2267   Added message to Inspirations when no generic themes are available.<\\/li>\\n<li>Update:       JIRA WPB-2315   Added error handling for malformed ajax results for call to \\/api\\/build\\/get-generic.<\\/li>\\n<li>Update:       JIRA WPB-2316   Add error handling for failures to fetch categories.<\\/li>\\n<li>Update:       JIRA WPB-2317   Add error handling for failures to fetch pagesets.<\\/li>\\n<li>Update:       JIRA WPB-2319   Check user capabilities before prompting for api key.<\\/li>\\n<li>Update:       JIRA WPB-2320   Ensure user has permission to edit page before allowing download<em>and<\\/em>insert<em>into<\\/em>page.<\\/li>\\n<li>Update:       JIRA WPB-2322   Sanitize user feedback before adding to options table.<\\/li>\\n<li>Update:       JIRA WPB-2323   Allow admin notices to be dismissed per user.<\\/li>\\n<li>Update:       JIRA WPB-2326   Update \'update\' class to utilize Admin Notices class.<\\/li>\\n<li>Update:       JIRA WPB-2327   Check user capabilities before showing admin notices.<\\/li>\\n<li>Update:       JIRA WPB-2331   Update confirmation messages.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.4<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2269   Typo fix in Boldgrid<em>Inspirations<\\/em>Dependency<em>Plugins::print<\\/em>uninstalled_plugins().<\\/li>\\n<li>Bug fix:      JIRA WPB-2270   New From GridBlocks became unavailable.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.3<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-2172   For preview generic builds, added an option for identification for purges, etc.<\\/li>\\n<li>Bug fix:      JIRA WPB-2263   For preview sites under multisite, set the admin email address using the network admin email address.<\\/li>\\n<li>Bug fix:      JIRA WPB-2223   Reworked API key validation and connection issue notices, formatting.<\\/li>\\n<li>Misc:         JIRA WPB-2256   Updated readme.txt for Tested up to: 4.6.<\\/li>\\n<li>Rework:       JIRA WPB-2150   Moved API methods to a new class, formatting, and phpcs rework.<\\/li>\\n<li>Bug fix:      JIRA WPB-2224   Hide the email address field when widget is loaded.<\\/li>\\n<li>Bug fix:      JIRA WPB-2225   Fixed jQuery Migrate deprecated warning.<\\/li>\\n<li>Update:       JIRA WPB-2245   Changed feed to pull from dashboard tag on blog.<\\/li>\\n<li>Bug fix:      JIRA WPB-2265   Uncaught TypeError: IMHWPB.BaseAdmin is not a constructor.<\\/li>\\n<li>Bug fix:      JIRA WBP-2236   Errors everywhere when logging in as an Editor.<\\/li>\\n<li>Bug fix:      JIRA WPB-2234   Add current<em>user<\\/em>can checks to Boldgrid<em>Inspirations->set<\\/em>api<em>key<\\/em>callback().<\\/li>\\n<li>Bug fix:      JIRA WPB-2237   Limit ajax requests by user.<\\/li>\\n<li>Bug fix:      JIRA WPB-2240   Limit printing of configs in head.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2058   Added wrap class to the tutorials page.<\\/li>\\n<li>Bug fix:      JIRA WPB-2184   In PHP 5.2, deactivate and die properly.<\\/li>\\n<li>New feature:                  Added BoldGrid news widget to dashboard.<\\/li>\\n<li>Bug fix:      JIRA WPB-1994   Fixed issue with WP Theme Editor not being available.<\\/li>\\n<li>New feature:                  Added BoldGrid Feedback widget.<\\/li>\\n<li>Bug fix:      JIRA WPB-2169   Connect Search defaults to smallest image size when no recommended sizes available.<\\/li>\\n<li>Bug fix:    JIRA WPB-2192 Allow bug report to correctly show parent themes if submitted.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2160   New From GridBlocks, multiple pages are installed.<\\/li>\\n<li>Update:                       Changed text of getting and entering connect keys.<\\/li>\\n<li>Security:     JIRA WPB-2151   Disabled autocomplete for API key entry fields.<\\/li>\\n<li>Bug fix:      JIRA WPB-2145   Fixing issue with theme screenshots on Chrome Ubuntu.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2119   For asset downloads, when Imagick is loaded, set the thread limit to 1.<\\/li>\\n<li>Bug fix:      JIRA WPB-2125   Fixing issue where theme was overwritten without version change.<\\/li>\\n<li>Bug fix:      JIRA WPB-2104   Go back button hides all themes (Inspirations > Add Theme).<\\/li>\\n<li>Bug fix:      JIRA WPB-2107   BoldGrid Connect Search overlapping footer (Dashboard > Media).<\\/li>\\n<li>Bug fix:      JIRA WPB-2109   Session issues when starting over and importing active site.<\\/li>\\n<li>Bug fix:      JIRA WPB-2116   Changes to the order of images in a gallery are not saving.<\\/li>\\n<li>Bug fix:      JIRA WPB-2134   Staging\'s boldgrid_attribution option and \'Uninitialized string offset\' Notice.<\\/li>\\n<li>Bug fix:      JIRA WPB-2135   Image not replaced in Page &amp; Post Editor after using Connect Search.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.8<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2058   Added wrap class to Inspirations, so admin notices are displayed at the top.<\\/li>\\n<li>Bug fix:      JIRA WPB-2041   Fixed BoldGrid theme update check in WordPress 4.6.<\\/li>\\n<li>Testing:      JIRA WPB-2046   Tested on WordPress 4.5.3.<\\/li>\\n<li>New feature:  JIRA WPB-599    Added options for plugin and theme auto-updates via WordPress autoupdater.<\\/li>\\n<li>Update:       JIRA WPB-2008   Deploy class updated to allow for is_generic flag.<\\/li>\\n<li>Bug fix:      JIRA WPB-1950   Prevent a portait image from displaying atop \'Crop Image\' and \'Skip Cropping\' buttons.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.7<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2032   Fixed issue when activating key.  Added nonce to api key form.<\\/li>\\n<li>Rework:       JIRA WPB-2030   Updated the \\\"I don\'t have an API key\\\" section.<\\/li>\\n<li>New feature:  JIRA WPB-2029   Added TOS box to API key submission form.<\\/li>\\n<li>New feature:  JIRA WPB-1905   Added capability for auto-updates of boldgrid-inspirations by API response.<\\/li>\\n<li>Bug fix:      JIRA WPB-2002   Fixed theme update issue where upgrader says is up to date at times.<\\/li>\\n<li>Bug fix:      JIRA WPB-2006   Pdes and Homepage not installing correctly on Inpirations Theme Only installs.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.6<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-1839   Users can now change their theme release channel.<\\/li>\\n<li>Security fix: JIRA WPB-1977   Validate nonce for feedback form diagnostic data callback and form submit.<\\/li>\\n<li>Bug fix:      JIRA WPB-1955   Fatal error: Class \'Boldgrid<em>Staging<\\/em>Plugin\' not found.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.5<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1914   Staged image used on Active page not showing in cart.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.4<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1886   Fixed feedback notice being displayed too often (more than a week after submitting).<\\/li>\\n<li>New feature:  JIRA WPB-1183   Refresh the Library Tab after downloading an image.<\\/li>\\n<li>Update:       JIRA WPB-1865   Update style of \'Transactions\' pages to better incorporate BoldGrid Staging\'s nav menu.<\\/li>\\n<li>Update:       JIRA WPB-1884   Passed WordPress 4.5.1 testing.<\\/li>\\n<li>Bug fix:      JIRA WPB-1855   Do not display feedback notice on update or setting pages.<\\/li>\\n<li>Bug fix:      JIRA WPB-1860   Fixed horizontal line through screenshot in step 2.<\\/li>\\n<li>Bug fix:      JIRA WPB-1863   Cart does not look for watermarked images used within staged pages.<\\/li>\\n<li>Bug fix:      JIRA WPB-1891   View \\/ Download of images within receipts not working for images purchased via Staging.<\\/li>\\n<li>Bug fix:      JIRA WPB-1893   JS errors in console when viewing attachments.<\\/li>\\n<li>Bug fix:      JIRA WPB-1900   Attribution shows in menu when menu generated using wp<em>page<\\/em>menu.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.3<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1824   Fixed order of plugin deactivation and uninstall in Start Over process.<\\/li>\\n<li>Bug fix:      JIRA WPB-1814   Fixed PHP notice in page and post editor for In Menu when there is a corrupted nav menu array.<\\/li>\\n<li>Bug fix:      JIRA WPB-1823   Fixed display of \\\"Themes\\\" H1 and the additional themes bar when choosing active or staging before installing a theme.<\\/li>\\n<li>Bug fix:      JIRA WPB-1840   Fixing thumbnail presentation in inspirations and add new theme.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.2.3<\\/h4>\\n\\n<ul>\\n<li>Update:               Sync version. See version 1.1.1.1.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.2.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1833   Fixed checking for previously downloaded assets in deployment when using multisite (wp-preview).<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.2.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1817   BoldGrid Connect Search: Was not being added when changing a header image in the Customizer.<\\/li>\\n<li>Rework:       JIRA WPB-1541   Removed feedback form bug report diagnostic report items.<\\/li>\\n<li>Bug fix:      JIRA WPB-1816   Fixed update class interference with the Add Plugins page.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1809   Fixed undefined index \\\"action\\\" for some scenarios.  Optimized update class and addressed CodeSniffer items.<\\/li>\\n<li>Rework:       JIRA WPB-1541   Reworked admin feedback notice.<\\/li>\\n<li>Rework:       JIRA WPB-1751   Removed analysis processing and optional logging capabilities.  Added support for XHProf.<\\/li>\\n<li>Bug fix:      JIRA WPB-1805   Now adds theme update info on the Customizer Themes page.<\\/li>\\n<li>Rework:       JIRA WPB-1785   Enabled and reworked image caching for the preview server.<\\/li>\\n<li>Rework:       JIRA WPB-1751   Reworked analysis processing.<\\/li>\\n<li>Update:       JIRA WPB-1658   Storing more reliable install data through inspirations.<\\/li>\\n<li>Bug fix:      JIRA WPB-1787   When not using BoldGrid menu, cart does not dynamically update total page price.<\\/li>\\n<li>Update:       JIRA WPB-1754   Remove attribution page from search results.<\\/li>\\n<li>Bug fix:      JIRA WPB-1788   webkit css missing from \'new from gridblocks\'.<\\/li>\\n<li>New feature:  JIRA WPB-1806   Add \'BoldGrid search\' tab when replacing an image.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.1.1<\\/h4>\\n\\n<ul>\\n<li>Bug Fix:                      Fixing logo display on login screen.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:                      Fixed analysis include for preview server.<\\/li>\\n<li>Bug fix:                      New From GridBlocks: Asset download issues.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-1751   Added analysis processing and optional logging capabilities.<\\/li>\\n<li>Bug fix:      JIRA WPB-1781   Removed boldgrid<em>dismissed<\\/em>admin_notices from Start Over cleanup.<\\/li>\\n<li>New feature:  JIRA WPB-1541   Added feedback notice.<\\/li>\\n<li>Bug fix:      JIRA WPB-1747   New From GridBlocks: For non BoldGrid themes, only load grid css.<\\/li>\\n<li>Bug fix:      JIRA WPB-1760   New From GridBlocks: Ensure page title shows on preview page.<\\/li>\\n<li>Update:       JIRA WPB-1779   New From GridBlocks: Update verbiage for \'Downloading GridBlocks\'.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.12.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1710   Fixed missing device preview tabs on Add New Theme preview modal.<\\/li>\\n<li>Bug fix:      JIRA WPB-1710   Fixed notice dismissal checking.<\\/li>\\n<li>Bug fix:      JIRA WPB-1749   On start over, staging menus are not deleted.<\\/li>\\n<li>Bug fix:      JIRA WPB-1755   Gallery images not showing in cart.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.12<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1740   Fixed \\\"In Menu\\\" messages in editor when staging plugin is not active, and fixed saving menu selections.<\\/li>\\n<li>New feature:  JIRA WPB-1726   Added optional feedback for GridBlock Add Page.<\\/li>\\n<li>Removed Ft:   JIRA WPB-1710   Removed Inspirations Add Pages; replaced by GridBlocks.<\\/li>\\n<li>Misc:         JIRA WPB-1361   Added license file.<\\/li>\\n<li>New feature:                  Don\'t assign footer contact widget if using base pagesets.<\\/li>\\n<li>Bug Fix:      JIRA WPB-1732   Fixing css issues on login screen (firefox).<\\/li>\\n<li>Bug Fix:      JIRA WPB-1687   Image search: Title, Caption, Alt Text and Description do not display on new pages.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.11<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-1699   Added optional feedback for theme activation.<\\/li>\\n<li>New feature:  JIRA WPB-1690   Adding BoldGrid themes to All themes install menu.<\\/li>\\n<li>Bug fix:      JIRA WPB-1686   Limited items loaded in network admin pages.<\\/li>\\n<li>Improvement:  JIRA WPB-1604   Added a \\\"Cancel\\\" link to the \\\"In Menu\\\" section.<\\/li>\\n<li>Improvement:  JIRA WPB-1603   Display menu locations in the editor \\\"In Menu\\\" section.<\\/li>\\n<li>Bug fix:      JIRA WPB-1602   Corrected capitalization of \\\"None\\\" under \\\"In menu\\\" in the editor.<\\/li>\\n<li>Improvement:  JIRA WPB-1664   Gets api<em>key and site<\\/em>hash from configs instead of get_option.<\\/li>\\n<li>Bug fix:      JIRA WPB-1597   Fixing indefined index error<\\/li>\\n<li>New feature:  JIRA WPB-1649   Added reporting of PHP version and mobile ratio.<\\/li>\\n<li>Bug fix:      JIRA WPB-1598   \'Mine\' count on \'all pages\' is incorrect.<\\/li>\\n<li>Bug fix:      JIRA WPB-1647   JS error with easy-attachment-preview-size.js.<\\/li>\\n<li>Bug fix:      JIRA WPB-1651   When the BG menu is turned off, Appearance link should take you to themes.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.10<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1632   Fixed handling of subcategory<em>id in deploy<\\/em>page_sets.<\\/li>\\n<li>New feature:  JIRA WPB-1510   Moved adhoc functions.php to class-boldgrid-inspirations-utility.php (class Boldgrid<em>Inspirations<\\/em>Utility).<\\/li>\\n<li>Rework:       JIRA WPB-1553   Updated require and include statements for standards.<\\/li>\\n<li>Bug fix:      JIRA WPB-1563   Updated pages in which wp<em>iframe-media<\\/em>upload.css is loaded.<\\/li>\\n<li>Bug fix:      JIRA WPB-1549   Resolve attribution page missing attribution for several images.png.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.9.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:                      Add GridBlock Sets feature disabled.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.9.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1553   Fixed support for PHP 5.2 to deactivate plugin.<\\/li>\\n<li>Bug fix:                      Prevent click of links in add<em>new<\\/em>page_selection previews.<\\/li>\\n<li>Bug fix:      JIRA WPB-1554   Fixed undefined JavaScript variable pagenow for customizer link.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.9<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1554   Fixed theme link in network dashboard nav menu.<\\/li>\\n<li>Bug fix:      JIRA WPB-1590   Fixed JavaScript error for undefined screen info in network dashboard.<\\/li>\\n<li>Bug fix:      JIRA WPB-1535   Fixed theme deployment issues.<\\/li>\\n<li>New feature:  JIRA WPB-1584   Added an opt-out feedback payload delivery system.<\\/li>\\n<li>New feature:  JIRA WPB-1580   Added optional feedback for customizer_start.<\\/li>\\n<li>Bug fix:      JIRA WPB-1571   Removed plugin dependency admin notice when editing an attachment (image).<\\/li>\\n<li>New feature:  JIRA WPB-1579   Added feedback opt-out in BoldGrid Settings, hidden for now.<\\/li>\\n<li>Bug fix:      JIRA WPB-1575   Addressed an issue causing mismatch color palettes on cached previews<\\/li>\\n<li>New feature:  JIRA WPB-1514   Add new pages offers page templates to choose from.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.8.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1553   Fixed PHP version check condition (&lt;5.3).<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.8<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1561   Fixed missing get<em>plugin<\\/em>data on update calls.<\\/li>\\n<li>New feature:  JIRA WPB-1511   Added dependency plugin notice on editor pages.<\\/li>\\n<li>Bug fix:      JIRA WPB-1553   Added support for <strong>DIR<\\/strong> in PHP &lt;=5.2.<\\/li>\\n<li>Bug fix:      JIRA WPB-1371   JSON encoded image data for media download requests.<\\/li>\\n<li>New feature:  JIRA WPB-1332   Swapping loading GIF to CSS loading image.<\\/li>\\n<li>New feature:  JIRA WPB-1072   Storing static pages on install<\\/li>\\n<li>New feature:  JIRA WPB-1539   When deleting a page, remove it from any applicable menus as well.<\\/li>\\n<li>New feature   JIRA WPB-1542   Manage menu assignment within editor.<\\/li>\\n<li>New feature   JIRA WPB-1555   Add wp-image-## class to images during deployment.<\\/li>\\n<li>New feature   JIRA WPB-1557   Add wp-image-## class to images when adding gridblocks.<\\/li>\\n<li>Bug fix:      JIRA WPB-1506   Theme naming missing in preview.<\\/li>\\n<li>Bug fix:      JIRA WPB-1443   Extra page listed under \'Mine\'.<\\/li>\\n<li>Bug fix:      JIRA WPB-1560   Install options not available on preview server<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.7<\\/h4>\\n\\n<ul>\\n<li>Rework:       JIRA WPB-1533   Ensured activation data is sent after first login.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.7<\\/h4>\\n\\n<ul>\\n<li>Rework:       JIRA WPB-1533   Ensured activation data is sent after first login.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.6<\\/h4>\\n\\n<ul>\\n<li>Rework:       JIRA WPB-1411   Added more output to the deploy log.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.5<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1462   Fixed position of dependency plugins admin notice.  Also limited to Dashboard and plugins page.<\\/li>\\n<li>Bug fix:      JIRA WPB-1290   Fixing issues with galleries leaving empty spaces<\\/li>\\n<li>Bug fix:      JIRA WPB-1471   Made deployment plugin installation respect release channel.<\\/li>\\n<li>Rework:       JIRA WPB-1452   Remove unneeded call to \'boldgrid<em>activate<\\/em>framework\' during deployment.<\\/li>\\n<li>Bug fix:      JIRA WPB-946    Fixed margin bug on step 2 additional themes.<\\/li>\\n<li>Bug fix:      JIRA WPB-1384   Increase width of select input on image search modal.<\\/li>\\n<li>Bug fix:      JIRA WPB-1508   BoldGrid Image search box size is inconsistent.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.4<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1442   Fixing inspiration border styles for wordpress 4.4<\\/li>\\n<li>Bug fix:      JIRA WPB-1461   Updating login button styles for wordpress 4.4<\\/li>\\n<li>Bug fix:      JIRA WPB-1411   Added initialization and checks for empty image queues in deployment.<\\/li>\\n<li>Bug fix:      JIRA WPB-1406   Attribution page still showing in \'All Pages\'.<\\/li>\\n<li>Bug fix:      JIRA WPB-1451   Active images are showing in Staging attribution page.<\\/li>\\n<li>Bug fix:      JIRA WPB-1466   Tabs on tutorials page too small at 1035px - 1482px.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.3<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-1363   Updated readme.txt for WordPress standards.<\\/li>\\n<li>New feature:  JIRA WPB-1389   When starting over theme mods are saved with a flag to recompile sass<\\/li>\\n<li>Bug fix:      JIRA WPB-1420   Content of Attribution page is overwriting page saves.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1395   Adjusted theme update data; now gets theme uri from theme style.css, download url from api data.<\\/li>\\n<li>Rework        JIRA WPB-1374   Updated activation timestamp to use GMT\\/UTC.<\\/li>\\n<li>Bug fix:      JIRA WPB-1377   Reseller option is now set on first call to either the front end or wp_login.<\\/li>\\n<li>Bug fix:                      Adjusted handling for image purchases when errors occur.<\\/li>\\n<li>Bug fix:      JIRA WPB-1365   Purchase link on editing a page goes to wrong link.<\\/li>\\n<li>Bug fix:      JIRA WPB-1368   Inspirations step 0 text refers to nonexisting help tabs.<\\/li>\\n<li>Rework:       JIRA WPB-1378   Adjusted formatting of footer in Dashboard.<\\/li>\\n<li>Rework:       JIRA WPB-1369   Update minus signs on \'Transaction History\'.<\\/li>\\n<li>New feature:  JIRA WPB-1379   On the transactions page, show the reseller that processed the credits.<\\/li>\\n<li>Bug fix:                      Count of \'All\' pages inaccurate on \'All pages\'.<\\/li>\\n<li>Bug fix:      JIRA WPB-1367   Updated link for \'Lost your BoldGrid Connect Key?\'.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1374   Updated activation timestamp to include timezone in UTC.<\\/li>\\n<li>Bug fix:                      Attribution page shows style tags.<\\/li>\\n<li>Bug fix:                      Strict Standards fix for wp<em>kses<\\/em>allowed_html.<\\/li>\\n<li>Bug fix:                      Fixed incorrect link.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0<\\/h4>\\n\\n<ul>\\n<li>Initial public release.<\\/li>\\n<\\/ul>\\n\",\"upgrade_notice\":\"<h4>1.3<\\/h4>\\n\\n<p>Version 1.3 has been released with a redesigned Inspiration phase. For more information on this change and others, please visit our blog at https:\\/\\/www.boldgrid.com\\/boldgrid-1-3-released\\/ .<\\/p>\\n\\n<h4>1.0.2<\\/h4>\\n\\n<p>Users should upgrade to version 1.0.2 to ensure proper BoldGrid theme updates.<\\/p>\\n\"}\";s:7:\"siteurl\";s:25:\"https://www.boldgrid.com/\";s:13:\"compatibility\";s:92344:\"{\"6.1.1\":{\"2.7.5\":[100,95]},\"6.1\":{\"2.7.5\":[100,95]},\"6.0.3\":{\"2.7.5\":[100,95]},\"6.0.2\":{\"2.7.5\":[100,95]},\"6.0.1\":{\"2.7.5\":[100,95]},\"6.0\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.9.5\":{\"2.7.5\":[100,95]},\"5.9.4\":{\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.9.3\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.9.2\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.9.1\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.9\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.8.6\":{\"2.7.5\":[100,95]},\"5.8.5\":{\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.8.4\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.8.3\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.8.2\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.8.1\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.8\":{\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.7.8\":{\"2.7.5\":[100,95]},\"5.7.7\":{\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.7.6\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.7.5\":{\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.7.4\":{\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.7.3\":{\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.7.2\":{\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.7.1\":{\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.7\":{\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.6.9\":{\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.6.8\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.6.7\":{\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.6.6\":{\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.6.5\":{\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.6.4\":{\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.6.3\":{\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.6.2\":{\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.6.10\":{\"2.7.5\":[100,95]},\"5.6.1\":{\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.6\":{\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.5.9\":{\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.5.8\":{\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.5.7\":{\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.5.6\":{\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.5.5\":{\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.5.4\":{\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.5.3\":{\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.5.2\":{\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.5.1\":{\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.5\":{\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.4.9\":{\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.4.8\":{\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.4.7\":{\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.4.6\":{\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.4.5\":{\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.4.4\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.4.3\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.4.2\":{\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.4.1\":{\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.4\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.3.9\":{\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.3.8\":{\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.3.7\":{\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.3.6\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.3.5\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.3.4\":{\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.3.3\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.3.2\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.3.1\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.3\":{\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.2.9\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.2.8\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.2.7\":{\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.2.6\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.2.5\":{\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.2.4\":{\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.2.3\":{\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.2.2\":{\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.2.1\":{\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.2\":{\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.1.8\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.1.7\":{\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.1.6\":{\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.1.5\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.1.4\":{\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.1.3\":{\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.1.2\":{\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.1.1\":{\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.1\":{\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.0.9\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.0.8\":{\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.0.7\":{\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.0.6\":{\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.0.5\":{\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.0.4\":{\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.0.3\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.0.2\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.0.10\":{\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.0.1\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"5.0\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.9.9\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.9.8\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.9.7\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.9.6\":{\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.9.5\":{\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.9.4\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.9.3\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.9.2\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.9.14\":{\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.9.13\":{\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.9.12\":{\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.9.11\":{\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.9.10\":{\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.9.1\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.9\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.8.9\":{\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.8.8\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.8.7\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.8.6\":{\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.8.5\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.8.4\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.8.3\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.8.2\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.8.10\":{\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.8.1\":{\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.8\":{\"1.4.0.1\":[100,12],\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.7.9\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.7.8\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.7.7\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.7.6\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.7.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.7.4\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.7.3\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.7.2\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.7.13\":{\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.7.12\":{\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.7.11\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.7.10\":{\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.7.1\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.7\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.6.9\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.6.8\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.6.7\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.6.6\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.6.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.6.4\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.6.3\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.6.2\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.6.12\":{\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.6.11\":{\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.6.10\":{\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.6.1\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.6\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.5.9\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.5.8\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.5.7\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.5.6\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.5.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.5.4\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.5.3\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.5.2\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.5.12\":{\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.5.11\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.5.10\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.5.1\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.4.9\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.4.8\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.4.7\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.4.6\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.4.5\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.4.10\":{\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]},\"4.3.1\":{\"0.29\":[100,12],\"1.0.2\":[100,12],\"1.0.3\":[100,12],\"1.0.4\":[100,12],\"1.0.5\":[100,12],\"1.0.6\":[100,12],\"1.0.7\":[100,12],\"1.0.8.1\":[100,12],\"1.0.9.1\":[100,12],\"1.0.9.2\":[100,12],\"1.0.10\":[100,12],\"1.0.11\":[100,12],\"1.0.12.1\":[100,12],\"1.1.1\":[100,12],\"1.1.2.1\":[100,12],\"1.1.2.3\":[100,12],\"1.1.1.1\":[100,12],\"1.1.3\":[100,12],\"1.1.4\":[100,12],\"1.1.5\":[100,12],\"1.1.6\":[100,12],\"1.1.7\":[100,12],\"1.1.8\":[100,12],\"1.2\":[100,12],\"1.2.1\":[100,12],\"1.2.2\":[100,12],\"1.2.4\":[100,12],\"1.2.5\":[100,12],\"1.2.8\":[100,12],\"1.2.9\":[100,12],\"1.2.11\":[100,12],\"1.2.13\":[100,12],\"1.3\":[100,12],\"1.3.1\":[100,12],\"1.3.2\":[100,12],\"1.3.3\":[100,12],\"1.3.4\":[100,12],\"1.3.5\":[100,12],\"1.3.6\":[100,12],\"1.3.7\":[100,12],\"1.3.8\":[100,12],\"1.3.9\":[100,12],\"1.3.10\":[100,12],\"1.4\":[100,12],\"1.4.1\":[100,12],\"1.4.2\":[100,12],\"1.4.3\":[100,12],\"1.4.4\":[100,12],\"1.4.5\":[100,12],\"1.4.6\":[100,12],\"1.4.0.1\":[100,12],\"1.4.7\":[100,95],\"1.4.8\":[100,95],\"1.4.9\":[100,95],\"1.4.10\":[100,95],\"1.4.11\":[100,95],\"1.5\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6-rc.1\":[100,95],\"1.5.6\":[100,95],\"1.5.7\":[100,95],\"1.5.8\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.6.2\":[100,95],\"1.6.3\":[100,95],\"1.6.4\":[100,95],\"1.6.5\":[100,95],\"1.7.0-rc.1\":[100,95],\"1.7.0-rc.2\":[100,95],\"2.0.0-rc.1\":[100,95],\"2.0.0-rc.2\":[100,95],\"2.0.0-rc.3\":[100,95],\"2.0.0\":[100,95],\"2.0.1\":[100,95],\"2.0.2\":[100,95],\"2.0.3\":[100,95],\"2.0.4\":[100,95],\"2.0.5\":[100,95],\"2.0.6\":[100,95],\"2.0.7\":[100,95],\"2.1.0-rc.1\":[100,95],\"2.1.0\":[100,95],\"2.1.1\":[100,95],\"2.2.0\":[100,95],\"2.2.1\":[100,95],\"2.2.2\":[100,95],\"2.3.0\":[100,95],\"2.3.1\":[100,95],\"2.4.0\":[100,95],\"2.4.1\":[100,95],\"2.4.2\":[100,95],\"2.4.3\":[100,95],\"2.4.4\":[100,95],\"2.5.0\":[100,95],\"2.5.1\":[100,95],\"2.5.2\":[100,95],\"2.6.0\":[100,95],\"2.6.1\":[100,95],\"2.6.2\":[100,95],\"2.6.3\":[100,95],\"2.6.4\":[100,95],\"2.6.5\":[100,95],\"2.7.1\":[100,95],\"2.7.2\":[100,95],\"2.7.3\":[100,95],\"2.7.4\":[100,95],\"2.7.5\":[100,95]}}\";s:6:\"rating\";i:100;s:11:\"num_ratings\";i:100000;s:4:\"tags\";s:113:\"{\"inspiration\":\"Inspiration\",\"customization\":\"Customization\",\"build\":\"Build\",\"create\":\"Create\",\"design\":\"Design\"}\";s:7:\"banners\";s:151:\"{\"low\":\"//repo.boldgrid.com/assets/banner-inspirations-banner-772x250.png\",\"high\":\"//repo.boldgrid.com/assets/banner-inspirations-banner-1544x500.png\"}\";s:6:\"editor\";O:8:\"stdClass\":3:{s:7:\"version\";s:7:\"1.6.0.2\";s:5:\"title\";s:15:\"BoldGrid Editor\";s:8:\"asset_id\";s:6:\"900312\";}s:7:\"staging\";O:8:\"stdClass\":3:{s:7:\"version\";s:5:\"1.5.1\";s:5:\"title\";s:16:\"BoldGrid Staging\";s:8:\"asset_id\";s:6:\"876738\";}s:14:\"theme_versions\";O:8:\"stdClass\":51:{s:2:\"26\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.20.9\";s:7:\"updated\";s:10:\"2022-01-24\";s:8:\"asset_id\";i:1237030;s:7:\"package\";s:60:\"https://repo.boldgrid.com/themes/boldgrid-uptempo-1.20.9.zip\";}s:2:\"28\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.25.9\";s:7:\"updated\";s:10:\"2022-01-24\";s:8:\"asset_id\";i:1237029;s:7:\"package\";s:58:\"https://repo.boldgrid.com/themes/boldgrid-diced-1.25.9.zip\";}s:2:\"29\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.25.9\";s:7:\"updated\";s:10:\"2022-01-24\";s:8:\"asset_id\";i:1237028;s:7:\"package\";s:58:\"https://repo.boldgrid.com/themes/boldgrid-evolv-1.25.9.zip\";}s:2:\"30\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.20.9\";s:7:\"updated\";s:10:\"2022-01-24\";s:8:\"asset_id\";i:1237027;s:7:\"package\";s:63:\"https://repo.boldgrid.com/themes/boldgrid-florentine-1.20.9.zip\";}s:2:\"31\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.25.9\";s:7:\"updated\";s:10:\"2022-01-24\";s:8:\"asset_id\";i:1237026;s:7:\"package\";s:60:\"https://repo.boldgrid.com/themes/boldgrid-hifidel-1.25.9.zip\";}s:2:\"32\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.25.9\";s:7:\"updated\";s:10:\"2022-01-24\";s:8:\"asset_id\";i:1237025;s:7:\"package\";s:58:\"https://repo.boldgrid.com/themes/boldgrid-hydra-1.25.9.zip\";}s:2:\"33\";O:8:\"stdClass\":4:{s:7:\"version\";s:7:\"1.25.10\";s:7:\"updated\";s:10:\"2022-01-24\";s:8:\"asset_id\";i:1237024;s:7:\"package\";s:58:\"https://repo.boldgrid.com/themes/boldgrid-linx-1.25.10.zip\";}s:2:\"34\";O:8:\"stdClass\":4:{s:7:\"version\";s:7:\"1.25.10\";s:7:\"updated\";s:10:\"2022-01-24\";s:8:\"asset_id\";i:1236959;s:7:\"package\";s:62:\"https://repo.boldgrid.com/themes/boldgrid-pavilion-1.25.10.zip\";}s:2:\"35\";O:8:\"stdClass\":4:{s:7:\"version\";s:7:\"1.25.10\";s:7:\"updated\";s:10:\"2022-01-24\";s:8:\"asset_id\";i:1237023;s:7:\"package\";s:60:\"https://repo.boldgrid.com/themes/boldgrid-primas-1.25.10.zip\";}s:2:\"36\";O:8:\"stdClass\":4:{s:7:\"version\";s:7:\"1.20.10\";s:7:\"updated\";s:10:\"2022-01-24\";s:8:\"asset_id\";i:1237022;s:7:\"package\";s:61:\"https://repo.boldgrid.com/themes/boldgrid-resolve-1.20.10.zip\";}s:2:\"38\";O:8:\"stdClass\":4:{s:7:\"version\";s:7:\"1.25.10\";s:7:\"updated\";s:10:\"2022-01-24\";s:8:\"asset_id\";i:1237021;s:7:\"package\";s:62:\"https://repo.boldgrid.com/themes/boldgrid-vacation-1.25.10.zip\";}s:2:\"40\";O:8:\"stdClass\":4:{s:7:\"version\";s:7:\"1.25.11\";s:7:\"updated\";s:10:\"2022-10-11\";s:8:\"asset_id\";i:1267688;s:7:\"package\";s:61:\"https://repo.boldgrid.com/themes/boldgrid-gridone-1.25.11.zip\";}s:2:\"42\";O:8:\"stdClass\":4:{s:7:\"version\";s:7:\"1.18.10\";s:7:\"updated\";s:10:\"2022-01-24\";s:8:\"asset_id\";i:1237019;s:7:\"package\";s:62:\"https://repo.boldgrid.com/themes/boldgrid-venetian-1.18.10.zip\";}s:2:\"43\";O:8:\"stdClass\":4:{s:7:\"version\";s:7:\"1.18.10\";s:7:\"updated\";s:10:\"2022-01-24\";s:8:\"asset_id\";i:1237018;s:7:\"package\";s:59:\"https://repo.boldgrid.com/themes/boldgrid-haven-1.18.10.zip\";}s:2:\"44\";O:8:\"stdClass\":4:{s:7:\"version\";s:7:\"1.16.11\";s:7:\"updated\";s:10:\"2022-01-24\";s:8:\"asset_id\";i:1237017;s:7:\"package\";s:59:\"https://repo.boldgrid.com/themes/boldgrid-wedge-1.16.11.zip\";}s:2:\"45\";O:8:\"stdClass\":4:{s:7:\"version\";s:7:\"1.15.10\";s:7:\"updated\";s:10:\"2022-01-24\";s:8:\"asset_id\";i:1237016;s:7:\"package\";s:62:\"https://repo.boldgrid.com/themes/boldgrid-monument-1.15.10.zip\";}s:2:\"48\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.3.10\";s:7:\"updated\";s:10:\"2022-01-24\";s:8:\"asset_id\";i:1237015;s:7:\"package\";s:61:\"https://repo.boldgrid.com/themes/boldgrid-callaway-1.3.10.zip\";}s:2:\"49\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.3.10\";s:7:\"updated\";s:10:\"2022-01-24\";s:8:\"asset_id\";i:1236956;s:7:\"package\";s:59:\"https://repo.boldgrid.com/themes/boldgrid-swifty-1.3.10.zip\";}s:2:\"50\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.3.10\";s:7:\"updated\";s:10:\"2022-01-24\";s:8:\"asset_id\";i:1237014;s:7:\"package\";s:59:\"https://repo.boldgrid.com/themes/boldgrid-cobalt-1.3.10.zip\";}s:2:\"51\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.3.10\";s:7:\"updated\";s:10:\"2022-01-24\";s:8:\"asset_id\";i:1237013;s:7:\"package\";s:61:\"https://repo.boldgrid.com/themes/boldgrid-westview-1.3.10.zip\";}s:2:\"52\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"0.4.10\";s:7:\"updated\";s:10:\"2022-01-24\";s:8:\"asset_id\";i:1237012;s:7:\"package\";s:60:\"https://repo.boldgrid.com/themes/boldgrid-lattice-0.4.10.zip\";}s:2:\"54\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2020-05-15\";s:8:\"asset_id\";i:1097350;s:7:\"package\";s:45:\"https://repo.boldgrid.com/themes/Bolt-0.1.zip\";}s:2:\"56\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2020-06-30\";s:8:\"asset_id\";i:1110570;s:7:\"package\";s:49:\"https://repo.boldgrid.com/themes/Coherent-0.1.zip\";}s:2:\"57\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-01-29\";s:8:\"asset_id\";i:1166277;s:7:\"package\";s:49:\"https://repo.boldgrid.com/themes/SwiftyV2-0.1.zip\";}s:2:\"58\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-01-27\";s:8:\"asset_id\";i:1167731;s:7:\"package\";s:50:\"https://repo.boldgrid.com/themes/GridOneV2-0.1.zip\";}s:2:\"59\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-02-02\";s:8:\"asset_id\";i:1170404;s:7:\"package\";s:51:\"https://repo.boldgrid.com/themes/CallawayV2-0.1.zip\";}s:2:\"60\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-02-11\";s:8:\"asset_id\";i:1172882;s:7:\"package\";s:50:\"https://repo.boldgrid.com/themes/ResolveV2-0.1.zip\";}s:2:\"61\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-02-17\";s:8:\"asset_id\";i:1174594;s:7:\"package\";s:48:\"https://repo.boldgrid.com/themes/WedgeV2-0.1.zip\";}s:2:\"62\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-02-17\";s:8:\"asset_id\";i:1175323;s:7:\"package\";s:48:\"https://repo.boldgrid.com/themes/DicedV2-0.1.zip\";}s:2:\"63\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-02-25\";s:8:\"asset_id\";i:1177324;s:7:\"package\";s:47:\"https://repo.boldgrid.com/themes/LinxV2-0.1.zip\";}s:2:\"64\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-03-02\";s:8:\"asset_id\";i:1177773;s:7:\"package\";s:50:\"https://repo.boldgrid.com/themes/HifidelV2-0.1.zip\";}s:2:\"65\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-03-03\";s:8:\"asset_id\";i:1178992;s:7:\"package\";s:50:\"https://repo.boldgrid.com/themes/UptempoV2-0.1.zip\";}s:2:\"66\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-03-11\";s:8:\"asset_id\";i:1180564;s:7:\"package\";s:48:\"https://repo.boldgrid.com/themes/EvolvV2-0.1.zip\";}s:2:\"67\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-03-18\";s:8:\"asset_id\";i:1182152;s:7:\"package\";s:51:\"https://repo.boldgrid.com/themes/WestviewV2-0.1.zip\";}s:2:\"68\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-03-23\";s:8:\"asset_id\";i:1183787;s:7:\"package\";s:53:\"https://repo.boldgrid.com/themes/FlorentineV2-0.1.zip\";}s:2:\"69\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-04-01\";s:8:\"asset_id\";i:1184444;s:7:\"package\";s:52:\"https://repo.boldgrid.com/themes/CrioStarter-0.1.zip\";}s:2:\"70\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-04-07\";s:8:\"asset_id\";i:1187346;s:7:\"package\";s:51:\"https://repo.boldgrid.com/themes/VacationV2-0.1.zip\";}s:2:\"71\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-04-27\";s:8:\"asset_id\";i:1190564;s:7:\"package\";s:51:\"https://repo.boldgrid.com/themes/MonumentV2-0.1.zip\";}s:2:\"72\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-05-03\";s:8:\"asset_id\";i:1192977;s:7:\"package\";s:49:\"https://repo.boldgrid.com/themes/Hydra V2-0.1.zip\";}s:2:\"73\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-05-13\";s:8:\"asset_id\";i:1193996;s:7:\"package\";s:51:\"https://repo.boldgrid.com/themes/VenetianV2-0.1.zip\";}s:2:\"74\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2021-05-20\";s:8:\"asset_id\";i:1196830;s:7:\"package\";s:49:\"https://repo.boldgrid.com/themes/PrimasV2-0.1.zip\";}s:2:\"75\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2022-08-02\";s:8:\"asset_id\";i:1258057;s:7:\"package\";s:52:\"https://repo.boldgrid.com/themes/DH-Plumbing-0.1.zip\";}s:2:\"79\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2022-09-12\";s:8:\"asset_id\";i:1264309;s:7:\"package\";s:53:\"https://repo.boldgrid.com/themes/DH-Dentistry-0.1.zip\";}s:2:\"82\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2022-11-15\";s:8:\"asset_id\";i:1267084;s:7:\"package\";s:54:\"https://repo.boldgrid.com/themes/DH-Burger-Bar-0.1.zip\";}s:2:\"83\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2023-01-17\";s:8:\"asset_id\";i:1277218;s:7:\"package\";s:55:\"https://repo.boldgrid.com/themes/DH-Electrician-0.1.zip\";}s:2:\"86\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2023-02-07\";s:8:\"asset_id\";i:1279654;s:7:\"package\";s:46:\"https://repo.boldgrid.com/themes/Stark-0.1.zip\";}s:2:\"87\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2023-03-20\";s:8:\"asset_id\";i:1283438;s:7:\"package\";s:53:\"https://repo.boldgrid.com/themes/DH-HairSalon-0.1.zip\";}s:2:\"88\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2023-05-02\";s:8:\"asset_id\";i:1285301;s:7:\"package\";s:47:\"https://repo.boldgrid.com/themes/Resume-0.1.zip\";}s:2:\"89\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2023-05-11\";s:8:\"asset_id\";i:1285683;s:7:\"package\";s:51:\"https://repo.boldgrid.com/themes/DH-DogCare-0.1.zip\";}s:2:\"90\";O:8:\"stdClass\":4:{s:7:\"version\";s:3:\"0.1\";s:7:\"updated\";s:10:\"2023-05-19\";s:8:\"asset_id\";i:1286147;s:7:\"package\";s:51:\"https://repo.boldgrid.com/themes/DH-Wedding-0.1.zip\";}s:2:\"99\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"1.3.10\";s:7:\"updated\";s:10:\"2022-01-24\";s:8:\"asset_id\";i:1237014;s:7:\"package\";s:59:\"https://repo.boldgrid.com/themes/boldgrid-cobalt-1.3.10.zip\";}}s:9:\"site_hash\";s:32:\"00208ddff2b81e98eca5de1b131f8814\";s:19:\"reseller_identifier\";s:3:\"IMH\";s:14:\"reseller_title\";s:16:\"InMotion Hosting\";s:17:\"reseller_logo_url\";s:78:\"./wp-content/plugins/boldgrid-inspirations/assets/images/wordpressinmotion.png\";s:20:\"reseller_website_url\";s:32:\"https://www.inmotionhosting.com/\";s:20:\"reseller_support_url\";s:52:\"http://www.inmotionhosting.com/support/edu/boldgrid/\";s:16:\"reseller_amp_url\";s:55:\"https://secure1.inmotionhosting.com/amp/boldgrid/manage\";s:14:\"reseller_email\";s:27:\"support@inmotionhosting.com\";s:14:\"reseller_phone\";s:14:\"1-888-321-4678\";s:16:\"reseller_css_url\";s:71:\"/wp-content/plugins/boldgrid-inspirations/assets/css/boldgrid-login.css\";s:17:\"reseller_coin_url\";s:55:\"https://secure1.inmotionhosting.com/amp/boldgrid/manage\";s:20:\"reseller_brand_login\";b:1;s:13:\"wporg_plugins\";O:8:\"stdClass\":5:{s:6:\"backup\";O:8:\"stdClass\":6:{s:8:\"repo_url\";s:50:\"https://plugins.svn.wordpress.org/boldgrid-backup/\";s:11:\"package_url\";s:65:\"https://downloads.wordpress.org/plugin/boldgrid-backup.1.15.6.zip\";s:4:\"slug\";s:15:\"boldgrid-backup\";s:8:\"old_slug\";s:15:\"boldgrid-backup\";s:5:\"title\";s:12:\"Total Upkeep\";s:7:\"version\";s:6:\"1.15.6\";}s:6:\"editor\";O:8:\"stdClass\":6:{s:8:\"repo_url\";s:56:\"https://plugins.svn.wordpress.org/post-and-page-builder/\";s:11:\"package_url\";s:71:\"https://downloads.wordpress.org/plugin/post-and-page-builder.1.24.1.zip\";s:4:\"slug\";s:21:\"post-and-page-builder\";s:8:\"old_slug\";s:15:\"boldgrid-editor\";s:5:\"title\";s:21:\"Post and Page Builder\";s:7:\"version\";s:6:\"1.24.1\";}s:3:\"seo\";O:8:\"stdClass\":6:{s:8:\"repo_url\";s:52:\"https://plugins.svn.wordpress.org/boldgrid-easy-seo/\";s:11:\"package_url\";s:67:\"https://downloads.wordpress.org/plugin/boldgrid-easy-seo.1.6.13.zip\";s:4:\"slug\";s:17:\"boldgrid-easy-seo\";s:8:\"old_slug\";s:12:\"boldgrid-seo\";s:5:\"title\";s:17:\"BoldGrid Easy SEO\";s:7:\"version\";s:6:\"1.6.13\";}s:4:\"w3tc\";O:8:\"stdClass\":6:{s:8:\"repo_url\";s:49:\"https://plugins.svn.wordpress.org/w3-total-cache/\";s:11:\"package_url\";s:57:\"https://downloads.wordpress.org/plugin/w3-total-cache.zip\";s:4:\"slug\";s:14:\"w3-total-cache\";s:8:\"old_slug\";s:14:\"w3-total-cache\";s:5:\"title\";s:14:\"W3 Total Cache\";s:7:\"version\";N;}s:7:\"weforms\";O:8:\"stdClass\":6:{s:8:\"repo_url\";s:42:\"https://plugins.svn.wordpress.org/weforms/\";s:11:\"package_url\";s:50:\"https://downloads.wordpress.org/plugin/weforms.zip\";s:4:\"slug\";s:7:\"weforms\";s:8:\"old_slug\";s:7:\"weforms\";s:5:\"title\";s:7:\"weForms\";s:7:\"version\";N;}}s:9:\"is_author\";b:0;}}s:14:\"license_status\";b:1;s:7:\"updated\";i:1687373523;}','no'),(396186,'_site_transient_boldgrid_backup_premium_version_data','O:8:\"stdClass\":4:{s:6:\"status\";i:200;s:7:\"message\";s:2:\"OK\";s:6:\"result\";O:8:\"stdClass\":1:{s:4:\"data\";O:8:\"stdClass\":13:{s:5:\"title\";s:64:\"Total Upkeep Premium &ndash; WordPress Backup Plugin plus Restor\";s:7:\"version\";s:5:\"1.5.9\";s:8:\"asset_id\";i:1192077;s:12:\"release_date\";s:19:\"2021-04-29 14:47:06\";s:19:\"requires_wp_version\";s:3:\"4.4\";s:17:\"tested_wp_version\";s:3:\"5.8\";s:8:\"sections\";s:4823:\"{\"description\":\"<p>Premium extension for the Total Upkeep plugin.<\\/p>\\n\",\"installation\":\"<h4>Minimum Requirements<\\/h4>\\n\\n<ul>\\n<li>PHP 5.4 or higher<\\/li>\\n<\\/ul>\\n\\n<h4>Manually<\\/h4>\\n\\n<ol>\\n<li>Upload the entire boldgrid-backup-premium folder to the \\/wp-content\\/plugins\\/ directory.<\\/li>\\n<li>Activate the plugin through the Plugins menu in WordPress.<\\/li>\\n<\\/ol>\\n\",\"changelog\":\"<h4>1.5.9<\\/h4>\\n\\n<p>Release date: April 29th, 2021<\\/p>\\n\\n<ul>\\n<li>Update: Fixed nonce for restoring single files.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.8<\\/h4>\\n\\n<p>Release date: March 11th, 2021<\\/p>\\n\\n<ul>\\n<li>Update: Updated dependencies, including aws-php-sdk from version 2 to 3.<\\/li>\\n<li>Update: Adding google-drive-download.og<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.7<\\/h4>\\n\\n<p>Release date: February 16th, 2021<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixed confings type in update class.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.6<\\/h4>\\n\\n<p>Release date: December 8th, 2020<\\/p>\\n\\n<ul>\\n<li>Bug fix: Various JQMIGRATE warnings fixed.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.5<\\/h4>\\n\\n<p>Release date: December 2nd, 2020<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixed invalid nonce when downloading Amazon S3 backups.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.4<\\/h4>\\n\\n<p>Release date: October 15th, 2020<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixed issue with installing plugins.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.3<\\/h4>\\n\\n<p>Release date: October 13th, 2020<\\/p>\\n\\n<ul>\\n<li>Update: Added additional logging for Google Drive.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.2<\\/h4>\\n\\n<p>Release date: August 12th, 2020<\\/p>\\n\\n<ul>\\n<li>Update: Updated Timely Auto Updates to work with the new WordPress 5.5+ Auto Update UI.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.1<\\/h4>\\n\\n<p>Release date: July 7th, 2020<\\/p>\\n\\n<ul>\\n<li>Bug fix: Auto Update Translation filter causes fatal error with JetPack active <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/boldgrid-backup-premium\\/issues\\/50\\\">#50<\\/a><\\/li>\\n<\\/ul>\\n\\n<h4>1.5.0<\\/h4>\\n\\n<p>Release date: July 7th, 2020<\\/p>\\n\\n<ul>\\n<li>New Feature: Added Timely Auto Updates.<\\/li>\\n<\\/ul>\\n\\n<h4>1.4.0<\\/h4>\\n\\n<p>Release date: May 19th, 2020<\\/p>\\n\\n<ul>\\n<li>New feature: Google drive - shared drive support.<\\/li>\\n<li>New feature: Google drive - upload to any folder by using a folder id.<\\/li>\\n<li>Bug fix: Cleaned up Amazon libraries loaded to prevent conflict with W3TC.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.3<\\/h4>\\n\\n<p>Release date: February 19th, 2020<\\/p>\\n\\n<ul>\\n<li>Bug fix: Cannot save Google Drive on settings page.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.2<\\/h4>\\n\\n<p>Release date: February 18th, 2020<\\/p>\\n\\n<ul>\\n<li>Update: Allow Google Drive settings to be reset, and which allows for reauthorization.<\\/li>\\n<li>Update: Show error messages when validating Google Drive.<\\/li>\\n<li>Bug fix: Error 403: Daily Limit for Unauthenticated Use Exceeded.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.1<\\/h4>\\n\\n<p>Release date: December 13th, 2019<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixed filtering of archive attributes.<\\/li>\\n<\\/ul>\\n\\n<h4>1.3.0<\\/h4>\\n\\n<p>Release data: November 21th, 2019<\\/p>\\n\\n<ul>\\n<li>Update: Renamed plugin from \\\"BoldGrid Backup Premium\\\" to \\\"Total Upkeep Premium\\\".<\\/li>\\n<li>New feature: Added database dump file encryption.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.1<\\/h4>\\n\\n<p>Release date: October 1st, 2019<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fix bucket errors on archive details page.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.0<\\/h4>\\n\\n<p>Release date: October 1st, 2019<\\/p>\\n\\n<ul>\\n<li>New feature: DreamObjects support.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.2<\\/h4>\\n\\n<p>Release date: May 21th, 2019<\\/p>\\n\\n<ul>\\n<li>Bug fix: Google Drive attempting to upload archive that does not exist.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.1<\\/h4>\\n\\n<p>Release date: May 14th, 2019<\\/p>\\n\\n<ul>\\n<li>Bug fix: Themes autoupdated not showing in Tools > History.<\\/li>\\n<li>Bug fix: Incorrect theme version listed in history during autoupdate.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.0<\\/h4>\\n\\n<p>Release date: Feb 14th, 2019<\\/p>\\n\\n<ul>\\n<li>New feature: Google Drive support.<\\/li>\\n<li>Update: Composer libraries updated.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.3<\\/h4>\\n\\n<p>Release date: Dec 5th, 2018<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixed updating plugin via ajax.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.2<\\/h4>\\n\\n<p>Release date: Nov 20th, 2018<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixed ob_flush warning with S3.<\\/li>\\n<li>Bug fix: Fixed error: Invalid argument supplied for foreach().<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.1<\\/h4>\\n\\n<p>Release Date: October 25th, 2018<\\/p>\\n\\n<ul>\\n<li>Bug fix: Fixed handling of hook parameter on non-bulk plugin upgrades.<\\/li>\\n<li>Bug fix: Fatal error: Uncaught Error: Call to undefined function wp<em>generate<\\/em>password.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.0<\\/h4>\\n\\n<p>Release Date: April 11th, 2017<\\/p>\\n\\n<ul>\\n<li>Initial release.<\\/li>\\n<\\/ul>\\n\",\"upgrade_notice\":\"<h4>1.3.0<\\/h4>\\n\\n<p>BoldGrid Backup Premium has been renamed to Total Upkeep Premium.  Different name with the same great features.<\\/p>\\n\"}\";s:7:\"siteurl\";s:25:\"https://www.boldgrid.com/\";s:13:\"compatibility\";s:45643:\"{\"5.7\":{\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.6.3\":{\"1.5.9\":[100,95]},\"5.6.2\":{\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.6.1\":{\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.6\":{\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.5.4\":{\"1.5.9\":[100,95]},\"5.5.3\":{\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.5.2\":{\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.5.1\":{\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.5\":{\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.4.5\":{\"1.5.9\":[100,95]},\"5.4.4\":{\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.4.3\":{\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.4.2\":{\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.4.1\":{\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.4\":{\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.3.7\":{\"1.5.9\":[100,95]},\"5.3.6\":{\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.3.5\":{\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.3.4\":{\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.3.3\":{\"1.4.0-rc.2\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.3.2\":{\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.3.1\":{\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.3\":{\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.2.9\":{\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.2.8\":{\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.2.7\":{\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.2.6\":{\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.2.5\":{\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.2.4\":{\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.2.3\":{\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.2.2\":{\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.2.10\":{\"1.5.9\":[100,95]},\"5.2.1\":{\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.2\":{\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.1.8\":{\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.1.7\":{\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.1.6\":{\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.1.5\":{\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.1.4\":{\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.1.3\":{\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.1.2\":{\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.1.1\":{\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.1\":{\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.0.9\":{\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.0.8\":{\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.0.7\":{\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.0.6\":{\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.0.5\":{\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.0.4\":{\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.0.3\":{\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.0.2\":{\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.0.10\":{\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.0.1\":{\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"5.0\":{\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.9.9\":{\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.9.8\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.9.7\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.9.6\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.9.5\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.9.4\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.9.3\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.9.2\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.9.14\":{\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.9.13\":{\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.9.12\":{\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.9.11\":{\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.9.10\":{\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.9.1\":{\"1.0.0\":[100,12],\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.9\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.8.9\":{\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.8.8\":{\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.8.7\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.8.6\":{\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.8.5\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.8.4\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.8.3\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.8.2\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.8.10\":{\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.8.1\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.8\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.7.9\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.7.8\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.7.7\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.7.6\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.7.5\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.7.4\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.7.3\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.7.2\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.7.12\":{\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.7.11\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.7.10\":{\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.7.1\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.7\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.6.9\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.6.8\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.6.7\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.6.6\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.6.5\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.6.4\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.6.3\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.6.2\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.6.12\":{\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.6.11\":{\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.6.10\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.6.1\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]},\"4.6\":{\"1.0.0-alpha.1\":[100,95],\"1.0.0-alpha.2\":[100,95],\"1.0.0-rc.1\":[100,95],\"1.0.0-rc.2\":[100,95],\"1.0.0-rc.3\":[100,95],\"1.0.0-rc.4\":[100,95],\"1.0.1\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.1.0-rc.1\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.1.2\":[100,95],\"1.2.0-rc.1\":[100,95],\"1.2.0\":[100,95],\"1.2.1\":[100,95],\"1.3.0\":[100,95],\"1.3.1\":[100,95],\"1.3.2\":[100,95],\"1.3.3\":[100,95],\"1.4.0-rc.1\":[100,95],\"1.4.0-rc.2\":[100,95],\"1.4.0\":[100,95],\"1.5.0-rc.1\":[100,95],\"1.5.0-rc.2\":[100,95],\"1.5.0-rc.3\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3-rc.1\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.5.5\":[100,95],\"1.5.6\":[100,95],\"1.5.8\":[100,95],\"1.5.9\":[100,95]}}\";s:6:\"rating\";i:100;s:11:\"num_ratings\";i:100000;s:4:\"tags\";s:143:\"{\"backup\":\"Backup\",\"cloud backup\":\"Cloud backup\",\"database backup\":\"Database backup\",\"restore\":\"Restore\",\"wordpress backup\":\"Wordpress backup\"}\";s:7:\"banners\";s:125:\"{\"low\":\"//repo.boldgrid.com/assets/banner-backup-772x250.png\",\"high\":\"//repo.boldgrid.com/assets/banner-backup-1544x500.png\"}\";}}s:7:\"updated\";i:1687359600;}','no'),(396338,'_site_transient_timeout_browser_14d58a1ba286f087d9736249ec785314','1687978325','no'),(396339,'_site_transient_browser_14d58a1ba286f087d9736249ec785314','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"114.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(359529,'_site_transient_boldgrid_plugins_filtered','a:6:{s:39:\"boldgrid-easy-seo/boldgrid-easy-seo.php\";a:14:{s:4:\"Name\";s:17:\"BoldGrid Easy SEO\";s:9:\"PluginURI\";s:38:\"https://www.boldgrid.com/boldgrid-seo/\";s:7:\"Version\";s:6:\"1.6.10\";s:11:\"Description\";s:82:\"Easily manage your website\'s search engine optimization with Easy SEO by BoldGrid!\";s:6:\"Author\";s:31:\"BoldGrid <support@boldgrid.com>\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:5:\"bgseo\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:17:\"BoldGrid Easy SEO\";s:10:\"AuthorName\";s:31:\"BoldGrid <support@boldgrid.com>\";}s:47:\"boldgrid-inspirations/boldgrid-inspirations.php\";a:14:{s:4:\"Name\";s:21:\"BoldGrid Inspirations\";s:9:\"PluginURI\";s:47:\"https://www.boldgrid.com/boldgrid-inspirations/\";s:7:\"Version\";s:5:\"2.7.4\";s:11:\"Description\";s:177:\"Find inspiration, customize, and launch! BoldGrid Inspirations includes FREE WordPress themes and is the easiest way to launch a new WordPress site complete with custom content.\";s:6:\"Author\";s:31:\"BoldGrid <support@boldgrid.com>\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:21:\"boldgrid-inspirations\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:21:\"BoldGrid Inspirations\";s:10:\"AuthorName\";s:31:\"BoldGrid <support@boldgrid.com>\";}s:47:\"post-and-page-builder/post-and-page-builder.php\";a:14:{s:4:\"Name\";s:21:\"Post and Page Builder\";s:9:\"PluginURI\";s:103:\"https://www.boldgrid.com/boldgrid-editor/?utm_source=ppb-wp-repo&utm_medium=plugin-uri&utm_campaign=ppb\";s:7:\"Version\";s:6:\"1.21.3\";s:11:\"Description\";s:175:\"Customized drag and drop editing for posts and pages. The Post and Page Builder adds functionality to the existing TinyMCE Editor to give you easier control over your content.\";s:6:\"Author\";s:31:\"BoldGrid <support@boldgrid.com>\";s:9:\"AuthorURI\";s:87:\"https://www.boldgrid.com/?utm_source=ppb-wp-repo&utm_medium=author-uri&utm_campaign=ppb\";s:10:\"TextDomain\";s:15:\"boldgrid-editor\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:21:\"Post and Page Builder\";s:10:\"AuthorName\";s:31:\"BoldGrid <support@boldgrid.com>\";}s:63:\"post-and-page-builder-premium/post-and-page-builder-premium.php\";a:14:{s:4:\"Name\";s:29:\"Post and Page Builder Premium\";s:9:\"PluginURI\";s:60:\"https://www.boldgrid.com/wordpress-page-builder-by-boldgrid/\";s:7:\"Version\";s:5:\"1.0.6\";s:11:\"Description\";s:48:\"Premium extension for the Post and Page Builder.\";s:6:\"Author\";s:8:\"BoldGrid\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:28:\"post-and-page-buider-premium\";s:10:\"DomainPath\";s:11:\"/languagesD\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:29:\"Post and Page Builder Premium\";s:10:\"AuthorName\";s:8:\"BoldGrid\";}s:35:\"boldgrid-backup/boldgrid-backup.php\";a:14:{s:4:\"Name\";s:12:\"Total Upkeep\";s:9:\"PluginURI\";s:41:\"https://www.boldgrid.com/boldgrid-backup/\";s:7:\"Version\";s:6:\"1.15.4\";s:11:\"Description\";s:159:\"Automated backups, remote backup to Amazon S3 and Google Drive, stop website crashes before they happen and more. Total Upkeep is the backup solution you need.\";s:6:\"Author\";s:8:\"BoldGrid\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:15:\"boldgrid-backup\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:12:\"Total Upkeep\";s:10:\"AuthorName\";s:8:\"BoldGrid\";}s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";a:14:{s:4:\"Name\";s:20:\"Total Upkeep Premium\";s:9:\"PluginURI\";s:41:\"https://www.boldgrid.com/boldgrid-backup/\";s:7:\"Version\";s:5:\"1.5.9\";s:11:\"Description\";s:46:\"Premium extension for the Total Upkeep plugin.\";s:6:\"Author\";s:8:\"BoldGrid\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:15:\"boldgrid-backup\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:20:\"Total Upkeep Premium\";s:10:\"AuthorName\";s:8:\"BoldGrid\";}}','no'),(396288,'_site_transient_timeout_bgcriop_version_data','1687399144','no'),(396289,'_site_transient_bgcriop_version_data','O:8:\"stdClass\":4:{s:6:\"status\";i:200;s:7:\"message\";s:2:\"OK\";s:6:\"result\";O:8:\"stdClass\":1:{s:4:\"data\";O:8:\"stdClass\":13:{s:5:\"title\";s:12:\"Crio Premium\";s:7:\"version\";s:6:\"1.10.1\";s:8:\"asset_id\";i:1286404;s:12:\"release_date\";s:19:\"2023-05-25 19:57:08\";s:19:\"requires_wp_version\";s:3:\"4.4\";s:17:\"tested_wp_version\";s:3:\"6.2\";s:8:\"sections\";s:7379:\"{\"description\":\"<p>Premium features extension for the BoldGrid Crio Theme.<\\/p>\\n\",\"installation\":\"<h4>Minimum Requirements<\\/h4>\\n\\n<ul>\\n<li>PHP 5.4 or higher<\\/li>\\n<\\/ul>\\n\\n<h4>Manually<\\/h4>\\n\\n<ol>\\n<li>Upload the entire crio-premium folder to the \\/wp-content\\/plugins\\/ directory.<\\/li>\\n<li>Activate the plugin through the Plugins menu in WordPress.<\\/li>\\n<\\/ol>\\n\",\"changelog\":\"<h4>1.10.1<\\/h4>\\n\\n<ul>\\n<li>Update: Update php code to be PHP 8.2 Compatible by handling all Deprecated warnings.<\\/li>\\n<li>Bug Fix: Address issue where some customers where receiving fatal error when opening customizer.<\\/li>\\n<li>Update: Update BoldGrid Library to 2.13.11<\\/li>\\n<\\/ul>\\n\\n<h4>1.10.0<\\/h4>\\n\\n<ul>\\n<li>New Feature: Add responsive logo resizing tool <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/137\\\">#137<\\/a><\\/li>\\n<li>Bug Fix: Blog post - Post Meta \'New Lines\' does not work <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/119\\\">#119<\\/a><\\/li>\\n<li>Bug Fix: Syntax error due to trailing comma within register<em>post<\\/em>type <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/142\\\">#142<\\/a><\\/li>\\n<li>Enhancement: Improve P&amp;PB update notice <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/38\\\">#38<\\/a><\\/li>\\n<\\/ul>\\n\\n<h4>1.9.1<\\/h4>\\n\\n<ul>\\n<li>Bug Fix: Remove bg-background-color from CPH <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/127\\\">#127<\\/a><\\/li>\\n<\\/ul>\\n\\n<h4>1.9.0<\\/h4>\\n\\n<ul>\\n<li>New Feature: Customize the text for the post navigation links <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/113\\\">#113<\\/a><\\/li>\\n<li>New Feature: Comment Design Controls <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/114\\\">#114<\\/a><\\/li>\\n<li>New Feature: Lazy Load Blog Posts <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/115\\\">#115<\\/a><\\/li>\\n<li>New Feature: Add control to choose updated or published date for post post meta <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/116\\\">#116<\\/a><\\/li>\\n<\\/ul>\\n\\n<h4>1.8.1<\\/h4>\\n\\n<ul>\\n<li>Bug Fix: Menu Locations disappear when Page Headers saved as draft <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/109\\\">#109<\\/a><\\/li>\\n<li>Bug Fix: Cannot use a different featured image and page header background override <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/97\\\">#97<\\/a><\\/li>\\n<\\/ul>\\n\\n<h4>1.8.0<\\/h4>\\n\\n<ul>\\n<li>New Feature: Custom MegaMenus<\\/li>\\n<li>Update: Updated Unsplash hotlinks.<\\/li>\\n<\\/ul>\\n\\n<h4>1.7.2<\\/h4>\\n\\n<ul>\\n<li>Bug Fix: Preview on custom headers \\/ footers stopped working it\'s showing me the last saved one <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/94\\\">#94<\\/a><\\/li>\\n<\\/ul>\\n\\n<h4>1.7.1<\\/h4>\\n\\n<ul>\\n<li>Bug Fix: Fix featured image overrides not working properly with new opacity changes <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/pull\\/91\\\">#91<\\/a><\\/li>\\n<\\/ul>\\n\\n<h4>1.7.0<\\/h4>\\n\\n<ul>\\n<li>New Feature: Use Featured Image as Custom Page Header background <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/48\\\">#48<\\/a><\\/li>\\n<li>Bug Fix: Remove Merge \\/ Include Site Header control <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/89\\\">#89<\\/a><\\/li>\\n<\\/ul>\\n\\n<h4>1.6.1<\\/h4>\\n\\n<ul>\\n<li>Bug Fix: Resolved get<em>query<\\/em>var() fatal error resulting from $wp_query not being defined due to 3rd party plugin conflicts.<\\/li>\\n<\\/ul>\\n\\n<h4>1.6.0<\\/h4>\\n\\n<ul>\\n<li>New Feature: Add Preview to Custom Page Headers &amp; Footers before Updating <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/57\\\">#57<\\/a><\\/li>\\n<\\/ul>\\n\\n<h4>1.5.4<\\/h4>\\n\\n<ul>\\n<li>Improvement: Minor changes made to accomadate new Crio and PPB features.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.3<\\/h4>\\n\\n<ul>\\n<li>Bug Fix: Allow CPT\'s to override page header template <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/pull\\/82\\\">#82<\\/a><\\/li>\\n<li>Bug Fix: adds admin check for get<em>current<\\/em>screen <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/pull\\/84\\\">#84<\\/a><\\/li>\\n<li>Bug Fix: hide libxml internal errors<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.2<\\/h4>\\n\\n<ul>\\n<li>Bug Fix: update site-title h* in template samples.<\\/li>\\n<li>Bug Fix: Fix php notices on Inspirations Page.<\\/li>\\n<\\/ul>\\n\\n<h4>1.5.1<\\/h4>\\n\\n<ul>\\n<li>Bug Fix: Custom Header gets applied to footer <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/77\\\">#77<\\/a><\\/li>\\n<\\/ul>\\n\\n<h4>1.5.0<\\/h4>\\n\\n<ul>\\n<li>New Feature: Sticky Header Templates using the same builder as the Custom Page Headers<a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/64\\\">$64<\\/a><\\/li>\\n<li>New Feature: Footer Templates using the same builder as the Custom Page Headers<a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/65\\\">$65<\\/a><\\/li>\\n<li>New Feature: Sticky Header Template and Footer Template selection in the customizer allows users to choose to hide their footer and sticky headers on specified pages \\/ posts.<\\/li>\\n<li>Bug Fix: Add Revisions to Custom Page Headers <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/49\\\">#49<\\/a><\\/li>\\n<li>Bug Fix: Add validation when saving a Custom Page Header <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/43\\\">#43<\\/a><\\/li>\\n<li>Bug Fix: Custom Page Headers &amp; dropdown menus <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/45\\\">#45<\\/a><\\/li>\\n<\\/ul>\\n\\n<h4>1.4.0<\\/h4>\\n\\n<ul>\\n<li>Bug Fix: Custom Page Headers - Blog Page - Background Image override does not work <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/46\\\">#46<\\/a><\\/li>\\n<li>Bug Fix: Sticky Header Logo is squished <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/47\\\">#47<\\/a><\\/li>\\n<li>Bug Fix: Custom Page Headers - individual page background image breaks Easy SEO <a href=\\\"https:\\/\\/github.com\\/BoldGrid\\/crio-premium\\/issues\\/44\\\">#44<\\/a><\\/li>\\n<\\/ul>\\n\\n<h4>1.3.0<\\/h4>\\n\\n<ul>\\n<li>New Feature: New Feature: Customizer Edit Buttons v2.<\\/li>\\n<\\/ul>\\n\\n<h4>1.2.0<\\/h4>\\n\\n<ul>\\n<li>New Feature: Sticky Header layout presets.<\\/li>\\n<li>Update: Changed Custom Page Header sample layouts to reflect new starter content.<\\/li>\\n<li>Bug Fix: Sticky header not refreshing properly in customizer.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.1<\\/h4>\\n\\n<ul>\\n<li>Update: Changed location of top-level \'Crio\' menu to match the newest version ( 2.6.0 ) of Crio.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.0<\\/h4>\\n\\n<ul>\\n<li>New Feature: Custom Page Headers added.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.4<\\/h4>\\n\\n<ul>\\n<li>Updated dependencies.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.3<\\/h4>\\n\\n<ul>\\n<li>Handle the value selected by user for attribution link on frontend properly.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.2<\\/h4>\\n\\n<ul>\\n<li>Removed broken activation link from notice in certain situations.<\\/li>\\n<li>Fixed PHP errors when other BG themes are used and crio license is purchased but crio isn\'t used.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.1<\\/h4>\\n\\n<ul>\\n<li>Fixing tabs for regular\\/sticky header displaying under controls.<\\/li>\\n<li>Attribution controls should no longer be missing in the customizer.<\\/li>\\n<li>Sticky\\/fixed header should no longer be selected in customizer when activating plugin by default.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.0<\\/h4>\\n\\n<ul>\\n<li>Initial release.<\\/li>\\n<\\/ul>\\n\"}\";s:7:\"siteurl\";s:28:\"http://www.boldgrid.com/crio\";s:13:\"compatibility\";s:38652:\"{\"6.2\":{\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"6.1.3\":{\"1.10.1\":[100,95]},\"6.1.2\":{\"1.10.1\":[100,95]},\"6.1.1\":{\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"6.1\":{\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"6.0.5\":{\"1.10.1\":[100,95]},\"6.0.4\":{\"1.10.1\":[100,95]},\"6.0.3\":{\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"6.0.2\":{\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"6.0.1\":{\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"6.0\":{\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.9.7\":{\"1.10.1\":[100,95]},\"5.9.6\":{\"1.10.1\":[100,95]},\"5.9.5\":{\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.9.4\":{\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.9.3\":{\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.9.2\":{\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.9.1\":{\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.9\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.8.7\":{\"1.10.1\":[100,95]},\"5.8.6\":{\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.8.5\":{\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.8.4\":{\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.8.3\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.8.2\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.8.1\":{\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.8\":{\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.7.9\":{\"1.10.1\":[100,95]},\"5.7.8\":{\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.7.7\":{\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.7.6\":{\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.7.5\":{\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.7.4\":{\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.7.3\":{\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.7.2\":{\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.7.1\":{\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.7\":{\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.6.9\":{\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.6.8\":{\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.6.7\":{\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.6.6\":{\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.6.5\":{\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.6.4\":{\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.6.3\":{\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.6.2\":{\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.6.10\":{\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.6.1\":{\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.6\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.5.9\":{\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.5.8\":{\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.5.7\":{\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.5.6\":{\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.5.5\":{\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.5.4\":{\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.5.3\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.5.2\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.5.1\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.5\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.4.9\":{\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.4.8\":{\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.4.7\":{\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.4.6\":{\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.4.5\":{\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.4.4\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.4.3\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.4.2\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.4.1\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.4\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.3.9\":{\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.3.8\":{\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.3.7\":{\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.3.6\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.3.5\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.3.4\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.3.3\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.3.2\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.3.1\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.3\":{\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.2.9\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.2.8\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.2.7\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.2.6\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.2.5\":{\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.2.4\":{\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.2.3\":{\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.2.2\":{\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.2.1\":{\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.2\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.1.8\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.1.7\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.1.6\":{\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.1.4\":{\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.1.3\":{\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.1.2\":{\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.1.1\":{\"0.1.0\":[100,12],\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.1\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.0.8\":{\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.0.7\":{\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.0.6\":{\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.0.5\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.0.4\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.0.3\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.0.2\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.0.1\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"5.0\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"4.9.9\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"4.9.8\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"4.9.7\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"4.9.6\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"4.9.5\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"4.9.4\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"4.9.3\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"4.9.2\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"4.9.13\":{\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"4.9.12\":{\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"4.9.11\":{\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"4.9.10\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"4.9.1\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"4.9\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"4.8.9\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"4.8.8\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"4.8.7\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"4.8.6\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"4.8.5\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"4.8.4\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"4.8.3\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"4.8.2\":{\"1.0.0\":[100,95],\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]},\"4.8.10\":{\"1.0.2\":[100,95],\"1.0.3\":[100,95],\"1.0.4\":[100,95],\"1.1.0\":[100,95],\"1.1.1\":[100,95],\"1.2.0\":[100,95],\"1.3.0\":[100,95],\"1.4.0\":[100,95],\"1.5.0\":[100,95],\"1.5.1\":[100,95],\"1.5.2\":[100,95],\"1.5.3\":[100,95],\"1.5.4\":[100,95],\"1.6.0\":[100,95],\"1.6.1\":[100,95],\"1.7.0\":[100,95],\"1.7.1\":[100,95],\"1.7.2\":[100,95],\"1.8.0\":[100,95],\"1.8.1\":[100,95],\"1.9.0\":[100,95],\"1.9.1\":[100,95],\"1.10.0\":[100,95],\"1.10.1\":[100,95]}}\";s:6:\"rating\";i:100;s:11:\"num_ratings\";i:100000;s:4:\"tags\";s:37:\"{\"boldgrid\":\"Boldgrid\",\"crio\":\"Crio\"}\";s:7:\"banners\";s:141:\"{\"low\":\"//repo.boldgrid.com/assets/banner-staging-banner-772x250.png\",\"high\":\"//repo.boldgrid.com/assets/banner-staging-banner-1544x500.png\"}\";}}s:7:\"updated\";i:1687370344;}','no');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wp_options` with 228 row(s)
--

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

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

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

LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','TXlady12'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers','wp410_dfw,fse1150'),(15,1,'show_welcome_panel','1'),(16,2,'nickname','imhsupport'),(17,2,'first_name',''),(18,2,'last_name',''),(19,2,'description',''),(20,2,'rich_editing','true'),(21,2,'syntax_highlighting','true'),(22,2,'comment_shortcuts','false'),(23,2,'admin_color','fresh'),(24,2,'use_ssl','0'),(25,2,'show_admin_bar_front','true'),(26,2,'locale',''),(27,2,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(28,2,'wp_user_level','10'),(29,2,'dismissed_wp_pointers',',wp410_dfw'),(30,2,'session_tokens','a:1:{s:64:\"4feb0291569cd750cb499a46e19355b2e4d89bcfd18a1dd86319026ae9677d8a\";a:4:{s:10:\"expiration\";i:1647360808;s:2:\"ip\";s:14:\"173.231.218.25\";s:2:\"ua\";s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:97.0) Gecko/20100101 Firefox/97.0\";s:5:\"login\";i:1647188008;}}'),(31,2,'first_login','2022-03-13 16:13:28'),(32,2,'last_login','2022-03-13 16:13:28'),(33,2,'bglibDashboardOrder','1'),(34,2,'wp_dashboard_quick_press_last_post_id','4'),(35,2,'community-events-location','a:1:{s:2:\"ip\";s:13:\"173.231.218.0\";}'),(36,1,'session_tokens','a:1:{s:64:\"1ea2333fe77fa2a6087b2e00023a2c12e6a69748a18456abd2bea6120ac2c5d0\";a:4:{s:10:\"expiration\";i:1688583114;s:2:\"ip\";s:13:\"45.132.115.78\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36\";s:5:\"login\";i:1687373514;}}'),(37,1,'first_login','2022-03-23 18:59:37'),(38,1,'last_login','2023-06-21 18:51:54'),(39,1,'bglibDashboardOrder','1'),(40,1,'wp_dashboard_quick_press_last_post_id','402'),(41,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"45.132.115.0\";}'),(42,1,'wp_user-settings','editor=tinymce&libraryContent=browse'),(43,1,'wp_user-settings-time','1687373977'),(44,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:10:\"title-attr\";}'),(45,1,'closedpostboxes_page','a:0:{}'),(46,1,'metaboxhidden_page','a:4:{i:0;s:10:\"postcustom\";i:1;s:16:\"commentstatusdiv\";i:2;s:7:\"slugdiv\";i:3;s:9:\"authordiv\";}'),(47,1,'wp_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-06-21T18:56:14.462Z\";}');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wp_usermeta` with 47 row(s)
--

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

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

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

LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (2,3,'_wp_page_template','default'),(3,5,'_wp_page_template','default'),(4,7,'wpuf_form_settings','a:49:{s:11:\"redirect_to\";s:4:\"same\";s:7:\"message\";s:64:\"Thanks for contacting us! We will get in touch with you shortly.\";s:7:\"page_id\";s:0:\"\";s:3:\"url\";s:0:\"\";s:11:\"submit_text\";s:12:\"Submit Query\";s:18:\"submit_button_cond\";a:3:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_logic\";s:3:\"any\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:0:\"\";s:8:\"operator\";s:1:\"=\";s:6:\"option\";s:0:\"\";}}}s:13:\"schedule_form\";s:5:\"false\";s:14:\"schedule_start\";s:0:\"\";s:12:\"schedule_end\";s:0:\"\";s:18:\"sc_pending_message\";s:39:\"Form submission hasn\'t been started yet\";s:18:\"sc_expired_message\";s:30:\"Form submission is now closed.\";s:13:\"require_login\";s:5:\"false\";s:17:\"req_login_message\";s:36:\"You need to login to submit a query.\";s:13:\"limit_entries\";s:5:\"false\";s:12:\"limit_number\";s:3:\"100\";s:13:\"limit_message\";s:57:\"Sorry, we have reached the maximum number of submissions.\";s:14:\"label_position\";s:5:\"above\";s:13:\"use_theme_css\";s:10:\"wpuf-style\";s:9:\"quiz_form\";s:2:\"no\";s:22:\"shuffle_question_order\";s:2:\"no\";s:13:\"release_grade\";s:16:\"after_submission\";s:18:\"respondent_can_see\";a:3:{i:0;s:16:\"missed_questions\";i:1;s:15:\"correct_answers\";i:2;s:12:\"point_values\";}s:12:\"total_points\";i:0;s:16:\"enable_multistep\";b:0;s:26:\"multistep_progressbar_type\";s:11:\"progressive\";s:21:\"humanpresence_enabled\";b:0;s:21:\"payment_paypal_images\";s:68:\"https://www.paypalobjects.com/webstatic/mktg/logo/AM_mc_vs_dc_ae.jpg\";s:20:\"payment_paypal_label\";s:6:\"PayPal\";s:20:\"payment_stripe_label\";s:11:\"Credit Card\";s:21:\"payment_stripe_images\";a:4:{i:0;s:4:\"visa\";i:1;s:10:\"mastercard\";i:2;s:4:\"amex\";i:3;s:8:\"discover\";}s:25:\"payment_stripe_deactivate\";s:0:\"\";s:11:\"stripe_mode\";s:4:\"live\";s:14:\"stripe_page_id\";s:0:\"\";s:20:\"stripe_override_keys\";s:0:\"\";s:12:\"stripe_email\";s:0:\"\";s:10:\"stripe_key\";s:0:\"\";s:17:\"stripe_secret_key\";s:0:\"\";s:15:\"stripe_key_test\";s:0:\"\";s:22:\"stripe_secret_key_test\";s:0:\"\";s:20:\"stripe_prefill_email\";s:0:\"\";s:23:\"stripe_user_email_field\";s:0:\"\";s:25:\"payment_paypal_deactivate\";s:0:\"\";s:11:\"paypal_mode\";s:4:\"live\";s:11:\"paypal_type\";s:5:\"_cart\";s:15:\"paypal_override\";s:0:\"\";s:12:\"paypal_email\";s:0:\"\";s:14:\"paypal_page_id\";s:0:\"\";s:20:\"paypal_prefill_email\";s:0:\"\";s:23:\"paypal_user_email_field\";s:0:\"\";}'),(5,7,'notifications','a:1:{i:0;a:14:{s:6:\"active\";s:4:\"true\";s:4:\"type\";s:5:\"email\";s:5:\"smsTo\";s:0:\"\";s:7:\"smsText\";s:45:\"[{form_name}] New Form Submission #{entry_id}\";s:4:\"name\";s:18:\"Admin Notification\";s:7:\"subject\";s:45:\"[{form_name}] New Form Submission #{entry_id}\";s:2:\"to\";s:13:\"{admin_email}\";s:7:\"replyTo\";s:13:\"{field:email}\";s:7:\"message\";s:12:\"{all_fields}\";s:8:\"fromName\";s:11:\"{site_name}\";s:11:\"fromAddress\";s:13:\"{admin_email}\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:12:\"weforms_cond\";a:3:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_logic\";s:3:\"any\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:0:\"\";s:8:\"operator\";s:1:\"=\";s:6:\"option\";s:0:\"\";}}}}}'),(6,7,'integrations','a:0:{}'),(7,11,'wpuf_form_settings','a:16:{s:11:\"redirect_to\";s:4:\"same\";s:7:\"message\";s:214:\"<span id=\"nf-drawer-content\"><span class=\"nf-setting-groups\"><span class=\"nf-field-settings\">Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\";s:7:\"page_id\";s:5:\"72532\";s:3:\"url\";s:0:\"\";s:11:\"submit_text\";s:6:\"Submit\";s:13:\"schedule_form\";s:5:\"false\";s:14:\"schedule_start\";s:0:\"\";s:12:\"schedule_end\";s:0:\"\";s:18:\"sc_pending_message\";s:44:\"Form submission hasn&#039;t been started yet\";s:18:\"sc_expired_message\";s:30:\"Form submission is now closed.\";s:13:\"require_login\";s:5:\"false\";s:17:\"req_login_message\";s:36:\"You need to login to submit a query.\";s:13:\"limit_entries\";s:5:\"false\";s:12:\"limit_number\";s:4:\"1000\";s:13:\"limit_message\";s:57:\"Sorry, we have reached the maximum number of submissions.\";s:14:\"label_position\";s:5:\"above\";}'),(8,11,'notifications','a:1:{i:0;a:10:{s:6:\"active\";b:1;s:4:\"name\";s:18:\"Admin Notification\";s:7:\"subject\";s:17:\"Form 1 submission\";s:2:\"to\";s:13:\"{admin_email}\";s:7:\"replyTo\";s:0:\"\";s:7:\"message\";s:12:\"{all_fields}\";s:8:\"fromName\";s:0:\"\";s:11:\"fromAddress\";s:13:\"{admin_email}\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";}}'),(9,15,'wpuf_form_settings','a:16:{s:11:\"redirect_to\";s:4:\"same\";s:7:\"message\";s:214:\"<span id=\"nf-drawer-content\"><span class=\"nf-setting-groups\"><span class=\"nf-field-settings\">Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\";s:7:\"page_id\";s:5:\"72532\";s:3:\"url\";s:0:\"\";s:11:\"submit_text\";s:6:\"Submit\";s:13:\"schedule_form\";s:5:\"false\";s:14:\"schedule_start\";s:0:\"\";s:12:\"schedule_end\";s:0:\"\";s:18:\"sc_pending_message\";s:44:\"Form submission hasn&#039;t been started yet\";s:18:\"sc_expired_message\";s:30:\"Form submission is now closed.\";s:13:\"require_login\";s:5:\"false\";s:17:\"req_login_message\";s:36:\"You need to login to submit a query.\";s:13:\"limit_entries\";s:5:\"false\";s:12:\"limit_number\";s:4:\"1000\";s:13:\"limit_message\";s:57:\"Sorry, we have reached the maximum number of submissions.\";s:14:\"label_position\";s:5:\"above\";}'),(10,15,'notifications','a:1:{i:0;a:10:{s:6:\"active\";b:1;s:4:\"name\";s:18:\"Admin Notification\";s:7:\"subject\";s:17:\"Form 2 submission\";s:2:\"to\";s:13:\"{admin_email}\";s:7:\"replyTo\";s:0:\"\";s:7:\"message\";s:12:\"{all_fields}\";s:8:\"fromName\";s:0:\"\";s:11:\"fromAddress\";s:13:\"{admin_email}\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";}}'),(11,27,'wpuf_form_settings','a:16:{s:11:\"redirect_to\";s:4:\"same\";s:7:\"message\";s:214:\"<span id=\"nf-drawer-content\"><span class=\"nf-setting-groups\"><span class=\"nf-field-settings\">Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\";s:7:\"page_id\";s:5:\"72532\";s:3:\"url\";s:0:\"\";s:11:\"submit_text\";s:6:\"Submit\";s:13:\"schedule_form\";s:5:\"false\";s:14:\"schedule_start\";s:0:\"\";s:12:\"schedule_end\";s:0:\"\";s:18:\"sc_pending_message\";s:44:\"Form submission hasn&#039;t been started yet\";s:18:\"sc_expired_message\";s:30:\"Form submission is now closed.\";s:13:\"require_login\";s:5:\"false\";s:17:\"req_login_message\";s:36:\"You need to login to submit a query.\";s:13:\"limit_entries\";s:5:\"false\";s:12:\"limit_number\";s:4:\"1000\";s:13:\"limit_message\";s:57:\"Sorry, we have reached the maximum number of submissions.\";s:14:\"label_position\";s:5:\"above\";}'),(12,27,'notifications','a:1:{i:0;a:10:{s:6:\"active\";b:1;s:4:\"name\";s:18:\"Admin Notification\";s:7:\"subject\";s:17:\"Form 3 submission\";s:2:\"to\";s:13:\"{admin_email}\";s:7:\"replyTo\";s:0:\"\";s:7:\"message\";s:12:\"{all_fields}\";s:8:\"fromName\";s:0:\"\";s:11:\"fromAddress\";s:13:\"{admin_email}\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";}}'),(13,42,'wpuf_form_settings','a:16:{s:11:\"redirect_to\";s:4:\"same\";s:7:\"message\";s:214:\"<span id=\"nf-drawer-content\"><span class=\"nf-setting-groups\"><span class=\"nf-field-settings\">Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\";s:7:\"page_id\";s:5:\"72532\";s:3:\"url\";s:0:\"\";s:11:\"submit_text\";s:6:\"Submit\";s:13:\"schedule_form\";s:5:\"false\";s:14:\"schedule_start\";s:0:\"\";s:12:\"schedule_end\";s:0:\"\";s:18:\"sc_pending_message\";s:44:\"Form submission hasn&#039;t been started yet\";s:18:\"sc_expired_message\";s:30:\"Form submission is now closed.\";s:13:\"require_login\";s:5:\"false\";s:17:\"req_login_message\";s:36:\"You need to login to submit a query.\";s:13:\"limit_entries\";s:5:\"false\";s:12:\"limit_number\";s:4:\"1000\";s:13:\"limit_message\";s:57:\"Sorry, we have reached the maximum number of submissions.\";s:14:\"label_position\";s:5:\"above\";}'),(14,42,'notifications','a:1:{i:0;a:10:{s:6:\"active\";b:1;s:4:\"name\";s:18:\"Admin Notification\";s:7:\"subject\";s:39:\"Address Form (International) submission\";s:2:\"to\";s:13:\"{admin_email}\";s:7:\"replyTo\";s:0:\"\";s:7:\"message\";s:12:\"{all_fields}\";s:8:\"fromName\";s:0:\"\";s:11:\"fromAddress\";s:13:\"{admin_email}\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";}}'),(15,50,'wpuf_form_settings','a:16:{s:11:\"redirect_to\";s:4:\"same\";s:7:\"message\";s:214:\"<span id=\"nf-drawer-content\"><span class=\"nf-setting-groups\"><span class=\"nf-field-settings\">Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\";s:7:\"page_id\";s:5:\"72532\";s:3:\"url\";s:0:\"\";s:11:\"submit_text\";s:6:\"Submit\";s:13:\"schedule_form\";s:5:\"false\";s:14:\"schedule_start\";s:0:\"\";s:12:\"schedule_end\";s:0:\"\";s:18:\"sc_pending_message\";s:44:\"Form submission hasn&#039;t been started yet\";s:18:\"sc_expired_message\";s:30:\"Form submission is now closed.\";s:13:\"require_login\";s:5:\"false\";s:17:\"req_login_message\";s:36:\"You need to login to submit a query.\";s:13:\"limit_entries\";s:5:\"false\";s:12:\"limit_number\";s:4:\"1000\";s:13:\"limit_message\";s:57:\"Sorry, we have reached the maximum number of submissions.\";s:14:\"label_position\";s:5:\"above\";}'),(16,50,'notifications','a:1:{i:0;a:10:{s:6:\"active\";b:1;s:4:\"name\";s:18:\"Admin Notification\";s:7:\"subject\";s:28:\"Address Form (US) submission\";s:2:\"to\";s:13:\"{admin_email}\";s:7:\"replyTo\";s:0:\"\";s:7:\"message\";s:12:\"{all_fields}\";s:8:\"fromName\";s:0:\"\";s:11:\"fromAddress\";s:13:\"{admin_email}\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";}}'),(17,57,'wpuf_form_settings','a:16:{s:11:\"redirect_to\";s:4:\"same\";s:7:\"message\";s:214:\"<span id=\"nf-drawer-content\"><span class=\"nf-setting-groups\"><span class=\"nf-field-settings\">Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\";s:7:\"page_id\";s:5:\"72532\";s:3:\"url\";s:0:\"\";s:11:\"submit_text\";s:6:\"Submit\";s:13:\"schedule_form\";s:5:\"false\";s:14:\"schedule_start\";s:0:\"\";s:12:\"schedule_end\";s:0:\"\";s:18:\"sc_pending_message\";s:44:\"Form submission hasn&#039;t been started yet\";s:18:\"sc_expired_message\";s:30:\"Form submission is now closed.\";s:13:\"require_login\";s:5:\"false\";s:17:\"req_login_message\";s:36:\"You need to login to submit a query.\";s:13:\"limit_entries\";s:5:\"false\";s:12:\"limit_number\";s:4:\"1000\";s:13:\"limit_message\";s:57:\"Sorry, we have reached the maximum number of submissions.\";s:14:\"label_position\";s:5:\"above\";}'),(18,57,'notifications','a:1:{i:0;a:10:{s:6:\"active\";b:1;s:4:\"name\";s:18:\"Admin Notification\";s:7:\"subject\";s:35:\"Email Form (Traditional) submission\";s:2:\"to\";s:13:\"{admin_email}\";s:7:\"replyTo\";s:0:\"\";s:7:\"message\";s:12:\"{all_fields}\";s:8:\"fromName\";s:0:\"\";s:11:\"fromAddress\";s:13:\"{admin_email}\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";}}'),(19,62,'wpuf_form_settings','a:16:{s:11:\"redirect_to\";s:4:\"same\";s:7:\"message\";s:214:\"<span id=\"nf-drawer-content\"><span class=\"nf-setting-groups\"><span class=\"nf-field-settings\">Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\";s:7:\"page_id\";s:5:\"72532\";s:3:\"url\";s:0:\"\";s:11:\"submit_text\";s:8:\"Register\";s:13:\"schedule_form\";s:5:\"false\";s:14:\"schedule_start\";s:0:\"\";s:12:\"schedule_end\";s:0:\"\";s:18:\"sc_pending_message\";s:44:\"Form submission hasn&#039;t been started yet\";s:18:\"sc_expired_message\";s:30:\"Form submission is now closed.\";s:13:\"require_login\";s:5:\"false\";s:17:\"req_login_message\";s:36:\"You need to login to submit a query.\";s:13:\"limit_entries\";s:5:\"false\";s:12:\"limit_number\";s:4:\"1000\";s:13:\"limit_message\";s:57:\"Sorry, we have reached the maximum number of submissions.\";s:14:\"label_position\";s:5:\"above\";}'),(20,62,'notifications','a:1:{i:0;a:10:{s:6:\"active\";b:1;s:4:\"name\";s:18:\"Admin Notification\";s:7:\"subject\";s:50:\"Event Registration Form (Group Support) submission\";s:2:\"to\";s:13:\"{admin_email}\";s:7:\"replyTo\";s:0:\"\";s:7:\"message\";s:12:\"{all_fields}\";s:8:\"fromName\";s:0:\"\";s:11:\"fromAddress\";s:13:\"{admin_email}\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";}}'),(21,66,'wpuf_form_settings','a:16:{s:11:\"redirect_to\";s:4:\"same\";s:7:\"message\";s:214:\"<span id=\"nf-drawer-content\"><span class=\"nf-setting-groups\"><span class=\"nf-field-settings\">Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\";s:7:\"page_id\";s:5:\"72532\";s:3:\"url\";s:0:\"\";s:11:\"submit_text\";s:8:\"Register\";s:13:\"schedule_form\";s:5:\"false\";s:14:\"schedule_start\";s:0:\"\";s:12:\"schedule_end\";s:0:\"\";s:18:\"sc_pending_message\";s:44:\"Form submission hasn&#039;t been started yet\";s:18:\"sc_expired_message\";s:30:\"Form submission is now closed.\";s:13:\"require_login\";s:5:\"false\";s:17:\"req_login_message\";s:36:\"You need to login to submit a query.\";s:13:\"limit_entries\";s:5:\"false\";s:12:\"limit_number\";s:4:\"1000\";s:13:\"limit_message\";s:57:\"Sorry, we have reached the maximum number of submissions.\";s:14:\"label_position\";s:5:\"above\";}'),(22,66,'notifications','a:1:{i:0;a:10:{s:6:\"active\";b:1;s:4:\"name\";s:18:\"Admin Notification\";s:7:\"subject\";s:34:\"Event Registration Form submission\";s:2:\"to\";s:13:\"{admin_email}\";s:7:\"replyTo\";s:0:\"\";s:7:\"message\";s:12:\"{all_fields}\";s:8:\"fromName\";s:0:\"\";s:11:\"fromAddress\";s:13:\"{admin_email}\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";}}'),(23,70,'wpuf_form_settings','a:16:{s:11:\"redirect_to\";s:4:\"same\";s:7:\"message\";s:214:\"<span id=\"nf-drawer-content\"><span class=\"nf-setting-groups\"><span class=\"nf-field-settings\">Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\";s:7:\"page_id\";s:5:\"72532\";s:3:\"url\";s:0:\"\";s:11:\"submit_text\";s:6:\"Submit\";s:13:\"schedule_form\";s:5:\"false\";s:14:\"schedule_start\";s:0:\"\";s:12:\"schedule_end\";s:0:\"\";s:18:\"sc_pending_message\";s:44:\"Form submission hasn&#039;t been started yet\";s:18:\"sc_expired_message\";s:30:\"Form submission is now closed.\";s:13:\"require_login\";s:5:\"false\";s:17:\"req_login_message\";s:36:\"You need to login to submit a query.\";s:13:\"limit_entries\";s:5:\"false\";s:12:\"limit_number\";s:4:\"1000\";s:13:\"limit_message\";s:57:\"Sorry, we have reached the maximum number of submissions.\";s:14:\"label_position\";s:5:\"above\";}'),(24,70,'notifications','a:1:{i:0;a:10:{s:6:\"active\";b:1;s:4:\"name\";s:18:\"Admin Notification\";s:7:\"subject\";s:35:\"Information Request Form submission\";s:2:\"to\";s:13:\"{admin_email}\";s:7:\"replyTo\";s:0:\"\";s:7:\"message\";s:12:\"{all_fields}\";s:8:\"fromName\";s:0:\"\";s:11:\"fromAddress\";s:13:\"{admin_email}\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";}}'),(25,75,'wpuf_form_settings','a:16:{s:11:\"redirect_to\";s:4:\"same\";s:7:\"message\";s:214:\"<span id=\"nf-drawer-content\"><span class=\"nf-setting-groups\"><span class=\"nf-field-settings\">Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\";s:7:\"page_id\";s:5:\"72532\";s:3:\"url\";s:0:\"\";s:11:\"submit_text\";s:6:\"Submit\";s:13:\"schedule_form\";s:5:\"false\";s:14:\"schedule_start\";s:0:\"\";s:12:\"schedule_end\";s:0:\"\";s:18:\"sc_pending_message\";s:44:\"Form submission hasn&#039;t been started yet\";s:18:\"sc_expired_message\";s:30:\"Form submission is now closed.\";s:13:\"require_login\";s:5:\"false\";s:17:\"req_login_message\";s:36:\"You need to login to submit a query.\";s:13:\"limit_entries\";s:5:\"false\";s:12:\"limit_number\";s:4:\"1000\";s:13:\"limit_message\";s:57:\"Sorry, we have reached the maximum number of submissions.\";s:14:\"label_position\";s:5:\"above\";}'),(26,75,'notifications','a:1:{i:0;a:10:{s:6:\"active\";b:1;s:4:\"name\";s:18:\"Admin Notification\";s:7:\"subject\";s:36:\"Shipping Information Form submission\";s:2:\"to\";s:13:\"{admin_email}\";s:7:\"replyTo\";s:0:\"\";s:7:\"message\";s:12:\"{all_fields}\";s:8:\"fromName\";s:0:\"\";s:11:\"fromAddress\";s:13:\"{admin_email}\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";}}'),(27,85,'wpuf_form_settings','a:16:{s:11:\"redirect_to\";s:4:\"same\";s:7:\"message\";s:214:\"<span id=\"nf-drawer-content\"><span class=\"nf-setting-groups\"><span class=\"nf-field-settings\">Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\";s:7:\"page_id\";s:5:\"72532\";s:3:\"url\";s:0:\"\";s:11:\"submit_text\";s:7:\"Sign Up\";s:13:\"schedule_form\";s:5:\"false\";s:14:\"schedule_start\";s:0:\"\";s:12:\"schedule_end\";s:0:\"\";s:18:\"sc_pending_message\";s:44:\"Form submission hasn&#039;t been started yet\";s:18:\"sc_expired_message\";s:30:\"Form submission is now closed.\";s:13:\"require_login\";s:5:\"false\";s:17:\"req_login_message\";s:36:\"You need to login to submit a query.\";s:13:\"limit_entries\";s:5:\"false\";s:12:\"limit_number\";s:4:\"1000\";s:13:\"limit_message\";s:57:\"Sorry, we have reached the maximum number of submissions.\";s:14:\"label_position\";s:5:\"above\";}'),(28,85,'notifications','a:1:{i:0;a:10:{s:6:\"active\";b:1;s:4:\"name\";s:18:\"Admin Notification\";s:7:\"subject\";s:27:\"New Sign Up Form submission\";s:2:\"to\";s:13:\"{admin_email}\";s:7:\"replyTo\";s:0:\"\";s:7:\"message\";s:12:\"{all_fields}\";s:8:\"fromName\";s:0:\"\";s:11:\"fromAddress\";s:13:\"{admin_email}\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";}}'),(29,88,'wpuf_form_settings','a:16:{s:11:\"redirect_to\";s:4:\"same\";s:7:\"message\";s:214:\"<span id=\"nf-drawer-content\"><span class=\"nf-setting-groups\"><span class=\"nf-field-settings\">Thank you for getting in touch with us! We will try our best to respond back to you within 24 hours.</span></span></span>\";s:7:\"page_id\";s:5:\"72532\";s:3:\"url\";s:0:\"\";s:11:\"submit_text\";s:6:\"Submit\";s:13:\"schedule_form\";s:5:\"false\";s:14:\"schedule_start\";s:0:\"\";s:12:\"schedule_end\";s:0:\"\";s:18:\"sc_pending_message\";s:44:\"Form submission hasn&#039;t been started yet\";s:18:\"sc_expired_message\";s:30:\"Form submission is now closed.\";s:13:\"require_login\";s:5:\"false\";s:17:\"req_login_message\";s:36:\"You need to login to submit a query.\";s:13:\"limit_entries\";s:5:\"false\";s:12:\"limit_number\";s:4:\"1000\";s:13:\"limit_message\";s:57:\"Sorry, we have reached the maximum number of submissions.\";s:14:\"label_position\";s:5:\"above\";}'),(30,88,'notifications','a:1:{i:0;a:10:{s:6:\"active\";b:1;s:4:\"name\";s:18:\"Admin Notification\";s:7:\"subject\";s:33:\"Customer Feedback Form submission\";s:2:\"to\";s:13:\"{admin_email}\";s:7:\"replyTo\";s:0:\"\";s:7:\"message\";s:12:\"{all_fields}\";s:8:\"fromName\";s:0:\"\";s:11:\"fromAddress\";s:13:\"{admin_email}\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";}}'),(31,98,'_menu_item_type','post_type'),(32,98,'_menu_item_menu_item_parent','0'),(33,98,'_menu_item_object_id','97'),(34,98,'_menu_item_object','page'),(35,98,'_menu_item_target',''),(36,98,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(37,98,'_menu_item_xfn',''),(38,98,'_menu_item_url',''),(765,97,'boldgrid_hide_page_title','0'),(40,97,'boldgrid_page_id','555'),(387,239,'bgseo_description','Estates at Nuevo offers Dining, from Fine to Casual Dining Dining Fine Dining Casual Dining'),(386,239,'bgseo_title','Dining Fine Dining Casual Dining are all at Estates at Nuevo'),(447,239,'boldgrid_hide_page_title','1'),(49,99,'boldgrid_page_id','19'),(50,102,'_menu_item_type','post_type'),(51,102,'_menu_item_menu_item_parent','0'),(52,102,'_menu_item_object_id','101'),(53,102,'_menu_item_object','page'),(54,102,'_menu_item_target',''),(55,102,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56,102,'_menu_item_xfn',''),(57,102,'_menu_item_url',''),(58,101,'boldgrid_page_id','25'),(68,106,'_menu_item_type','post_type'),(69,106,'_menu_item_menu_item_parent','0'),(70,106,'_menu_item_object_id','105'),(71,106,'_menu_item_object','page'),(72,106,'_menu_item_target',''),(73,106,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(74,106,'_menu_item_xfn',''),(75,106,'_menu_item_url',''),(76,105,'boldgrid_page_id','20'),(295,199,'_wp_attached_file','2022/03/estates2beds.jpg'),(296,199,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:24:\"2022/03/estates2beds.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"estates2beds-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"estates2beds-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(297,200,'_wp_attached_file','2022/03/estates2deck.jpg'),(298,200,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:24:\"2022/03/estates2deck.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"estates2deck-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"estates2deck-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(86,110,'_wp_attached_file','2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg'),(87,110,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:450;s:4:\"file\";s:66:\"2022/03/randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:66:\"randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:66:\"randy-fath-k8m4Uj5JJAQ-unsplash-imhwpb-ief284x4m7hfhce-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(88,111,'_wp_attached_file','2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg'),(89,111,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:450;s:4:\"file\";s:69:\"2022/03/william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:69:\"william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:69:\"william-rouse-r1tjlHBnHzY-unsplash-imhwpb-dnfgnjtebth2xxu-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(90,112,'_wp_attached_file','2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg'),(91,112,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:450;s:4:\"file\";s:68:\"2022/03/gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:68:\"gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:68:\"gerd-schrade-l5gzNmXTzIg-unsplash-imhwpb-3uasu7s2jb9ee6u-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(92,113,'_wp_attached_file','2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg'),(93,113,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:450;s:4:\"file\";s:68:\"2022/03/leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:68:\"leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:68:\"leslie-jones-QWdMjLZqSC0-unsplash-imhwpb-2hp6n3xv4hghof3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(94,114,'_wp_attached_file','2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg'),(95,114,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:450;s:4:\"file\";s:73:\"2022/03/sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:73:\"sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:73:\"sachin-prabhashan-sBtqOe23bd0-unsplash-imhwpb-jq4d2rvv773866m-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(96,115,'_wp_attached_file','2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg'),(97,115,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:450;s:4:\"file\";s:75:\"2022/03/melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:75:\"melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:75:\"melissa-walker-horn-B8He4PJkMLg-unsplash-imhwpb-jvkfualm7vtuhiv-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(98,116,'_wp_attached_file','2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1NTLWQ0bk1Od2lRLzE5MjB4MTI4Mg_3D_3D-imhwpb-l6lnwj9f34ljpy1.jpg'),(99,116,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1282;s:4:\"file\";s:107:\"2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1NTLWQ0bk1Od2lRLzE5MjB4MTI4Mg_3D_3D-imhwpb-l6lnwj9f34ljpy1.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:107:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1NTLWQ0bk1Od2lRLzE5MjB4MTI4Mg_3D_3D-imhwpb-l6lnwj9f34ljpy1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:108:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1NTLWQ0bk1Od2lRLzE5MjB4MTI4Mg_3D_3D-imhwpb-l6lnwj9f34ljpy1-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:107:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1NTLWQ0bk1Od2lRLzE5MjB4MTI4Mg_3D_3D-imhwpb-l6lnwj9f34ljpy1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:107:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1NTLWQ0bk1Od2lRLzE5MjB4MTI4Mg_3D_3D-imhwpb-l6lnwj9f34ljpy1-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:109:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1NTLWQ0bk1Od2lRLzE5MjB4MTI4Mg_3D_3D-imhwpb-l6lnwj9f34ljpy1-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:109:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1NTLWQ0bk1Od2lRLzE5MjB4MTI4Mg_3D_3D-imhwpb-l6lnwj9f34ljpy1-1568x1047.jpg\";s:5:\"width\";i:1568;s:6:\"height\";i:1047;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:{}}}'),(100,117,'_wp_attached_file','2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg'),(101,117,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1029;s:4:\"file\";s:107:\"2022/03/aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:107:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76-300x161.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:108:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76-1024x549.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:549;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:107:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:107:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76-768x412.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:412;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:108:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76-1536x823.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:823;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:108:\"aHR0cHM6Ly9zb3VyY2UudW5zcGxhc2guY29tL1l2ZjJ0TjFzRkpzLzE5MjB4MTAyOQ_3D_3D-imhwpb-vum1s4npr643g76-1568x840.jpg\";s:5:\"width\";i:1568;s:6:\"height\";i:840;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:{}}}'),(255,179,'_wp_attached_file','2022/03/estates3rooom.jpg'),(256,179,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:25:\"2022/03/estates3rooom.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"estates3rooom-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"estates3rooom-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(257,180,'_wp_attached_file','2022/03/2-bed.jpg'),(258,180,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:540;s:6:\"height\";i:344;s:4:\"file\";s:17:\"2022/03/2-bed.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"2-bed-300x191.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"2-bed-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:15:\"Rigberto Moreno\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(259,181,'_wp_attached_file','2022/03/2bedestateplan.jpeg'),(260,181,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:497;s:6:\"height\";i:344;s:4:\"file\";s:27:\"2022/03/2bedestateplan.jpeg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"2bedestateplan-300x208.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"2bedestateplan-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1645801194\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(261,182,'_wp_attached_file','2022/03/2bedpool.jpg'),(262,182,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:20:\"2022/03/2bedpool.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"2bedpool-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"2bedpool-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(263,183,'_wp_attached_file','2022/03/2bedsuitekitchen.jpg'),(264,183,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:28:\"2022/03/2bedsuitekitchen.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"2bedsuitekitchen-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"2bedsuitekitchen-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:15:\"Rigberto Moreno\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(265,184,'_wp_attached_file','2022/03/estates-1.jpg'),(266,184,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:21:\"2022/03/estates-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"estates-1-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"estates-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(267,185,'_wp_attached_file','2022/03/estates-1bed.jpg'),(268,185,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:24:\"2022/03/estates-1bed.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"estates-1bed-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"estates-1bed-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(269,186,'_wp_attached_file','2022/03/estates-1room.jpg'),(270,186,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:25:\"2022/03/estates-1room.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"estates-1room-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"estates-1room-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(271,187,'_wp_attached_file','2022/03/estates-2bath.jpg'),(272,187,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:25:\"2022/03/estates-2bath.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"estates-2bath-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"estates-2bath-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(273,188,'_wp_attached_file','2022/03/estates-2beds.jpg'),(274,188,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:25:\"2022/03/estates-2beds.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"estates-2beds-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"estates-2beds-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(275,189,'_wp_attached_file','2022/03/estates-2pools.jpg'),(276,189,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:26:\"2022/03/estates-2pools.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"estates-2pools-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"estates-2pools-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:16:\"Rigoberto Moreno\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,190,'_wp_attached_file','2022/03/estates-4-2.jpg'),(278,190,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:540;s:6:\"height\";i:344;s:4:\"file\";s:23:\"2022/03/estates-4-2.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"estates-4-2-300x191.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"estates-4-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:16:\"Rigoberto Moreno\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,191,'_wp_attached_file','2022/03/estates-4bed-1.jpg'),(280,191,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:26:\"2022/03/estates-4bed-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"estates-4bed-1-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"estates-4bed-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:16:\"Rigoberto Moreno\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,192,'_wp_attached_file','2022/03/estates-beachland.jpg'),(282,192,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:29:\"2022/03/estates-beachland.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"estates-beachland-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"estates-beachland-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:16:\"Rigoberto Moreno\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(283,193,'_wp_attached_file','2022/03/estates-pool.jpg'),(284,193,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:24:\"2022/03/estates-pool.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"estates-pool-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"estates-pool-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:41:\"37_0_300_208.27338129496_estates-pool.jpg\";s:5:\"width\";d:300;s:6:\"height\";d:208;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:16:\"Rigoberto Moreno\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(285,194,'_wp_attached_file','2022/03/estates-walkway.jpg'),(286,194,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:27:\"2022/03/estates-walkway.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"estates-walkway-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"estates-walkway-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:16:\"Rigoberto Moreno\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(287,195,'_wp_attached_file','2022/03/estates2.jpg'),(288,195,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:20:\"2022/03/estates2.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"estates2-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"estates2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(289,196,'_wp_attached_file','2022/03/estates2a-1.jpg'),(290,196,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:23:\"2022/03/estates2a-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"estates2a-1-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"estates2a-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(291,197,'_wp_attached_file','2022/03/estates2bed.jpg'),(292,197,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:23:\"2022/03/estates2bed.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"estates2bed-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"estates2bed-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(293,198,'_wp_attached_file','2022/03/estates2bedbath.jpg'),(294,198,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:27:\"2022/03/estates2bedbath.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"estates2bedbath-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"estates2bedbath-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(130,105,'_edit_lock','1649882187:1'),(131,139,'_wp_attached_file','2022/03/estates-4.jpg'),(132,139,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:540;s:6:\"height\";i:344;s:4:\"file\";s:21:\"2022/03/estates-4.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"estates-4-300x191.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"estates-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:38:\"64_0_360_300.58252427184_estates-4.jpg\";s:5:\"width\";d:360;s:6:\"height\";d:301;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-2\";a:4:{s:4:\"file\";s:38:\"64_0_360_300.58252427184_estates-4.jpg\";s:5:\"width\";d:360;s:6:\"height\";d:301;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:16:\"Rigoberto Moreno\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(133,140,'_wp_attached_file','2022/03/estates2a.jpg'),(134,140,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:21:\"2022/03/estates2a.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"estates2a-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"estates2a-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:38:\"84_0_360_300.77922077922_estates2a.jpg\";s:5:\"width\";d:360;s:6:\"height\";d:301;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:{}}}'),(135,57,'_weforms_view_count','3194'),(136,105,'_edit_last','1'),(137,105,'_wp_page_template','default'),(138,105,'crio-premium-page-header-override','global'),(139,105,'crio-premium-page-header-select','none'),(140,105,'crio-premium-page-header-background',''),(409,105,'boldgrid_hide_page_title','global'),(142,97,'_edit_lock','1668785310:1'),(143,97,'_edit_last','1'),(144,97,'_wp_page_template','default'),(145,97,'crio-premium-page-header-override','global'),(146,97,'crio-premium-page-header-select','none'),(147,97,'crio-premium-page-header-background',''),(149,97,'bgseo_robots_index','index'),(150,97,'bgseo_robots_follow','follow'),(155,97,'bgseo_title','Estates at Nuevo at Vidanta Nuevo Vallarta'),(156,97,'bgseo_description','Estates at Nuevo discovers the best luxury vacationing has to offer, haven of high-end comfort found in the sublime jungle landscape at Vidanta Nuevo Vallarta.'),(157,97,'bgseo_custom_keyword','Estates at Nuevo'),(158,149,'_wp_attached_file','2022/03/vidanta-nuevovallarta-ataglance.jpg'),(159,149,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:922;s:4:\"file\";s:43:\"2022/03/vidanta-nuevovallarta-ataglance.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"vidanta-nuevovallarta-ataglance-300x192.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"vidanta-nuevovallarta-ataglance-1024x656.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:656;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"vidanta-nuevovallarta-ataglance-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"vidanta-nuevovallarta-ataglance-768x492.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:492;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:12:\"RUPERT PEACE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(160,149,'_wp_attachment_image_alt','Estates at Nuevo'),(162,101,'_edit_lock','1687373823:1'),(163,99,'_edit_lock','1649883587:1'),(164,3,'_edit_lock','1648573006:1'),(307,205,'_wp_attached_file','2022/03/estates3beda.jpg'),(308,205,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:24:\"2022/03/estates3beda.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"estates3beda-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"estates3beda-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(299,201,'_wp_attached_file','2022/03/estates3.jpg'),(300,201,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:20:\"2022/03/estates3.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"estates3-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"estates3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(301,202,'_wp_attached_file','2022/03/estates3bath.jpg'),(302,202,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:24:\"2022/03/estates3bath.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"estates3bath-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"estates3bath-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(303,203,'_wp_attached_file','2022/03/estates3bed-1.jpg'),(304,203,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:25:\"2022/03/estates3bed-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"estates3bed-1-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"estates3bed-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(305,204,'_wp_attached_file','2022/03/estates3bed2.jpg'),(306,204,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:24:\"2022/03/estates3bed2.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"estates3bed2-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"estates3bed2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(326,214,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:26:\"2022/03/estates4master.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"estates4master-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"estates4master-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(325,214,'_wp_attached_file','2022/03/estates4master.jpg'),(323,213,'_wp_attached_file','2022/03/estates4living.jpg'),(324,213,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:26:\"2022/03/estates4living.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"estates4living-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"estates4living-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(321,212,'_wp_attached_file','2022/03/estates4deck.jpg'),(322,212,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:24:\"2022/03/estates4deck.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"estates4deck-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"estates4deck-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(319,211,'_wp_attached_file','2022/03/estates4beddouble.jpg'),(320,211,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:29:\"2022/03/estates4beddouble.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"estates4beddouble-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"estates4beddouble-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(318,210,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:24:\"2022/03/estates4bed2.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"estates4bed2-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"estates4bed2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(317,210,'_wp_attached_file','2022/03/estates4bed2.jpg'),(311,207,'_wp_attached_file','2022/03/estates3dining-1.jpg'),(312,207,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:28:\"2022/03/estates3dining-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"estates3dining-1-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"estates3dining-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(313,208,'_wp_attached_file','2022/03/estates3rooom-1.jpg'),(314,208,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:27:\"2022/03/estates3rooom-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"estates3rooom-1-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"estates3rooom-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(315,209,'_wp_attached_file','2022/03/estates4bath.jpg'),(316,209,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:24:\"2022/03/estates4bath.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"estates4bath-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"estates4bath-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(310,206,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:26:\"2022/03/estates3deck-2.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"estates3deck-2-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"estates3deck-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(309,206,'_wp_attached_file','2022/03/estates3deck-2.jpg'),(197,164,'_wp_attached_file','2022/03/estates-4-1.jpg'),(198,164,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:540;s:6:\"height\";i:344;s:4:\"file\";s:23:\"2022/03/estates-4-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"estates-4-1-300x191.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"estates-4-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:16:\"Rigoberto Moreno\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(199,165,'_wp_attached_file','2022/03/estates-4bed.jpg'),(200,165,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:24:\"2022/03/estates-4bed.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"estates-4bed-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"estates-4bed-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:37:\"58_0_150_150_estates-4bed-300x184.jpg\";s:5:\"width\";d:150;s:6:\"height\";d:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:16:\"Rigoberto Moreno\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(201,99,'_edit_last','1'),(202,99,'_wp_page_template','default'),(203,99,'crio-premium-page-header-override','global'),(204,99,'crio-premium-page-header-select','none'),(205,99,'crio-premium-page-header-background',''),(696,99,'boldgrid_hide_page_title','0'),(207,99,'bgseo_robots_index','index'),(208,99,'bgseo_robots_follow','follow'),(210,99,'bgseo_title','Estates 4 Bedroom Luxury Condo a Vidanta 5 star property.'),(211,99,'bgseo_description','Estates 4 Bedroom Luxury Condo is one of the Vidanta 5 star properties.  This gorgeous luxury space accommodates 12 adults and 2 children.'),(212,99,'bgseo_custom_keyword','Estates 4 Bedroom Luxury Condo '),(213,99,'_thumbnail_id','164'),(215,170,'_edit_lock','1658953102:1'),(216,170,'_edit_last','1'),(217,170,'_wp_page_template','default'),(218,170,'crio-premium-page-header-override','global'),(219,170,'crio-premium-page-header-select','none'),(220,170,'crio-premium-page-header-background',''),(691,170,'boldgrid_hide_page_title','0'),(222,170,'bgseo_title','Estates 2 Bedroom Luxury Condo a Vidanta 5 star property.'),(223,170,'bgseo_description','Estates 2 Bedroom Luxury Condo is one of the Vidanta 5 star properties.  This gorgeous luxury space accommodates 6 adults and 2 children.'),(224,170,'bgseo_robots_index','index'),(225,170,'bgseo_robots_follow','follow'),(226,170,'bgseo_custom_keyword','Estates 2 Bedroom Luxury Condo'),(384,239,'crio-premium-page-header-background',''),(383,239,'crio-premium-page-header-select','none'),(382,239,'crio-premium-page-header-override','global'),(381,239,'_wp_page_template','default'),(380,239,'_edit_last','1'),(379,239,'_edit_lock','1648572322:1'),(238,173,'_edit_lock','1650199984:1'),(239,173,'_edit_last','1'),(240,173,'_wp_page_template','default'),(241,173,'crio-premium-page-header-override','global'),(242,173,'crio-premium-page-header-select','none'),(243,173,'crio-premium-page-header-background',''),(728,173,'boldgrid_hide_page_title','0'),(245,173,'bgseo_robots_index','index'),(246,173,'bgseo_robots_follow','follow'),(247,175,'_wp_attached_file','2022/03/estates3dining.jpg'),(248,175,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:26:\"2022/03/estates3dining.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"estates3dining-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"estates3dining-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(249,176,'_wp_attached_file','2022/03/estates3deck.jpg'),(250,176,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:24:\"2022/03/estates3deck.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"estates3deck-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"estates3deck-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(251,177,'_wp_attached_file','2022/03/estates3bed.jpg'),(252,177,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:23:\"2022/03/estates3bed.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"estates3bed-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"estates3bed-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(253,178,'_wp_attached_file','2022/03/estates3deck-1.jpg'),(254,178,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:26:\"2022/03/estates3deck-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"estates3deck-1-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"estates3deck-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(327,215,'_wp_attached_file','2022/03/estates4second.jpg'),(328,215,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:26:\"2022/03/estates4second.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"estates4second-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"estates4second-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(331,173,'bgseo_title','Estates 3 Bedroom Luxury Condo a Vidanta 5 star property.'),(332,173,'bgseo_description','Estates 3 Bedroom Luxury Condo is one of the Vidanta 5 star properties. This gorgeous luxury space accommodates 10 adults and 2 children under 12.'),(333,173,'bgseo_custom_keyword','Estates 3 Bedroom Luxury Condo'),(335,219,'_edit_lock','1650127646:1'),(336,219,'_edit_last','1'),(337,219,'_wp_page_template','default'),(338,219,'crio-premium-page-header-override','global'),(339,219,'crio-premium-page-header-select','none'),(340,219,'crio-premium-page-header-background',''),(727,219,'boldgrid_hide_page_title','0'),(342,219,'bgseo_robots_index','index'),(343,219,'bgseo_robots_follow','follow'),(346,219,'bgseo_title','Estates 1 Bedroom Luxury Condo a Vidanta 5 star property.'),(347,219,'bgseo_description','Estates 1 Bedroom Luxury Condo is one of the Vidanta 5 star properties. This gorgeous luxury space accommodates 4 adults. Enjoy the luxurious vacation.'),(348,219,'bgseo_custom_keyword','Estates 1 Bedroom Luxury Condo'),(742,397,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:102:\"2022/11/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw150h150fitcropsd43c371eae7b12c0b082a3295299ff68.jpg\";s:8:\"filesize\";i:8232;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw150h150fitcropsd43c371eae7b12c0b082a3295299ff68-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7272;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(741,397,'_wp_attached_file','2022/11/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw150h150fitcropsd43c371eae7b12c0b082a3295299ff68.jpg'),(360,229,'_wp_attached_file','2022/03/pool.jpg'),(361,229,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:16:\"2022/03/pool.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"pool-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"pool-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:16:\"pool-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(363,231,'_wp_attached_file','2022/03/cropped-pool.jpg'),(364,231,'_wp_attachment_context','background-image'),(365,231,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:576;s:4:\"file\";s:24:\"2022/03/cropped-pool.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"cropped-pool-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"cropped-pool-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"cropped-pool-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),(740,396,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:102:\"2022/11/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw150h150fitcropsc356da4f26423000fd3e2309ecd7effe.jpg\";s:8:\"filesize\";i:10932;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw150h150fitcropsc356da4f26423000fd3e2309ecd7effe-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9640;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(388,239,'bgseo_robots_index','index'),(389,239,'bgseo_robots_follow','follow'),(390,239,'bgseo_custom_keyword','Dining Fine Dining Casual Dining'),(394,101,'_edit_last','1'),(395,101,'_wp_page_template','default'),(396,101,'crio-premium-page-header-override','global'),(397,101,'crio-premium-page-header-select','none'),(398,101,'crio-premium-page-header-background',''),(662,101,'boldgrid_hide_page_title','0'),(400,101,'bgseo_title','General info other stuff that\'s good to know'),(401,101,'bgseo_description','General info other stuff that\'s good to know from money exchanges to daily maid service, amenities in the unit and transportation'),(402,101,'bgseo_robots_index','index'),(403,101,'bgseo_robots_follow','follow'),(404,101,'bgseo_custom_keyword','General info other stuff that\'s good to know'),(407,105,'bgseo_robots_index','index'),(408,105,'bgseo_robots_follow','follow'),(410,247,'_edit_lock','1668784533:1'),(411,247,'_edit_last','1'),(412,247,'_wp_page_template','default'),(413,247,'crio-premium-page-header-override','global'),(414,247,'crio-premium-page-header-select','none'),(415,247,'crio-premium-page-header-background',''),(730,247,'boldgrid_hide_page_title','0'),(417,247,'bgseo_robots_index','index'),(418,247,'bgseo_robots_follow','follow'),(419,249,'crio-premium-page-header-override','global'),(420,249,'crio-premium-page-header-select','none'),(421,249,'crio-premium-page-header-background',''),(422,249,'_menu_item_type','post_type'),(423,249,'_menu_item_menu_item_parent','0'),(424,249,'_menu_item_object_id','247'),(425,249,'_menu_item_object','page'),(426,249,'_menu_item_target',''),(427,249,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(428,249,'_menu_item_xfn',''),(429,249,'_menu_item_url',''),(438,3,'_edit_last','1'),(439,3,'crio-premium-page-header-override','global'),(440,3,'crio-premium-page-header-select','none'),(441,3,'crio-premium-page-header-background',''),(453,3,'boldgrid_hide_page_title','0'),(443,3,'bgseo_robots_index','index'),(444,3,'bgseo_robots_follow','follow'),(472,279,'_edit_lock','1658929203:1'),(473,279,'_edit_last','1'),(474,282,'_wp_attached_file','2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops8be761e31b1be7415d10f29d92705867.jpg'),(475,282,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:300;s:4:\"file\";s:102:\"2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops8be761e31b1be7415d10f29d92705867.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops8be761e31b1be7415d10f29d92705867-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops8be761e31b1be7415d10f29d92705867-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(476,283,'_wp_attached_file','2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops0c8d5d7cde3dce627aebf57ce0964b18.jpg'),(477,283,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:300;s:4:\"file\";s:102:\"2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops0c8d5d7cde3dce627aebf57ce0964b18.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops0c8d5d7cde3dce627aebf57ce0964b18-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops0c8d5d7cde3dce627aebf57ce0964b18-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(478,284,'_wp_attached_file','2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropseae18dc38ce56770aaf6350d456ca424.jpg'),(479,282,'_source_url','https://images.unsplash.com/photo-1464146072230-91cabc968266?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&h=300&fit=crop&s=8be761e31b1be7415d10f29d92705867&.png'),(480,284,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:300;s:4:\"file\";s:102:\"2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropseae18dc38ce56770aaf6350d456ca424.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropseae18dc38ce56770aaf6350d456ca424-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcropseae18dc38ce56770aaf6350d456ca424-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(481,283,'_source_url','https://images.unsplash.com/photo-1461409971633-aa0e46732112?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&h=300&fit=crop&s=0c8d5d7cde3dce627aebf57ce0964b18&.png'),(482,285,'_wp_attached_file','2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops58eef81affa92455386c8434135d8763.jpg'),(483,285,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:300;s:4:\"file\";s:102:\"2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops58eef81affa92455386c8434135d8763.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops58eef81affa92455386c8434135d8763-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops58eef81affa92455386c8434135d8763-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(486,287,'_wp_attached_file','2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops36b84b4f6920a1b2036fbad18ff13d6c.jpg'),(487,287,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:300;s:4:\"file\";s:102:\"2022/04/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops36b84b4f6920a1b2036fbad18ff13d6c.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops36b84b4f6920a1b2036fbad18ff13d6c-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw400h300fitcrops36b84b4f6920a1b2036fbad18ff13d6c-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(488,285,'_source_url','https://images.unsplash.com/photo-1501925667057-7871b2708a1b?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&h=300&fit=crop&s=58eef81affa92455386c8434135d8763&.png'),(489,284,'_source_url','https://images.unsplash.com/photo-1481253127861-534498168948?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&h=300&fit=crop&s=eae18dc38ce56770aaf6350d456ca424&.png'),(599,323,'_wp_attached_file','2022/04/estatesatnuevo.jpg'),(600,323,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:440;s:4:\"file\";s:26:\"2022/04/estatesatnuevo.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"estatesatnuevo-300x69.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:69;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"estatesatnuevo-1024x235.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:235;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"estatesatnuevo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"estatesatnuevo-768x176.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"estatesatnuevo-1536x352.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:352;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:10:\"1649429072\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(491,287,'_source_url','https://images.unsplash.com/photo-1496216904706-996b2dee3984?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&h=300&fit=crop&s=36b84b4f6920a1b2036fbad18ff13d6c&.png'),(492,288,'_wp_attached_file','2022/04/vidanta-nuevovallarta-ataglance.jpg'),(493,288,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:922;s:4:\"file\";s:43:\"2022/04/vidanta-nuevovallarta-ataglance.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"vidanta-nuevovallarta-ataglance-300x192.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"vidanta-nuevovallarta-ataglance-1024x656.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:656;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"vidanta-nuevovallarta-ataglance-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"vidanta-nuevovallarta-ataglance-768x492.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:492;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:12:\"RUPERT PEACE\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(494,289,'_wp_attached_file','2022/04/vidanta-nuevovallarta-ataglance-gallery-5.jpg'),(495,289,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:53:\"2022/04/vidanta-nuevovallarta-ataglance-gallery-5.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:53:\"vidanta-nuevovallarta-ataglance-gallery-5-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"vidanta-nuevovallarta-ataglance-gallery-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:70:\"58_0_400_300.38910505837_vidanta-nuevovallarta-ataglance-gallery-5.jpg\";s:5:\"width\";d:400;s:6:\"height\";d: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:{}}}'),(496,290,'_wp_attached_file','2022/04/vidanta-nuevovallarta-ataglance-gallery-6.jpg'),(497,290,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:53:\"2022/04/vidanta-nuevovallarta-ataglance-gallery-6.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:53:\"vidanta-nuevovallarta-ataglance-gallery-6-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"vidanta-nuevovallarta-ataglance-gallery-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(498,291,'_wp_attached_file','2022/04/vidanta-nuevovallarta-ataglance-gallery-7.jpg'),(499,291,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:53:\"2022/04/vidanta-nuevovallarta-ataglance-gallery-7.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:53:\"vidanta-nuevovallarta-ataglance-gallery-7-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"vidanta-nuevovallarta-ataglance-gallery-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(500,292,'_wp_attached_file','2022/04/vidanta-nuevovallarta-ataglance-gallery-8.jpg'),(501,292,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:53:\"2022/04/vidanta-nuevovallarta-ataglance-gallery-8.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:53:\"vidanta-nuevovallarta-ataglance-gallery-8-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"vidanta-nuevovallarta-ataglance-gallery-8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(502,293,'_wp_attached_file','2022/04/vidanta-nuevovallarta-ataglance-gallery-9.jpg'),(503,293,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:53:\"2022/04/vidanta-nuevovallarta-ataglance-gallery-9.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:53:\"vidanta-nuevovallarta-ataglance-gallery-9-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"vidanta-nuevovallarta-ataglance-gallery-9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:70:\"58_0_400_300.38910505837_vidanta-nuevovallarta-ataglance-gallery-9.jpg\";s:5:\"width\";d:400;s:6:\"height\";d: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:{}}}'),(504,294,'_wp_attached_file','2022/04/vidanta-nuevovallarta-ataglance-gallery-10.jpg'),(505,294,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:54:\"2022/04/vidanta-nuevovallarta-ataglance-gallery-10.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"vidanta-nuevovallarta-ataglance-gallery-10-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"vidanta-nuevovallarta-ataglance-gallery-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:71:\"58_0_400_300.38910505837_vidanta-nuevovallarta-ataglance-gallery-10.jpg\";s:5:\"width\";d:400;s:6:\"height\";d: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:{}}}'),(506,295,'_wp_attached_file','2022/04/vidanta-nuevovallarta-ataglance-gallery-11.jpg'),(507,295,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:54:\"2022/04/vidanta-nuevovallarta-ataglance-gallery-11.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"vidanta-nuevovallarta-ataglance-gallery-11-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"vidanta-nuevovallarta-ataglance-gallery-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:71:\"58_0_400_300.38910505837_vidanta-nuevovallarta-ataglance-gallery-11.jpg\";s:5:\"width\";d:400;s:6:\"height\";d: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:{}}}'),(508,296,'_wp_attached_file','2022/04/vidanta-nuevovallarta-ataglance-gallery-12.jpg'),(509,296,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:54:\"2022/04/vidanta-nuevovallarta-ataglance-gallery-12.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"vidanta-nuevovallarta-ataglance-gallery-12-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"vidanta-nuevovallarta-ataglance-gallery-12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(510,297,'_wp_attached_file','2022/04/vidanta-nuevovallarta-ataglance-gallery-13.jpg'),(511,297,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:54:\"2022/04/vidanta-nuevovallarta-ataglance-gallery-13.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"vidanta-nuevovallarta-ataglance-gallery-13-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"vidanta-nuevovallarta-ataglance-gallery-13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(512,298,'_wp_attached_file','2022/04/vidanta-nuevovallarta-ataglance-gallery-14.jpg'),(513,298,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:54:\"2022/04/vidanta-nuevovallarta-ataglance-gallery-14.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"vidanta-nuevovallarta-ataglance-gallery-14-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"vidanta-nuevovallarta-ataglance-gallery-14-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(514,299,'_wp_attached_file','2022/04/vidanta-nuevovallarta-ataglance-gallery-15.jpg'),(515,299,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:54:\"2022/04/vidanta-nuevovallarta-ataglance-gallery-15.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"vidanta-nuevovallarta-ataglance-gallery-15-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"vidanta-nuevovallarta-ataglance-gallery-15-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:71:\"30_0_300_203.15789473684_vidanta-nuevovallarta-ataglance-gallery-15.jpg\";s:5:\"width\";d:300;s:6:\"height\";d:203;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:{}}}'),(516,300,'_wp_attached_file','2022/04/vidanta-nuevovallarta-ataglance-gallery-16.jpg'),(517,300,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:54:\"2022/04/vidanta-nuevovallarta-ataglance-gallery-16.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"vidanta-nuevovallarta-ataglance-gallery-16-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"vidanta-nuevovallarta-ataglance-gallery-16-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(518,301,'_wp_attached_file','2022/04/vidanta-nuevovallarta-ataglance-gallery-17.jpg'),(519,301,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:54:\"2022/04/vidanta-nuevovallarta-ataglance-gallery-17.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"vidanta-nuevovallarta-ataglance-gallery-17-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"vidanta-nuevovallarta-ataglance-gallery-17-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(520,302,'_wp_attached_file','2022/04/vidanta-nuevo-vallarta-grand-luxxe-accommodations-two-bedroom-suite-1.jpg'),(521,302,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:81:\"2022/04/vidanta-nuevo-vallarta-grand-luxxe-accommodations-two-bedroom-suite-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:81:\"vidanta-nuevo-vallarta-grand-luxxe-accommodations-two-bedroom-suite-1-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:81:\"vidanta-nuevo-vallarta-grand-luxxe-accommodations-two-bedroom-suite-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(522,303,'_wp_attached_file','2022/04/Vidanta-nuevo-vallarta-the-estates-rooms-gallery-1.jpg'),(523,303,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:62:\"2022/04/Vidanta-nuevo-vallarta-the-estates-rooms-gallery-1.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"Vidanta-nuevo-vallarta-the-estates-rooms-gallery-1-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"Vidanta-nuevo-vallarta-the-estates-rooms-gallery-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:79:\"58_0_400_300.38910505837_Vidanta-nuevo-vallarta-the-estates-rooms-gallery-1.jpg\";s:5:\"width\";d:400;s:6:\"height\";d: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:16:\"Rigoberto Moreno\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(524,304,'_wp_attached_file','2022/04/Vidanta-nuevo-vallarta-the-estates-rooms-gallery-2-1.jpg'),(525,304,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:64:\"2022/04/Vidanta-nuevo-vallarta-the-estates-rooms-gallery-2-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:64:\"Vidanta-nuevo-vallarta-the-estates-rooms-gallery-2-1-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"Vidanta-nuevo-vallarta-the-estates-rooms-gallery-2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:16:\"Rigoberto Moreno\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(526,305,'_wp_attached_file','2022/04/Vidanta-nuevo-vallarta-the-estates-rooms-gallery-2.jpg'),(527,305,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:62:\"2022/04/Vidanta-nuevo-vallarta-the-estates-rooms-gallery-2.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"Vidanta-nuevo-vallarta-the-estates-rooms-gallery-2-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"Vidanta-nuevo-vallarta-the-estates-rooms-gallery-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:78:\"0_0_300_183.80952380952_Vidanta-nuevo-vallarta-the-estates-rooms-gallery-2.jpg\";s:5:\"width\";d:300;s:6:\"height\";d:184;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:16:\"Rigoberto Moreno\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(528,306,'_wp_attached_file','2022/04/Vidanta-nuevo-vallarta-the-estates-rooms-gallery-3.jpg'),(529,306,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:62:\"2022/04/Vidanta-nuevo-vallarta-the-estates-rooms-gallery-3.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"Vidanta-nuevo-vallarta-the-estates-rooms-gallery-3-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"Vidanta-nuevo-vallarta-the-estates-rooms-gallery-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:79:\"58_0_400_300.38910505837_Vidanta-nuevo-vallarta-the-estates-rooms-gallery-3.jpg\";s:5:\"width\";d:400;s:6:\"height\";d:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-2\";a:4:{s:4:\"file\";s:79:\"58_0_400_300.38910505837_Vidanta-nuevo-vallarta-the-estates-rooms-gallery-3.jpg\";s:5:\"width\";d:400;s:6:\"height\";d: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:16:\"Rigoberto Moreno\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,307,'_wp_attached_file','2022/04/Vidanta-nuevo-vallarta-the-estates-rooms-gallery-4.jpg'),(531,307,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:62:\"2022/04/Vidanta-nuevo-vallarta-the-estates-rooms-gallery-4.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"Vidanta-nuevo-vallarta-the-estates-rooms-gallery-4-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"Vidanta-nuevo-vallarta-the-estates-rooms-gallery-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:79:\"58_0_400_300.38910505837_Vidanta-nuevo-vallarta-the-estates-rooms-gallery-4.jpg\";s:5:\"width\";d:400;s:6:\"height\";d: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:16:\"Rigoberto Moreno\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(532,308,'_wp_attached_file','2022/04/Vidanta-nuevo-vallarta-the-estates-rooms-gallery-5.jpg'),(533,308,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:386;s:4:\"file\";s:62:\"2022/04/Vidanta-nuevo-vallarta-the-estates-rooms-gallery-5.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"Vidanta-nuevo-vallarta-the-estates-rooms-gallery-5-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"Vidanta-nuevo-vallarta-the-estates-rooms-gallery-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:79:\"58_0_400_300.38910505837_Vidanta-nuevo-vallarta-the-estates-rooms-gallery-5.jpg\";s:5:\"width\";d:400;s:6:\"height\";d: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:16:\"Rigoberto Moreno\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(534,309,'_wp_attached_file','2022/04/Vidanta-nuveo-vallarta-the-estates-pools.jpg'),(535,309,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:540;s:6:\"height\";i:344;s:4:\"file\";s:52:\"2022/04/Vidanta-nuveo-vallarta-the-estates-pools.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"Vidanta-nuveo-vallarta-the-estates-pools-300x191.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"Vidanta-nuveo-vallarta-the-estates-pools-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:69:\"41_0_400_300.43668122271_Vidanta-nuveo-vallarta-the-estates-pools.jpg\";s:5:\"width\";d:400;s:6:\"height\";d:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-2\";a:4:{s:4:\"file\";s:68:\"0_6_300_184.44444444444_Vidanta-nuveo-vallarta-the-estates-pools.jpg\";s:5:\"width\";d:300;s:6:\"height\";d:184;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:16:\"Rigoberto Moreno\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(536,309,'_wp_attachment_image_alt','the-estates-pools'),(537,307,'_wp_attachment_image_alt','the-estates-rooms-gallery'),(538,306,'_wp_attachment_image_alt','the-estates-pool'),(539,295,'_wp_attachment_image_alt','estates-beachland'),(540,289,'_wp_attachment_image_alt','estates-beachland'),(541,294,'_wp_attachment_image_alt','estates gondola'),(542,303,'_wp_attachment_image_alt','the-estates-rooms'),(543,308,'_wp_attachment_image_alt','the-estates-pool'),(544,293,'_wp_attachment_image_alt','the-estates-rooms'),(545,279,'_wp_page_template','default'),(546,279,'crio-premium-page-header-override','global'),(547,279,'crio-premium-page-header-select','none'),(548,279,'crio-premium-page-header-background',''),(549,279,'boldgrid_hide_page_title','global'),(550,279,'bgseo_robots_index','index'),(551,279,'bgseo_robots_follow','follow'),(552,311,'crio-premium-page-header-override','global'),(553,311,'crio-premium-page-header-select','none'),(554,311,'crio-premium-page-header-background',''),(555,311,'_menu_item_type','post_type'),(556,311,'_menu_item_menu_item_parent','0'),(557,311,'_menu_item_object_id','279'),(558,311,'_menu_item_object','page'),(559,311,'_menu_item_target',''),(560,311,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(561,311,'_menu_item_xfn',''),(562,311,'_menu_item_url',''),(573,318,'_menu_item_menu_item_parent','0'),(566,313,'_customize_changeset_uuid','2f648072-11e5-4d1b-80ff-94a08d79cecc'),(572,318,'_menu_item_type','post_type'),(570,249,'_wp_old_date','2022-03-27'),(571,106,'_wp_old_date','2022-03-23'),(574,318,'_menu_item_object_id','313'),(575,318,'_menu_item_object','page'),(576,318,'_menu_item_target',''),(577,318,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(578,318,'_menu_item_xfn',''),(579,318,'_menu_item_url',''),(590,320,'_wp_attached_file','2022/04/the-estates-3-e1649452665999.jpg'),(591,320,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:919;s:4:\"file\";s:40:\"2022/04/the-estates-3-e1649452665999.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"the-estates-3-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"the-estates-3-1024x627.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:627;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"the-estates-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"the-estates-3-768x471.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:471;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:16:\"Rigoberto Moreno\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(592,320,'_edit_lock','1649452537:1'),(593,320,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1500;s:6:\"height\";i:919;s:4:\"file\";s:17:\"the-estates-3.jpg\";}}'),(739,396,'_wp_attached_file','2022/11/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw150h150fitcropsc356da4f26423000fd3e2309ecd7effe.jpg'),(597,97,'_thumbnail_id','320'),(738,395,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:400;s:4:\"file\";s:102:\"2022/11/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw300h400fitcropse90921db1d6bf3b6b209b3597998e8b8.jpg\";s:8:\"filesize\";i:36922;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw300h400fitcropse90921db1d6bf3b6b209b3597998e8b8-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20536;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw300h400fitcropse90921db1d6bf3b6b209b3597998e8b8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8358;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(737,395,'_wp_attached_file','2022/11/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw300h400fitcropse90921db1d6bf3b6b209b3597998e8b8.jpg'),(736,394,'_source_url','https://images.unsplash.com/photo-1471939073435-3b3390154349?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=150&h=150&fit=crop&s=aed28a9c5da8f9b20cf831f58ef7f368&.png'),(618,313,'_edit_last','1'),(619,313,'_wp_page_template','default'),(620,313,'_edit_lock','1649889956:1'),(628,333,'_menu_item_type','post_type'),(626,330,'_customize_changeset_uuid','0594750d-9772-4c53-944c-464c4f8cd48f'),(627,106,'_wp_old_date','2022-04-08'),(629,333,'_menu_item_menu_item_parent','0'),(630,333,'_menu_item_object_id','330'),(631,333,'_menu_item_object','page'),(632,333,'_menu_item_target',''),(633,333,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(634,333,'_menu_item_xfn',''),(635,333,'_menu_item_url',''),(735,394,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:102:\"2022/11/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw150h150fitcropsaed28a9c5da8f9b20cf831f58ef7f368.jpg\";s:8:\"filesize\";i:11522;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:102:\"ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw150h150fitcropsaed28a9c5da8f9b20cf831f58ef7f368-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9800;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(654,342,'_wp_attached_file','2022/04/estatescover.jpg'),(655,342,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:919;s:4:\"file\";s:24:\"2022/04/estatescover.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"estatescover-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"estatescover-1024x627.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:627;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"estatescover-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"estatescover-768x471.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:471;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:16:\"Rigoberto Moreno\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(656,343,'_wp_attached_file','2022/04/estatescover-1.jpg'),(657,343,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:919;s:4:\"file\";s:26:\"2022/04/estatescover-1.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"estatescover-1-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"estatescover-1-1024x627.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:627;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"estatescover-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"estatescover-1-768x471.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:471;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:16:\"Rigoberto Moreno\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(663,330,'_edit_lock','1649619750:1'),(664,330,'_edit_last','1'),(665,330,'_wp_page_template','default'),(666,330,'crio-premium-page-header-override','global'),(667,330,'crio-premium-page-header-select','none'),(668,330,'crio-premium-page-header-background',''),(680,330,'boldgrid_hide_page_title','global'),(670,330,'bgseo_robots_index','index'),(671,330,'bgseo_robots_follow','follow'),(674,330,'bgseo_custom_keyword','Dining'),(676,330,'bgseo_title','Dining at the Estates at Nuevo'),(677,330,'bgseo_description','Dining at the Estates at Nuevo is yours from fine dining to casual dining to in-room dining. Come taste the many offerings.'),(734,394,'_wp_attached_file','2022/11/ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbw150h150fitcropsaed28a9c5da8f9b20cf831f58ef7f368.jpg'),(732,393,'_edit_lock','1668785172:1'),(733,393,'_edit_last','1'),(697,313,'crio-premium-page-header-override','global'),(698,313,'crio-premium-page-header-select','none'),(699,313,'crio-premium-page-header-background',''),(726,313,'boldgrid_hide_page_title','1'),(701,313,'bgseo_robots_index','index'),(702,313,'bgseo_robots_follow','follow'),(747,393,'crio-premium-page-header-override','global'),(748,393,'crio-premium-page-header-select','none'),(743,395,'_source_url','https://images.unsplash.com/photo-1485110751084-2b73d60f18ec?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=300&h=400&fit=crop&s=e90921db1d6bf3b6b209b3597998e8b8&.png'),(744,397,'_source_url','https://images.unsplash.com/photo-1483190656465-2c49e54d29f3?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=150&h=150&fit=crop&s=d43c371eae7b12c0b082a3295299ff68&.png'),(745,396,'_source_url','https://images.unsplash.com/photo-1482728019867-b1a9a19576f1?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=150&h=150&fit=crop&s=c356da4f26423000fd3e2309ecd7effe&.png'),(746,393,'_wp_page_template','default'),(706,371,'_wp_attached_file','2022/04/estates-2bedsuite.jpg'),(707,371,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:540;s:6:\"height\";i:344;s:4:\"file\";s:29:\"2022/04/estates-2bedsuite.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"estates-2bedsuite-300x191.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"estates-2bedsuite-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:45:\"11_0_300_199.2277992278_estates-2bedsuite.jpg\";s:5:\"width\";d:300;s:6:\"height\";d:199;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:15:\"Rigberto Moreno\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(712,376,'_wp_attached_file','2022/04/Suites1-4.jpg'),(713,376,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:919;s:4:\"file\";s:21:\"2022/04/Suites1-4.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Suites1-4-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"Suites1-4-1024x627.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:627;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Suites1-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"Suites1-4-768x471.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:471;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"crop-1\";a:4:{s:4:\"file\";s:40:\"0_0_300_183.984375_Suites1-4-768x471.jpg\";s:5:\"width\";d:300;s:6:\"height\";d:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(715,378,'_wp_attached_file','2022/04/Suites1-5.jpg'),(716,378,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:955;s:4:\"file\";s:21:\"2022/04/Suites1-5.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Suites1-5-300x191.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"Suites1-5-1024x652.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:652;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Suites1-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"Suites1-5-768x489.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:489;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:16:\"Rigoberto Moreno\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(717,379,'_wp_attached_file','2022/04/Suites1-5-1.jpg'),(718,379,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:626;s:6:\"height\";i:398;s:4:\"file\";s:23:\"2022/04/Suites1-5-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Suites1-5-1-300x191.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Suites1-5-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:16:\"Rigoberto Moreno\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(719,380,'_wp_attached_file','2022/04/Suites1-4-1.jpg'),(720,380,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:626;s:6:\"height\";i:383;s:4:\"file\";s:23:\"2022/04/Suites1-4-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Suites1-4-1-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Suites1-4-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(721,380,'_wp_attachment_image_alt','Suites1 Bedroom'),(749,393,'crio-premium-page-header-background',''),(753,393,'boldgrid_hide_page_title','global'),(751,393,'bgseo_robots_index','index'),(752,393,'bgseo_robots_follow','follow'),(754,399,'crio-premium-page-header-override','global'),(755,399,'crio-premium-page-header-select','none'),(756,399,'crio-premium-page-header-background',''),(757,399,'_menu_item_type','post_type'),(758,399,'_menu_item_menu_item_parent','0'),(759,399,'_menu_item_object_id','393'),(760,399,'_menu_item_object','page'),(761,399,'_menu_item_target',''),(762,399,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(763,399,'_menu_item_xfn',''),(764,399,'_menu_item_url',''),(766,403,'_edit_lock','1687373641:1');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wp_postmeta` with 479 row(s)
--

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

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

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

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

-- Dumped table `wp_termmeta` with 0 row(s)
--

--
-- Table structure for table `wp_weforms_entries`
--

DROP TABLE IF EXISTS `wp_weforms_entries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_weforms_entries` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` bigint(20) unsigned DEFAULT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `user_ip` int(11) unsigned DEFAULT NULL,
  `user_device` varchar(50) DEFAULT NULL,
  `referer` varchar(255) DEFAULT NULL,
  `status` varchar(10) DEFAULT 'publish',
  `created_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `form_id` (`form_id`)
) ENGINE=MyISAM AUTO_INCREMENT=270 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_weforms_entries`
--

LOCK TABLES `wp_weforms_entries` WRITE;
/*!40000 ALTER TABLE `wp_weforms_entries` DISABLE KEYS */;
INSERT INTO `wp_weforms_entries` VALUES (1,57,1,2291149641,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2022-03-27 21:15:52'),(2,57,0,3211096780,'Google Chrome/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2022-04-18 23:19:49'),(3,57,0,2857611437,'Google Chrome/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2022-04-28 06:52:28'),(4,57,0,3563464834,'Google Chrome/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2022-05-02 11:17:53'),(5,57,0,2783404351,'Google Chrome/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2022-05-05 08:26:21'),(6,57,0,2870365196,'Google Chrome/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2022-05-05 18:20:45'),(7,57,0,1455288817,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2022-05-09 20:12:14'),(8,57,0,3237796871,'Google Chrome/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2022-05-13 18:33:25'),(9,57,0,1760923705,'Google Chrome/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2022-05-25 03:51:59'),(10,57,0,2626823811,'Google Chrome/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2022-05-29 12:20:38'),(11,57,0,1505469603,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2022-06-04 01:06:48'),(12,57,0,3221477355,'Mozilla Firefox/Windows','https://estatesatnuevo.com/home/contact/','publish','2022-06-04 23:53:09'),(13,57,0,1505469585,'Google Chrome/Linux','https://estatesatnuevo.com/home/contact/','publish','2022-06-08 14:18:37'),(14,57,0,3245066737,'Google Chrome/Linux','https://estatesatnuevo.com/home/contact/','publish','2022-06-11 09:55:28'),(15,57,0,2734522728,'Google Chrome/Linux','https://estatesatnuevo.com/home/contact/','publish','2022-06-15 17:24:02'),(16,57,0,3563469977,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2022-06-22 01:01:53'),(17,57,0,3091976476,'Google Chrome/Linux','https://estatesatnuevo.com/home/contact/','publish','2022-06-27 23:49:20'),(18,57,0,1759744586,'Google Chrome/Linux','https://estatesatnuevo.com/home/contact/','publish','2022-06-29 09:27:33'),(19,57,0,3563464719,'Google Chrome/Linux','https://estatesatnuevo.com/home/contact/','publish','2022-07-04 20:54:03'),(20,57,0,1806650308,'Google Chrome/Linux','https://estatesatnuevo.com/home/contact/','publish','2022-07-09 11:58:04'),(21,57,0,764987252,'Google Chrome/Linux','https://estatesatnuevo.com/home/contact/','publish','2022-07-11 14:41:51'),(22,57,0,2893045971,'Apple Safari/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2022-07-11 15:05:19'),(23,57,0,2626823810,'Google Chrome/Linux','https://estatesatnuevo.com/home/contact/','publish','2022-07-14 08:42:33'),(24,57,0,3050770675,'Google Chrome/Linux','https://estatesatnuevo.com/home/contact/','publish','2022-07-16 11:25:28'),(25,57,0,3563464834,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2022-07-27 16:47:53'),(26,57,0,3353737956,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2022-08-04 16:39:07'),(27,57,0,3563469224,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2022-08-08 14:20:11'),(28,57,0,3227741845,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2022-08-09 11:53:54'),(29,57,0,401018198,'Mozilla Firefox/Windows','https://estatesatnuevo.com/home/contact/','publish','2022-08-11 14:15:36'),(30,57,0,3257164133,'Mozilla Firefox/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2022-08-23 11:28:51'),(31,57,0,2870365274,'Google Chrome/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2022-08-23 19:06:16'),(32,57,0,762851667,'Google Chrome/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2022-08-25 23:21:03'),(33,57,0,2734507174,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2022-09-02 01:01:32'),(34,57,0,2734507209,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2022-09-05 00:35:40'),(35,57,0,760766937,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2022-09-08 21:17:39'),(36,57,0,2870365257,'Google Chrome/Linux','https://estatesatnuevo.com/home/contact/','publish','2022-09-10 23:34:41'),(37,57,0,3289572822,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2022-09-14 17:13:01'),(38,57,0,2626823812,'Google Chrome/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2022-09-16 20:23:09'),(39,57,0,2626823810,'Mozilla Firefox/Windows','https://estatesatnuevo.com/home/contact/','publish','2022-09-28 06:38:22'),(40,57,0,2626830042,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2022-09-30 18:36:31'),(41,57,0,3350975396,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2022-10-04 10:40:20'),(42,57,0,3563464853,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2022-10-11 10:49:46'),(43,57,0,3050753593,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2022-10-11 17:33:31'),(44,57,0,2626823818,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2022-10-11 23:02:15'),(45,57,0,3514768620,'Google Chrome/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2022-10-16 08:15:20'),(46,57,0,2626823824,'Google Chrome/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2022-10-19 04:36:15'),(47,57,0,392966842,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2022-10-21 09:06:58'),(48,57,0,2626823818,'Mozilla Firefox/Windows','https://estatesatnuevo.com/home/contact/','publish','2022-10-26 09:09:40'),(49,57,0,2870365270,'Mozilla Firefox/Windows','https://estatesatnuevo.com/home/contact/','publish','2022-10-26 13:01:38'),(50,57,0,3648387212,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2022-10-26 22:20:42'),(51,57,0,3304099719,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2022-10-29 22:46:39'),(52,57,0,1760923940,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2022-11-03 17:59:07'),(53,57,0,622053271,'Google Chrome/Linux','https://estatesatnuevo.com/home/contact/','publish','2022-11-04 18:42:04'),(54,57,0,3289572740,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2022-11-08 13:16:28'),(55,57,0,2685667556,'Google Chrome/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2022-11-11 18:38:36'),(56,57,0,2328310981,'Google Chrome/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2022-11-12 19:30:17'),(57,57,0,1760923908,'Google Chrome/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2022-11-13 10:12:32'),(58,57,0,3304128172,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2022-11-18 15:01:08'),(59,57,0,3211178669,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2022-11-18 18:26:42'),(60,57,0,3304128178,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2022-11-20 06:17:04'),(61,57,0,3211169730,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2022-11-21 09:57:23'),(62,57,0,2734522787,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2022-11-22 00:14:52'),(63,57,0,2328310981,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2022-11-23 03:37:19'),(64,57,0,3301244698,'Mozilla Firefox/Windows','https://estatesatnuevo.com/home/contact/','publish','2022-11-23 17:01:22'),(65,57,0,1722103088,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2022-11-24 13:42:45'),(66,57,0,3301221425,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2022-11-24 22:17:59'),(67,57,0,94190759,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2022-11-25 12:03:57'),(68,57,0,1742850153,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2022-11-26 04:29:12'),(69,57,0,3210764103,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2022-11-28 16:52:26'),(70,57,0,94177445,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2022-11-29 12:23:27'),(71,57,0,2328310981,'Google Chrome/Linux','https://estatesatnuevo.com/home/contact/','publish','2022-12-01 05:49:58'),(72,57,0,3301221523,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2022-12-01 18:50:37'),(73,57,0,1505474981,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2022-12-02 03:49:15'),(74,57,0,3301242503,'Google Chrome/Linux','https://estatesatnuevo.com/home/contact/','publish','2022-12-03 11:36:19'),(75,57,0,1082739210,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2022-12-06 14:42:40'),(76,57,0,1439724430,'Google Chrome/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2022-12-09 17:37:29'),(77,57,0,1505474981,'Google Chrome/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2022-12-09 22:22:56'),(78,57,0,1505472842,'Google Chrome/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2022-12-10 10:57:53'),(79,57,0,3304245447,'Google Chrome/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2022-12-13 07:49:43'),(80,57,0,3304576132,'Apple Safari/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2022-12-14 08:19:37'),(81,57,0,2824520813,'Apple Safari/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2022-12-14 12:35:26'),(82,57,0,787169541,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2022-12-14 22:15:14'),(83,57,0,2626823251,'Apple Safari/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2022-12-15 03:52:48'),(84,57,0,3304438736,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2022-12-15 22:28:14'),(85,57,0,771538182,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2022-12-18 10:29:33'),(86,57,0,1505474981,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2022-12-18 18:30:58'),(87,57,0,2783437249,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2022-12-19 03:55:47'),(88,57,0,622053271,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2022-12-20 01:04:12'),(89,57,0,2769746983,'Mozilla Firefox/Windows','https://estatesatnuevo.com/home/contact/','publish','2022-12-21 21:07:03'),(90,57,0,3301236806,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2022-12-22 13:55:21'),(91,57,0,3289571713,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2022-12-23 18:02:22'),(92,57,0,2685667787,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2022-12-24 06:25:48'),(93,57,0,1722103576,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2022-12-24 12:44:15'),(94,57,0,3289440032,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2022-12-25 00:20:02'),(95,57,0,2586221934,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2022-12-25 04:22:40'),(96,57,0,1742596822,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2022-12-29 23:27:37'),(97,57,0,1742596834,'Google Chrome/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-01-01 07:39:51'),(98,57,0,3289572705,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-01-02 21:23:36'),(99,57,0,622053263,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-01-03 16:04:15'),(100,57,0,622053258,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-01-04 01:18:56'),(101,57,0,1742596663,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-01-04 16:51:22'),(102,57,0,3487829705,'Google Chrome/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2023-01-06 19:10:10'),(103,57,0,1083268529,'Google Chrome/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2023-01-08 11:43:42'),(104,57,0,3211171779,'Google Chrome/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2023-01-10 20:13:37'),(105,57,0,763229489,'Google Chrome/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2023-01-11 00:40:58'),(106,57,0,2685668289,'Apple Safari/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2023-01-11 12:52:19'),(107,57,0,1742850493,'Apple Safari/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2023-01-11 16:13:25'),(108,57,0,2415144118,'Apple Safari/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2023-01-11 18:27:57'),(109,57,0,3301187474,'Apple Safari/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2023-01-11 21:58:17'),(110,57,0,622053271,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-01-12 10:30:18'),(111,57,0,1742596736,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-01-17 13:44:31'),(112,57,0,1722103592,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-01-17 20:47:42'),(113,57,0,2685668289,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-01-17 20:52:21'),(114,57,0,3563463061,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-01-18 03:32:08'),(115,57,0,3304123823,'Mozilla Firefox/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-01-18 13:12:36'),(116,57,0,839080854,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-01-19 08:43:46'),(117,57,0,3563463069,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-01-19 16:13:03'),(118,57,0,622053258,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-01-20 11:02:33'),(119,57,0,3304123867,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-01-22 07:44:49'),(120,57,0,3304127043,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-01-23 02:50:47'),(121,57,0,622053271,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-01-23 05:48:26'),(122,57,0,3050758930,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-01-23 09:10:53'),(123,57,0,839080869,'Google Chrome/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-01-25 08:07:53'),(124,57,0,3301187358,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-01-26 09:33:01'),(125,57,0,3563469079,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-01-27 02:26:26'),(126,57,0,401024689,'Google Chrome/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-01-29 11:06:56'),(127,57,0,2323300559,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-01-30 20:07:21'),(128,57,0,622053271,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-01-31 22:51:37'),(129,57,0,622053258,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-02-01 09:39:10'),(130,57,0,3283462307,'Mozilla Firefox/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2023-02-02 15:47:19'),(131,57,0,391781467,'Google Chrome/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2023-02-03 05:36:26'),(132,57,0,764986885,'Google Chrome/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2023-02-04 14:40:05'),(133,57,0,3301390262,'Google Chrome/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2023-02-05 07:14:55'),(134,57,0,1805010461,'Google Chrome/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2023-02-05 14:35:22'),(135,57,0,3301407461,'Google Chrome/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2023-02-05 14:40:15'),(136,57,0,3301390158,'Google Chrome/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2023-02-06 13:11:35'),(137,57,0,764986911,'Apple Safari/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2023-02-08 15:58:47'),(138,57,0,3211171662,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-02-10 02:41:34'),(139,57,0,622053258,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-02-10 03:29:28'),(140,57,0,1505473338,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-02-10 03:49:31'),(141,57,0,3304337662,'Mozilla Firefox/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-02-15 23:41:34'),(142,57,0,3304244147,'Mozilla Firefox/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-02-16 00:25:24'),(143,57,0,2685667962,'Mozilla Firefox/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-02-16 01:13:52'),(144,57,0,1742596728,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-02-16 05:14:05'),(145,57,0,2626823256,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-02-16 13:35:35'),(146,57,0,3304206178,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-02-16 18:00:21'),(147,57,0,764987019,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-02-18 00:47:07'),(148,57,0,2626827139,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-02-18 03:17:29'),(149,57,0,2626827140,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-02-18 03:45:10'),(150,57,0,3304199309,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-02-18 14:58:44'),(151,57,0,3304337450,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-02-19 09:53:37'),(152,57,0,3304205927,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-02-20 11:36:52'),(153,57,0,3304447053,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-02-20 14:51:59'),(154,57,0,3301188196,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-02-21 22:08:19'),(155,57,0,3304337439,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-02-22 01:58:55'),(156,57,0,3563463051,'Google Chrome/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-02-23 02:17:19'),(157,57,0,1742850588,'Google Chrome/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-02-24 08:50:03'),(158,57,0,1742851047,'Google Chrome/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-02-25 20:32:11'),(159,57,0,3304576271,'Google Chrome/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-02-26 01:44:57'),(160,57,0,3304337543,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-02-28 03:51:32'),(161,57,0,3301188259,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-02-28 11:40:54'),(162,57,0,771538343,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-02-28 13:32:09'),(163,57,0,1475970689,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-03-02 01:41:09'),(164,57,0,3301407414,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-03-02 03:41:02'),(165,57,0,2626823283,'Mozilla Firefox/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2023-03-02 15:57:32'),(166,57,0,1742850820,'Mozilla Firefox/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2023-03-02 18:50:47'),(167,57,0,2626827140,'Mozilla Firefox/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2023-03-03 01:12:36'),(168,57,0,3304244015,'Google Chrome/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2023-03-04 17:50:11'),(169,57,0,764986916,'Google Chrome/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2023-03-07 00:27:00'),(170,57,0,764987149,'Apple Safari/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2023-03-08 20:37:30'),(171,57,0,3304446996,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-03-09 21:38:37'),(172,57,0,3304244143,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-03-09 23:50:15'),(173,57,0,764986960,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-03-10 12:34:14'),(174,57,0,2626827140,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-03-10 20:21:00'),(175,57,0,3304205921,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-03-10 22:07:09'),(176,57,0,3304206301,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-03-11 23:58:14'),(177,57,0,3304223258,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-03-12 02:46:16'),(178,57,0,3563469083,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-03-12 12:17:08'),(179,57,0,3289571739,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-03-15 02:22:54'),(180,57,0,3304579305,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-03-17 12:14:39'),(181,57,0,3304447146,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-03-17 16:30:01'),(182,57,0,1742850614,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-03-18 13:06:23'),(183,57,0,3211178705,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-03-18 19:08:38'),(184,57,0,3289440249,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-03-19 13:57:05'),(185,57,0,2626827139,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-03-20 03:20:16'),(186,57,0,3642164139,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-03-20 05:48:35'),(187,57,0,2857611538,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-03-20 17:09:28'),(188,57,0,3304337518,'Google Chrome/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-03-22 07:44:46'),(189,57,0,623800745,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-03-23 12:39:31'),(190,57,0,647592944,'Google Chrome/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-03-24 17:36:06'),(191,57,0,1603171857,'Google Chrome/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-03-27 00:15:21'),(192,57,0,2454098790,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-03-27 15:23:33'),(193,57,0,2685668262,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-03-29 05:29:46'),(194,57,0,647590283,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-03-29 10:33:12'),(195,57,0,1505473593,'Google Chrome/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2023-04-01 04:37:15'),(196,57,0,1722103137,'Google Chrome/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2023-04-02 17:52:11'),(197,57,0,2685667643,'Google Chrome/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2023-04-04 14:24:20'),(198,57,0,1505473339,'Apple Safari/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2023-04-06 00:36:12'),(199,57,0,3289571698,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-04-06 13:37:46'),(200,57,0,3395203050,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-04-07 02:31:16'),(201,57,0,1439724533,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-04-07 14:53:21'),(202,57,0,2701134229,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-04-09 00:01:29'),(203,57,0,3743284835,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-04-11 22:03:47'),(204,57,0,2626827860,'Mozilla Firefox/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-04-12 06:12:48'),(205,57,0,620739791,'Mozilla Firefox/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-04-13 00:05:42'),(206,57,0,620740211,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-04-16 05:20:00'),(207,57,0,2626827861,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-04-16 18:03:04'),(208,57,0,3289643421,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-04-18 08:32:36'),(209,57,0,762852035,'Google Chrome/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-04-19 12:41:00'),(210,57,0,2824520785,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-04-20 09:09:06'),(211,57,0,1722103670,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-04-20 09:33:44'),(212,57,0,3257164248,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-04-20 10:41:49'),(213,57,0,764986984,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-04-20 16:21:20'),(214,57,0,2415144119,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-04-20 20:13:17'),(215,57,0,3257163908,'Google Chrome/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-04-21 20:29:43'),(216,57,0,1742596653,'Google Chrome/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-04-22 05:31:15'),(217,57,0,620740078,'Google Chrome/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-04-22 19:18:16'),(218,57,0,1735393325,'Google Chrome/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-04-22 23:09:36'),(219,57,0,3301406474,'Google Chrome/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-04-23 20:44:47'),(220,57,0,3211179516,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-04-25 11:01:20'),(221,57,0,3111823907,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-04-26 16:12:29'),(222,57,0,3301217029,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-04-26 23:26:11'),(223,57,0,764986953,'Google Chrome/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2023-04-28 08:48:18'),(224,57,0,3289572833,'Google Chrome/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2023-04-28 21:04:15'),(225,57,0,2685667532,'Apple Safari/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2023-05-04 01:09:44'),(226,57,0,3257164331,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-05-04 20:23:33'),(227,57,0,392158054,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-05-07 14:13:09'),(228,57,0,3261274473,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-05-11 10:26:21'),(229,57,0,764987173,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-05-11 11:57:56'),(230,57,0,3304446415,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-05-12 02:37:54'),(231,57,0,3304244095,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-05-12 02:40:19'),(232,57,0,3304244096,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-05-12 22:53:44'),(233,57,0,3289642141,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-05-12 23:32:09'),(234,57,0,2709231283,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-05-14 08:36:28'),(235,57,0,3301407460,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-05-14 14:50:03'),(236,57,0,3304206151,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-05-15 00:48:13'),(237,57,0,3257164323,'Google Chrome/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-05-17 05:46:25'),(238,57,0,760766763,'Google Chrome/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-05-20 15:20:32'),(239,57,0,3304244012,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-05-23 20:00:57'),(240,57,0,3304432501,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-05-24 09:51:48'),(241,57,0,3301406492,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-05-24 10:32:39'),(242,57,0,2389848208,'Google Chrome/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2023-05-28 05:48:49'),(243,57,0,3304432521,'Google Chrome/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2023-05-28 23:38:54'),(244,57,0,3304206076,'Google Chrome/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2023-05-29 01:18:16'),(245,57,0,3304337614,'Google Chrome/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2023-05-29 18:51:06'),(246,57,0,3304195232,'Google Chrome/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2023-05-29 20:20:29'),(247,57,0,628676601,'Google Chrome/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2023-05-30 17:55:06'),(248,57,0,3304244054,'Apple Safari/MAC OS','https://estatesatnuevo.com/home/contact/','publish','2023-06-01 01:30:52'),(249,57,0,647661126,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-06-02 20:38:22'),(250,57,0,3257164371,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-06-03 10:22:59'),(251,57,0,2891348684,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-06-06 20:54:12'),(252,57,0,3304337415,'Mozilla Firefox/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-06-07 10:15:55'),(253,57,0,1760196275,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-06-08 12:58:16'),(254,57,0,824522285,'Google Chrome/Windows','https://estatesatnuevo.com/home/contact/','publish','2023-06-09 14:50:18'),(255,57,0,824522729,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-06-13 06:45:03'),(256,57,0,3301390085,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-06-13 19:02:17'),(257,57,0,2454105685,'Google Chrome/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-06-14 17:44:48'),(258,57,0,2845237960,'Google Chrome/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-06-15 03:22:44'),(259,57,0,3301390205,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-06-16 00:06:37'),(260,57,0,824522729,'Google Chrome/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-06-16 12:54:35'),(261,57,0,1738377991,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-06-18 18:47:03'),(262,57,0,3240492622,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-06-19 15:04:37'),(263,57,0,2891348681,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-06-19 18:23:21'),(264,57,0,3168172627,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-06-20 11:37:17'),(265,57,0,1761047330,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-06-20 16:45:52'),(266,57,0,1738377991,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-06-20 19:49:52'),(267,57,0,1754009092,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-06-21 00:50:27'),(268,57,0,2783420373,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-06-21 06:44:41'),(269,57,0,3304223285,'Mozilla Firefox/Linux','https://estatesatnuevo.com/home/contact/','publish','2023-06-21 07:39:55');
/*!40000 ALTER TABLE `wp_weforms_entries` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wp_weforms_entries` with 269 row(s)
--

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

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

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

LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (98,2,0),(318,2,0),(102,2,0),(249,2,0),(106,2,0),(311,2,0),(399,2,0),(333,2,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wp_term_relationships` with 8 row(s)
--

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

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

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

LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'primary','primary',0),(3,'Header','header',0),(4,'Sticky Header','sticky-header',0),(5,'Footer','footer',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wp_terms` with 5 row(s)
--

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

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

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

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

-- Dumped table `wp_links` with 0 row(s)
--

/*!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: Wed, 21 Jun 2023 18:59:39 +0000
